summaryrefslogtreecommitdiff
path: root/RepositoryModule_host.mk
blob: 3b530286114e2d5d8f1df2736a1d84bc8f7b51de (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
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#


$(eval $(call gb_Module_Module,libreoffice))

# This makefile needs to be read first because some variables like T_LIBS
# for libmerged are cleared there and then later we append stuff to it
# through e.g. gb_Library_use_external for various libraries in libmerged.
ifneq ($(MERGELIBS),)
$(eval $(call gb_Module_add_targets,libreoffice,\
	Library_merged \
))
endif

$(eval $(call gb_Module_add_moduledirs,libreoffice,\
	accessibility \
	android \
	animations \
	apple_remote \
	$(call gb_Helper_optional,AVMEDIA,avmedia) \
	basctl \
	basegfx \
	basic \
	bean \
	binaryurp \
	bridges \
	canvas \
	chart2 \
	cli_ure \
	$(call gb_Helper_optional,DESKTOP,codemaker) \
	comphelper \
	configmgr \
	connectivity \
	cppcanvas \
	cppu \
	cppuhelper \
	cpputools \
	cui \
	$(call gb_Helper_optional,DBCONNECTIVITY,dbaccess) \
	desktop \
	$(call gb_Helper_optional,DICTIONARIES,dictionaries) \
	dtrans \
	drawinglayer \
	editeng \
	embeddedobj \
	embedserv \
	eventattacher \
	extensions \
	external \
	extras \
	filter \
	$(call gb_Helper_optional,DBCONNECTIVITY,forms) \
	formula \
	$(call gb_Helper_optional,DESKTOP,fpicker) \
	framework \
	$(call gb_Helper_optional,DESKTOP,helpcompiler) \
	$(call gb_Helper_optional,HELP,helpcontent2) \
	hwpfilter \
	i18nlangtag \
	i18npool \
	i18nutil \
	idl \
	$(call gb_Helper_optional,DESKTOP,idlc) \
	instsetoo_native \
	io \
	javaunohelper \
	jurt \
	jvmaccess \
	jvmfwk \
	librelogo \
	libreofficekit \
	lingucomponent \
	linguistic \
	lotuswordpro \
	$(call gb_Helper_optional,DESKTOP,l10ntools) \
	$(call gb_Helper_optional,MARIADBC,mysqlc) \
	$(call gb_Helper_optional,NLPSOLVER,nlpsolver) \
	o3tl \
	$(call gb_Helper_optional,ODK,odk) \
	offapi \
	officecfg \
	onlineupdate \
	oovbaapi \
	oox \
	$(call gb_Helper_optional,OPENCL,opencl) \
	package \
	postprocess \
	$(call gb_Helper_optional,PYUNO,pyuno) \
	$(call gb_Helper_optional,QADEVOOO,qadevOOo) \
	readlicense_oo \
	registry \
	remotebridges \
	reportbuilder \
	$(call gb_Helper_optional,DBCONNECTIVITY,reportdesign) \
	ridljar \
	sal \
	salhelper \
	sax \
	sc \
	scaddins \
	sccomp \
	$(call gb_Helper_optional,DESKTOP,scp2) \
	scripting \
	sd \
	sdext \
	$(call gb_Helper_optional,DESKTOP,setup_native) \
	sfx2 \
	shell \
	slideshow \
	smoketest \
	solenv \
	soltools \
	sot \
	starmath \
	stoc \
	store \
	svl \
	svtools \
	svgio \
	emfio \
	svx \
	sw \
	swext \
	sysui \
	test \
	testtools \
	toolkit \
	tools \
	ucb \
	ucbhelper \
	udkapi \
	$(call gb_Helper_optional,PYUNO,uitest) \
	UnoControls \
	unodevtools \
	unoil \
	unoidl \
	unotest \
	unotools \
	unoxml \
	ure \
	uui \
	vbahelper \
	vcl \
	winaccessibility \
	wizards \
	writerfilter \
	writerperfect \
	xmerge \
	$(call gb_Helper_optional,DESKTOP,xmlhelp) \
	xmloff \
	xmlreader \
	xmlscript \
	xmlsecurity \
))

# Especially when building everything with symbols, the linking of the largest
# libraries takes enormous amounts of RAM.	To prevent annoying OOM situations
# etc., try to prevent linking these in parallel by adding artificial build
# order dependencies here.
define repositorymodule_serialize1
$(call gb_LinkTarget_get_target,$(call gb_Library_get_linktarget,$(1))) \
	:| $(foreach lib,$(2),$(call gb_Library_get_target,$(lib)))
endef

define repositorymodule_serialize
$(if $(filter-out 0 1,$(words $(1))),\
$(call repositorymodule_serialize1,$(firstword $(1)),$(wordlist 2,$(words $(1)),$(1))))
$(if $(strip $(1)),\
$(call repositorymodule_serialize,$(wordlist 2,$(words $(1)),$(1))))
endef

# DO NOT SORT ALPHABETICALLY: the libraries must be listed in dependency order,
# otherwise cyclic dependencies ruin everything.
# do not serialize on a partial build as that may fail due to missing deps.
# the default goal is all (see Module.mk)
ifeq (,$(filter-out all build check unitcheck slowcheck screenshot subsequentcheck uicheck,$(MAKECMDGOALS)))
$(eval $(call repositorymodule_serialize,\
	scfilt \
	$(call gb_Helper_optional,SCRIPTING,vbaobj) \
	sc msword \
	$(call gb_Helper_optional,DESKTOP,swui) \
	sw sd \
	$(call gb_Helper_optional,DBCONNECTIVITY,dbu) \
	writerfilter cui chartcontroller chartcore oox \
	$(if $(MERGELIBS), merged, \
		svx svxcore xo sfx fwk svt vcl) \
))
endif

# vim: set noet sw=4 ts=4:
-rw-r--r--source/ast/sw/messages.po72
-rw-r--r--source/ast/xmlsecurity/messages.po21
-rw-r--r--source/az/cui/messages.po60
-rw-r--r--source/az/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/az/sc/messages.po194
-rw-r--r--source/az/sd/messages.po130
-rw-r--r--source/az/starmath/messages.po6
-rw-r--r--source/az/svx/messages.po14
-rw-r--r--source/az/sw/messages.po72
-rw-r--r--source/be/cui/messages.po60
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/be/sc/messages.po194
-rw-r--r--source/be/sd/messages.po130
-rw-r--r--source/be/starmath/messages.po6
-rw-r--r--source/be/svx/messages.po14
-rw-r--r--source/be/sw/messages.po72
-rw-r--r--source/bg/cui/messages.po62
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/bg/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/bg/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/bg/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po639
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po227
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po104
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/bg/sc/messages.po196
-rw-r--r--source/bg/sd/messages.po130
-rw-r--r--source/bg/sfx2/messages.po16
-rw-r--r--source/bg/starmath/messages.po10
-rw-r--r--source/bg/svx/messages.po25
-rw-r--r--source/bg/sw/messages.po78
-rw-r--r--source/bn-IN/cui/messages.po60
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/bn-IN/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/guide.po621
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/bn-IN/sc/messages.po194
-rw-r--r--source/bn-IN/sd/messages.po130
-rw-r--r--source/bn-IN/starmath/messages.po6
-rw-r--r--source/bn-IN/svx/messages.po14
-rw-r--r--source/bn-IN/sw/messages.po72
-rw-r--r--source/bn/cui/messages.po60
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/bn/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/bn/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/bn/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/guide.po621
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/bn/sc/messages.po194
-rw-r--r--source/bn/sd/messages.po130
-rw-r--r--source/bn/starmath/messages.po6
-rw-r--r--source/bn/svx/messages.po14
-rw-r--r--source/bn/sw/messages.po72
-rw-r--r--source/bo/cui/messages.po60
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/bo/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/bo/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/bo/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/guide.po617
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/bo/readlicense_oo/docs.po12
-rw-r--r--source/bo/sc/messages.po194
-rw-r--r--source/bo/sd/messages.po130
-rw-r--r--source/bo/starmath/messages.po6
-rw-r--r--source/bo/svx/messages.po14
-rw-r--r--source/bo/sw/messages.po72
-rw-r--r--source/br/cui/messages.po60
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/br/sc/messages.po194
-rw-r--r--source/br/sd/messages.po130
-rw-r--r--source/br/starmath/messages.po6
-rw-r--r--source/br/svx/messages.po17
-rw-r--r--source/br/sw/messages.po72
-rw-r--r--source/brx/cui/messages.po60
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/brx/sc/messages.po194
-rw-r--r--source/brx/sd/messages.po130
-rw-r--r--source/brx/starmath/messages.po6
-rw-r--r--source/brx/svx/messages.po14
-rw-r--r--source/brx/sw/messages.po72
-rw-r--r--source/bs/cui/messages.po60
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/bs/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/bs/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/bs/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/bs/helpcontent2/source/text/shared/guide.po577
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po181
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/bs/sc/messages.po194
-rw-r--r--source/bs/sd/messages.po130
-rw-r--r--source/bs/starmath/messages.po6
-rw-r--r--source/bs/svx/messages.po14
-rw-r--r--source/bs/sw/messages.po72
-rw-r--r--source/ca-valencia/cui/messages.po60
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po623
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po215
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/ca-valencia/sc/messages.po194
-rw-r--r--source/ca-valencia/sd/messages.po130
-rw-r--r--source/ca-valencia/starmath/messages.po6
-rw-r--r--source/ca-valencia/svx/messages.po21
-rw-r--r--source/ca-valencia/sw/messages.po72
-rw-r--r--source/ca/cui/messages.po104
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/ca/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po32
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/ca/helpcontent2/source/text/sdatabase.po210
-rw-r--r--source/ca/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po629
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po219
-rw-r--r--source/ca/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/ca/sc/messages.po210
-rw-r--r--source/ca/sd/messages.po136
-rw-r--r--source/ca/sfx2/messages.po18
-rw-r--r--source/ca/starmath/messages.po16
-rw-r--r--source/ca/svx/messages.po27
-rw-r--r--source/ca/sw/messages.po84
-rw-r--r--source/ckb/cui/messages.po60
-rw-r--r--source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/ckb/sc/messages.po194
-rw-r--r--source/ckb/sd/messages.po130
-rw-r--r--source/ckb/starmath/messages.po6
-rw-r--r--source/ckb/svx/messages.po14
-rw-r--r--source/ckb/sw/messages.po74
-rw-r--r--source/cs/cui/messages.po62
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/cs/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/cs/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/cs/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po18
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po114
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po639
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po227
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po334
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po98
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po30
-rw-r--r--source/cs/sc/messages.po196
-rw-r--r--source/cs/sd/messages.po130
-rw-r--r--source/cs/sfx2/messages.po18
-rw-r--r--source/cs/starmath/messages.po10
-rw-r--r--source/cs/svx/messages.po23
-rw-r--r--source/cs/sw/messages.po78
-rw-r--r--source/cy/cui/messages.po62
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/cy/sc/messages.po200
-rw-r--r--source/cy/sd/messages.po130
-rw-r--r--source/cy/sfx2/messages.po16
-rw-r--r--source/cy/starmath/messages.po54
-rw-r--r--source/cy/svx/messages.po25
-rw-r--r--source/cy/sw/messages.po78
-rw-r--r--source/da/basctl/messages.po8
-rw-r--r--source/da/cui/messages.po90
-rw-r--r--source/da/extensions/messages.po6
-rw-r--r--source/da/filter/messages.po6
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/02.po12
-rw-r--r--source/da/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/da/helpcontent2/source/text/sdatabase.po20
-rw-r--r--source/da/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po94
-rw-r--r--source/da/sc/messages.po211
-rw-r--r--source/da/sd/messages.po147
-rw-r--r--source/da/sfx2/messages.po14
-rw-r--r--source/da/starmath/messages.po6
-rw-r--r--source/da/svtools/messages.po6
-rw-r--r--source/da/svx/messages.po39
-rw-r--r--source/da/sw/messages.po98
-rw-r--r--source/da/vcl/messages.po6
-rw-r--r--source/da/wizards/source/resources.po6
-rw-r--r--source/de/cui/messages.po72
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po150
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/de/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po34
-rw-r--r--source/de/sc/messages.po212
-rw-r--r--source/de/sd/messages.po130
-rw-r--r--source/de/sfx2/messages.po18
-rw-r--r--source/de/starmath/messages.po92
-rw-r--r--source/de/svx/messages.po29
-rw-r--r--source/de/sw/messages.po94
-rw-r--r--source/de/wizards/source/resources.po6
-rw-r--r--source/dgo/cui/messages.po60
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/dgo/sc/messages.po194
-rw-r--r--source/dgo/sd/messages.po130
-rw-r--r--source/dgo/starmath/messages.po6
-rw-r--r--source/dgo/svx/messages.po14
-rw-r--r--source/dgo/sw/messages.po72
-rw-r--r--source/dsb/cui/messages.po60
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/dsb/sc/messages.po194
-rw-r--r--source/dsb/sd/messages.po130
-rw-r--r--source/dsb/sfx2/messages.po16
-rw-r--r--source/dsb/starmath/messages.po54
-rw-r--r--source/dsb/svx/messages.po21
-rw-r--r--source/dsb/sw/messages.po72
-rw-r--r--source/dz/cui/messages.po60
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/dz/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/dz/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/dz/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/guide.po617
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/dz/readlicense_oo/docs.po12
-rw-r--r--source/dz/sc/messages.po194
-rw-r--r--source/dz/sd/messages.po130
-rw-r--r--source/dz/starmath/messages.po6
-rw-r--r--source/dz/svx/messages.po14
-rw-r--r--source/dz/sw/messages.po72
-rw-r--r--source/el/cui/messages.po86
-rw-r--r--source/el/dictionaries/ko_KR.po12
-rw-r--r--source/el/filter/messages.po22
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/el/helpcontent2/source/text/scalc.po8
-rw-r--r--source/el/helpcontent2/source/text/scalc/00.po16
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/el/helpcontent2/source/text/scalc/05.po6
-rw-r--r--source/el/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/el/helpcontent2/source/text/sdatabase.po18
-rw-r--r--source/el/helpcontent2/source/text/sdraw.po24
-rw-r--r--source/el/helpcontent2/source/text/sdraw/00.po14
-rw-r--r--source/el/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/el/helpcontent2/source/text/shared.po6
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po162
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/el/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/el/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/el/helpcontent2/source/text/shared/autopi.po10
-rw-r--r--source/el/helpcontent2/source/text/shared/explorer/database.po14
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/el/helpcontent2/source/text/simpress.po6
-rw-r--r--source/el/helpcontent2/source/text/simpress/00.po18
-rw-r--r--source/el/helpcontent2/source/text/simpress/02.po12
-rw-r--r--source/el/helpcontent2/source/text/smath.po10
-rw-r--r--source/el/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/el/helpcontent2/source/text/swriter/00.po44
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po152
-rw-r--r--source/el/helpcontent2/source/text/swriter/02.po80
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po108
-rw-r--r--source/el/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/el/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/el/sc/messages.po212
-rw-r--r--source/el/sd/messages.po136
-rw-r--r--source/el/sfx2/messages.po16
-rw-r--r--source/el/starmath/messages.po88
-rw-r--r--source/el/svtools/messages.po10
-rw-r--r--source/el/svx/messages.po33
-rw-r--r--source/el/sw/messages.po200
-rw-r--r--source/el/vcl/messages.po8
-rw-r--r--source/en-GB/cui/messages.po65
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared.po89
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/en-GB/sc/messages.po194
-rw-r--r--source/en-GB/sd/messages.po132
-rw-r--r--source/en-GB/starmath/messages.po6
-rw-r--r--source/en-GB/svx/messages.po21
-rw-r--r--source/en-GB/sw/messages.po74
-rw-r--r--source/en-ZA/cui/messages.po60
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po621
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/en-ZA/sc/messages.po194
-rw-r--r--source/en-ZA/sd/messages.po130
-rw-r--r--source/en-ZA/starmath/messages.po6
-rw-r--r--source/en-ZA/svx/messages.po14
-rw-r--r--source/en-ZA/sw/messages.po72
-rw-r--r--source/eo/cui/messages.po144
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/eo/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/eo/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/eo/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po583
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po185
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/eo/sc/messages.po194
-rw-r--r--source/eo/sd/messages.po130
-rw-r--r--source/eo/starmath/messages.po6
-rw-r--r--source/eo/svx/messages.po27
-rw-r--r--source/eo/sw/messages.po74
-rw-r--r--source/es/cui/messages.po70
-rw-r--r--source/es/dbaccess/messages.po8
-rw-r--r--source/es/extras/source/autocorr/emoji.po12
-rw-r--r--source/es/filter/messages.po6
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/es/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po130
-rw-r--r--source/es/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/es/helpcontent2/source/text/sdraw/00.po8
-rw-r--r--source/es/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po72
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po74
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po643
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po231
-rw-r--r--source/es/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po40
-rw-r--r--source/es/helpcontent2/source/text/swriter.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po120
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po136
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/es/sc/messages.po216
-rw-r--r--source/es/sd/messages.po136
-rw-r--r--source/es/sfx2/messages.po16
-rw-r--r--source/es/starmath/messages.po88
-rw-r--r--source/es/svx/messages.po45
-rw-r--r--source/es/sw/messages.po124
-rw-r--r--source/es/xmlsecurity/messages.po16
-rw-r--r--source/et/cui/messages.po60
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/et/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/et/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/et/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po625
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/et/sc/messages.po194
-rw-r--r--source/et/sd/messages.po130
-rw-r--r--source/et/starmath/messages.po6
-rw-r--r--source/et/svx/messages.po21
-rw-r--r--source/et/sw/messages.po72
-rw-r--r--source/eu/cui/messages.po231
-rw-r--r--source/eu/extensions/messages.po15
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/python.po6
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/eu/helpcontent2/source/text/scalc.po8
-rw-r--r--source/eu/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/eu/helpcontent2/source/text/scalc/05.po6
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/eu/helpcontent2/source/text/sdraw.po24
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/00.po14
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/01.po18
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/05.po18
-rw-r--r--source/eu/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po651
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/eu/helpcontent2/source/text/simpress.po6
-rw-r--r--source/eu/helpcontent2/source/text/simpress/02.po12
-rw-r--r--source/eu/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/eu/helpcontent2/source/text/smath.po10
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/eu/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/eu/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po86
-rw-r--r--source/eu/sc/messages.po216
-rw-r--r--source/eu/sd/messages.po130
-rw-r--r--source/eu/sfx2/messages.po16
-rw-r--r--source/eu/starmath/messages.po100
-rw-r--r--source/eu/svx/messages.po27
-rw-r--r--source/eu/sw/messages.po622
-rw-r--r--source/fa/chart2/messages.po16
-rw-r--r--source/fa/connectivity/registry/mork/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/fa/cui/messages.po60
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/fa/sc/messages.po216
-rw-r--r--source/fa/sd/messages.po130
-rw-r--r--source/fa/starmath/messages.po6
-rw-r--r--source/fa/svx/messages.po14
-rw-r--r--source/fa/sw/messages.po79
-rw-r--r--source/fi/cui/messages.po68
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/fi/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/fi/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared.po30
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/05.po14
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po631
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po191
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/fi/sc/messages.po222
-rw-r--r--source/fi/sd/messages.po134
-rw-r--r--source/fi/sfx2/messages.po12
-rw-r--r--source/fi/starmath/messages.po34
-rw-r--r--source/fi/svx/messages.po27
-rw-r--r--source/fi/sw/messages.po88
-rw-r--r--source/fr/cui/messages.po184
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/fr/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/fr/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po34
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po639
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po227
-rw-r--r--source/fr/helpcontent2/source/text/swriter.po60
-rw-r--r--source/fr/helpcontent2/source/text/swriter/00.po44
-rw-r--r--source/fr/helpcontent2/source/text/swriter/02.po38
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/fr/sc/messages.po200
-rw-r--r--source/fr/sd/messages.po130
-rw-r--r--source/fr/starmath/messages.po6
-rw-r--r--source/fr/svx/messages.po21
-rw-r--r--source/fr/sw/messages.po72
-rw-r--r--source/fur/cui/messages.po101
-rw-r--r--source/fur/desktop/messages.po7
-rw-r--r--source/fur/dictionaries/ko_KR.po12
-rw-r--r--source/fur/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/fur/sc/messages.po194
-rw-r--r--source/fur/sd/messages.po130
-rw-r--r--source/fur/starmath/messages.po6
-rw-r--r--source/fur/svx/messages.po14
-rw-r--r--source/fur/sw/messages.po72
-rw-r--r--source/fy/cui/messages.po250
-rw-r--r--source/fy/formula/messages.po8
-rw-r--r--source/fy/librelogo/source/pythonpath.po6
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/fy/sc/messages.po232
-rw-r--r--source/fy/sd/messages.po130
-rw-r--r--source/fy/starmath/messages.po6
-rw-r--r--source/fy/svx/messages.po125
-rw-r--r--source/fy/sw/messages.po560
-rw-r--r--source/fy/vcl/messages.po66
-rw-r--r--source/ga/cui/messages.po60
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/ga/sc/messages.po194
-rw-r--r--source/ga/sd/messages.po130
-rw-r--r--source/ga/starmath/messages.po6
-rw-r--r--source/ga/svx/messages.po19
-rw-r--r--source/ga/sw/messages.po72
-rw-r--r--source/gd/cui/messages.po60
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/gd/sc/messages.po194
-rw-r--r--source/gd/sd/messages.po130
-rw-r--r--source/gd/starmath/messages.po6
-rw-r--r--source/gd/svx/messages.po19
-rw-r--r--source/gd/sw/messages.po72
-rw-r--r--source/gl/cui/messages.po62
-rw-r--r--source/gl/dbaccess/messages.po8
-rw-r--r--source/gl/filter/messages.po4
-rw-r--r--source/gl/formula/messages.po32
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po143
-rw-r--r--source/gl/helpcontent2/source/text/scalc.po8
-rw-r--r--source/gl/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/gl/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/gl/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/gl/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po615
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po191
-rw-r--r--source/gl/helpcontent2/source/text/smath.po12
-rw-r--r--source/gl/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/gl/helpcontent2/source/text/swriter.po6
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po34
-rw-r--r--source/gl/sc/messages.po214
-rw-r--r--source/gl/scaddins/messages.po6
-rw-r--r--source/gl/sd/messages.po130
-rw-r--r--source/gl/sfx2/messages.po12
-rw-r--r--source/gl/starmath/messages.po12
-rw-r--r--source/gl/svtools/messages.po8
-rw-r--r--source/gl/svx/messages.po25
-rw-r--r--source/gl/sw/messages.po78
-rw-r--r--source/gu/cui/messages.po60
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po139
-rw-r--r--source/gu/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/gu/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/gu/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po613
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/gu/sc/messages.po194
-rw-r--r--source/gu/sd/messages.po130
-rw-r--r--source/gu/starmath/messages.po6
-rw-r--r--source/gu/svx/messages.po14
-rw-r--r--source/gu/sw/messages.po72
-rw-r--r--source/gug/cui/messages.po60
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/gug/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/gug/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po130
-rw-r--r--source/gug/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/gug/helpcontent2/source/text/sdraw/00.po8
-rw-r--r--source/gug/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po72
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po74
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/gug/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po643
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po231
-rw-r--r--source/gug/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/gug/helpcontent2/source/text/smath/01.po40
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po120
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po136
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/gug/sc/messages.po194
-rw-r--r--source/gug/sd/messages.po130
-rw-r--r--source/gug/starmath/messages.po6
-rw-r--r--source/gug/svx/messages.po14
-rw-r--r--source/gug/sw/messages.po72
-rw-r--r--source/he/cui/messages.po60
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po145
-rw-r--r--source/he/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/he/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/he/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po615
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po185
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/he/sc/messages.po194
-rw-r--r--source/he/sd/messages.po130
-rw-r--r--source/he/starmath/messages.po6
-rw-r--r--source/he/svx/messages.po14
-rw-r--r--source/he/sw/messages.po72
-rw-r--r--source/hi/cui/messages.po60
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po133
-rw-r--r--source/hi/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/hi/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/hi/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po595
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po181
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/hi/sc/messages.po194
-rw-r--r--source/hi/sd/messages.po130
-rw-r--r--source/hi/starmath/messages.po6
-rw-r--r--source/hi/svx/messages.po14
-rw-r--r--source/hi/sw/messages.po72
-rw-r--r--source/hr/cui/messages.po62
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po131
-rw-r--r--source/hr/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/hr/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/hr/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po583
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po185
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/hr/sc/messages.po194
-rw-r--r--source/hr/sd/messages.po132
-rw-r--r--source/hr/starmath/messages.po6
-rw-r--r--source/hr/svx/messages.po21
-rw-r--r--source/hr/sw/messages.po72
-rw-r--r--source/hsb/chart2/messages.po72
-rw-r--r--source/hsb/cui/messages.po60
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/hsb/sc/messages.po194
-rw-r--r--source/hsb/sd/messages.po130
-rw-r--r--source/hsb/sfx2/messages.po16
-rw-r--r--source/hsb/starmath/messages.po54
-rw-r--r--source/hsb/svx/messages.po21
-rw-r--r--source/hsb/sw/messages.po72
-rw-r--r--source/hu/cui/messages.po62
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/hu/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/hu/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/hu/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po629
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po223
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/hu/sc/messages.po194
-rw-r--r--source/hu/sd/messages.po130
-rw-r--r--source/hu/starmath/messages.po6
-rw-r--r--source/hu/svx/messages.po19
-rw-r--r--source/hu/sw/messages.po72
-rw-r--r--source/id/cui/messages.po60
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/id/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/id/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/id/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/id/sc/messages.po194
-rw-r--r--source/id/sd/messages.po130
-rw-r--r--source/id/starmath/messages.po6
-rw-r--r--source/id/svx/messages.po21
-rw-r--r--source/id/sw/messages.po72
-rw-r--r--source/is/cui/messages.po60
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po139
-rw-r--r--source/is/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/is/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/is/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po581
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po185
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po74
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/is/sc/messages.po194
-rw-r--r--source/is/sd/messages.po130
-rw-r--r--source/is/starmath/messages.po6
-rw-r--r--source/is/svx/messages.po21
-rw-r--r--source/is/sw/messages.po72
-rw-r--r--source/it/chart2/messages.po10
-rw-r--r--source/it/cui/messages.po151
-rw-r--r--source/it/dbaccess/messages.po20
-rw-r--r--source/it/dictionaries/ko_KR.po12
-rw-r--r--source/it/extensions/messages.po15
-rw-r--r--source/it/filter/messages.po26
-rw-r--r--source/it/helpcontent2/source/text/sbasic/python.po6
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po285
-rw-r--r--source/it/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/it/helpcontent2/source/text/sdatabase.po134
-rw-r--r--source/it/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po70
-rw-r--r--source/it/readlicense_oo/docs.po15
-rw-r--r--source/it/sc/messages.po329
-rw-r--r--source/it/sd/messages.po149
-rw-r--r--source/it/sfx2/messages.po28
-rw-r--r--source/it/starmath/messages.po18
-rw-r--r--source/it/svtools/messages.po12
-rw-r--r--source/it/svx/messages.po193
-rw-r--r--source/it/sw/messages.po254
-rw-r--r--source/it/wizards/source/resources.po6
-rw-r--r--source/ja/cui/messages.po100
-rw-r--r--source/ja/dictionaries/ko_KR.po12
-rw-r--r--source/ja/filter/source/config/fragments/filters.po6
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/ja/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ja/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/ja/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po623
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/ja/sc/messages.po234
-rw-r--r--source/ja/sd/messages.po138
-rw-r--r--source/ja/sfx2/messages.po24
-rw-r--r--source/ja/starmath/messages.po6
-rw-r--r--source/ja/svx/messages.po21
-rw-r--r--source/ja/sw/messages.po82
-rw-r--r--source/ja/wizards/messages.po6
-rw-r--r--source/jv/cui/messages.po60
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/jv/sc/messages.po194
-rw-r--r--source/jv/sd/messages.po130
-rw-r--r--source/jv/starmath/messages.po6
-rw-r--r--source/jv/svx/messages.po14
-rw-r--r--source/jv/sw/messages.po72
-rw-r--r--source/ka/cui/messages.po60
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po131
-rw-r--r--source/ka/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ka/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/ka/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po575
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/ka/readlicense_oo/docs.po12
-rw-r--r--source/ka/sc/messages.po194
-rw-r--r--source/ka/sd/messages.po130
-rw-r--r--source/ka/starmath/messages.po6
-rw-r--r--source/ka/svx/messages.po14
-rw-r--r--source/ka/sw/messages.po72
-rw-r--r--source/kab/cui/messages.po60
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/kab/sc/messages.po194
-rw-r--r--source/kab/sd/messages.po130
-rw-r--r--source/kab/starmath/messages.po6
-rw-r--r--source/kab/svx/messages.po17
-rw-r--r--source/kab/sw/messages.po72
-rw-r--r--source/kk/cui/messages.po60
-rw-r--r--source/kk/dictionaries/ko_KR.po12
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/kk/sc/messages.po194
-rw-r--r--source/kk/sd/messages.po130
-rw-r--r--source/kk/starmath/messages.po6
-rw-r--r--source/kk/svx/messages.po21
-rw-r--r--source/kk/sw/messages.po74
-rw-r--r--source/kl/cui/messages.po60
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/kl/sc/messages.po194
-rw-r--r--source/kl/sd/messages.po130
-rw-r--r--source/kl/starmath/messages.po6
-rw-r--r--source/kl/svx/messages.po14
-rw-r--r--source/kl/sw/messages.po72
-rw-r--r--source/km/cui/messages.po60
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/km/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/km/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/km/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po627
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/km/sc/messages.po194
-rw-r--r--source/km/sd/messages.po130
-rw-r--r--source/km/starmath/messages.po6
-rw-r--r--source/km/svx/messages.po14
-rw-r--r--source/km/sw/messages.po72
-rw-r--r--source/kmr-Latn/cui/messages.po60
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/kmr-Latn/sc/messages.po194
-rw-r--r--source/kmr-Latn/sd/messages.po130
-rw-r--r--source/kmr-Latn/starmath/messages.po6
-rw-r--r--source/kmr-Latn/svx/messages.po14
-rw-r--r--source/kmr-Latn/sw/messages.po72
-rw-r--r--source/kn/cui/messages.po60
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/kn/sc/messages.po194
-rw-r--r--source/kn/sd/messages.po130
-rw-r--r--source/kn/starmath/messages.po6
-rw-r--r--source/kn/svx/messages.po14
-rw-r--r--source/kn/sw/messages.po72
-rw-r--r--source/ko/cui/messages.po60
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/ko/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ko/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/ko/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po621
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/ko/sc/messages.po194
-rw-r--r--source/ko/sd/messages.po130
-rw-r--r--source/ko/starmath/messages.po6
-rw-r--r--source/ko/svx/messages.po19
-rw-r--r--source/ko/sw/messages.po72
-rw-r--r--source/kok/cui/messages.po60
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/kok/sc/messages.po194
-rw-r--r--source/kok/sd/messages.po130
-rw-r--r--source/kok/starmath/messages.po6
-rw-r--r--source/kok/svx/messages.po14
-rw-r--r--source/kok/sw/messages.po72
-rw-r--r--source/ks/cui/messages.po60
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/ks/sc/messages.po194
-rw-r--r--source/ks/sd/messages.po130
-rw-r--r--source/ks/starmath/messages.po6
-rw-r--r--source/ks/svx/messages.po14
-rw-r--r--source/ks/sw/messages.po72
-rw-r--r--source/ky/cui/messages.po60
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ky/sc/messages.po194
-rw-r--r--source/ky/sd/messages.po130
-rw-r--r--source/ky/starmath/messages.po6
-rw-r--r--source/ky/svx/messages.po14
-rw-r--r--source/ky/sw/messages.po72
-rw-r--r--source/lb/cui/messages.po60
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po21
-rw-r--r--source/lb/sc/messages.po194
-rw-r--r--source/lb/sd/messages.po130
-rw-r--r--source/lb/starmath/messages.po6
-rw-r--r--source/lb/svx/messages.po14
-rw-r--r--source/lb/sw/messages.po72
-rw-r--r--source/lo/cui/messages.po60
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po125
-rw-r--r--source/lo/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/lo/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/lo/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po575
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po181
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/lo/sc/messages.po194
-rw-r--r--source/lo/sd/messages.po130
-rw-r--r--source/lo/starmath/messages.po6
-rw-r--r--source/lo/svx/messages.po14
-rw-r--r--source/lo/sw/messages.po72
-rw-r--r--source/lt/cui/messages.po60
-rw-r--r--source/lt/dbaccess/messages.po7
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po125
-rw-r--r--source/lt/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po562
-rw-r--r--source/lt/helpcontent2/source/text/scalc/guide.po330
-rw-r--r--source/lt/helpcontent2/source/text/sdatabase.po110
-rw-r--r--source/lt/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/lt/helpcontent2/source/text/shared/explorer/database.po144
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po747
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po227
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/lt/sc/messages.po194
-rw-r--r--source/lt/sd/messages.po130
-rw-r--r--source/lt/starmath/messages.po6
-rw-r--r--source/lt/svx/messages.po19
-rw-r--r--source/lt/sw/messages.po72
-rw-r--r--source/lv/cui/messages.po60
-rw-r--r--source/lv/extensions/messages.po14
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po139
-rw-r--r--source/lv/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/lv/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/lv/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po579
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po185
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/lv/sc/messages.po194
-rw-r--r--source/lv/sd/messages.po130
-rw-r--r--source/lv/starmath/messages.po6
-rw-r--r--source/lv/svx/messages.po21
-rw-r--r--source/lv/sw/messages.po74
-rw-r--r--source/mai/cui/messages.po60
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/mai/sc/messages.po194
-rw-r--r--source/mai/sd/messages.po130
-rw-r--r--source/mai/starmath/messages.po6
-rw-r--r--source/mai/svx/messages.po14
-rw-r--r--source/mai/sw/messages.po72
-rw-r--r--source/mk/cui/messages.po60
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/mk/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/mk/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po621
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/mk/sc/messages.po194
-rw-r--r--source/mk/sd/messages.po130
-rw-r--r--source/mk/starmath/messages.po6
-rw-r--r--source/mk/svx/messages.po14
-rw-r--r--source/mk/sw/messages.po72
-rw-r--r--source/ml/cui/messages.po60
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/ml/sc/messages.po194
-rw-r--r--source/ml/sd/messages.po130
-rw-r--r--source/ml/starmath/messages.po6
-rw-r--r--source/ml/svx/messages.po14
-rw-r--r--source/ml/sw/messages.po72
-rw-r--r--source/mn/cui/messages.po60
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/mn/sc/messages.po194
-rw-r--r--source/mn/sd/messages.po130
-rw-r--r--source/mn/starmath/messages.po6
-rw-r--r--source/mn/svx/messages.po14
-rw-r--r--source/mn/sw/messages.po72
-rw-r--r--source/mni/cui/messages.po60
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/mni/sc/messages.po194
-rw-r--r--source/mni/sd/messages.po130
-rw-r--r--source/mni/starmath/messages.po6
-rw-r--r--source/mni/svx/messages.po14
-rw-r--r--source/mni/sw/messages.po72
-rw-r--r--source/mr/cui/messages.po60
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/mr/sc/messages.po194
-rw-r--r--source/mr/sd/messages.po130
-rw-r--r--source/mr/starmath/messages.po6
-rw-r--r--source/mr/svx/messages.po14
-rw-r--r--source/mr/sw/messages.po72
-rw-r--r--source/my/cui/messages.po60
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/my/readlicense_oo/docs.po13
-rw-r--r--source/my/sc/messages.po194
-rw-r--r--source/my/sd/messages.po130
-rw-r--r--source/my/starmath/messages.po6
-rw-r--r--source/my/svx/messages.po14
-rw-r--r--source/my/sw/messages.po72
-rw-r--r--source/nb/cui/messages.po60
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po131
-rw-r--r--source/nb/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/nb/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/nb/sc/messages.po194
-rw-r--r--source/nb/sd/messages.po130
-rw-r--r--source/nb/starmath/messages.po6
-rw-r--r--source/nb/svx/messages.po21
-rw-r--r--source/nb/sw/messages.po72
-rw-r--r--source/ne/cui/messages.po60
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/ne/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ne/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/ne/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po619
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/ne/sc/messages.po194
-rw-r--r--source/ne/sd/messages.po130
-rw-r--r--source/ne/starmath/messages.po6
-rw-r--r--source/ne/svx/messages.po14
-rw-r--r--source/ne/sw/messages.po72
-rw-r--r--source/nl/cui/messages.po62
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/nl/helpcontent2/source/text/scalc.po10
-rw-r--r--source/nl/helpcontent2/source/text/scalc/00.po20
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/nl/helpcontent2/source/text/sdraw.po26
-rw-r--r--source/nl/helpcontent2/source/text/sdraw/00.po16
-rw-r--r--source/nl/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/nl/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/autopi.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po701
-rw-r--r--source/nl/helpcontent2/source/text/shared/help.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/nl/helpcontent2/source/text/simpress.po8
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po22
-rw-r--r--source/nl/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/nl/helpcontent2/source/text/simpress/guide.po14
-rw-r--r--source/nl/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po30
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po88
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po50
-rw-r--r--source/nl/sc/messages.po208
-rw-r--r--source/nl/sd/messages.po130
-rw-r--r--source/nl/sfx2/messages.po16
-rw-r--r--source/nl/starmath/messages.po10
-rw-r--r--source/nl/svx/messages.po25
-rw-r--r--source/nl/sw/messages.po78
-rw-r--r--source/nn/cui/messages.po70
-rw-r--r--source/nn/filter/messages.po4
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/guide.po8
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/python.po106
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po541
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/02.po4
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po6
-rw-r--r--source/nn/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po218
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po64
-rw-r--r--source/nn/helpcontent2/source/text/schart.po108
-rw-r--r--source/nn/helpcontent2/source/text/schart/01.po10
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/04.po4
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po14
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po34
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/nn/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/autopi.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/explorer/database.po20
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po665
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po263
-rw-r--r--source/nn/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/nn/helpcontent2/source/text/smath/01.po4
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/nn/helpcontent2/source/text/swriter/02.po4
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po86
-rw-r--r--source/nn/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/nn/sc/messages.po200
-rw-r--r--source/nn/sd/messages.po130
-rw-r--r--source/nn/sfx2/messages.po8
-rw-r--r--source/nn/starmath/messages.po6
-rw-r--r--source/nn/svx/messages.po21
-rw-r--r--source/nn/sw/messages.po76
-rw-r--r--source/nn/vcl/messages.po10
-rw-r--r--source/nn/xmlsecurity/messages.po8
-rw-r--r--source/nr/cui/messages.po60
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/nr/sc/messages.po194
-rw-r--r--source/nr/sd/messages.po130
-rw-r--r--source/nr/starmath/messages.po6
-rw-r--r--source/nr/svx/messages.po14
-rw-r--r--source/nr/sw/messages.po72
-rw-r--r--source/nso/cui/messages.po60
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/nso/sc/messages.po194
-rw-r--r--source/nso/sd/messages.po130
-rw-r--r--source/nso/starmath/messages.po6
-rw-r--r--source/nso/svx/messages.po14
-rw-r--r--source/nso/sw/messages.po72
-rw-r--r--source/oc/cui/messages.po60
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/oc/sc/messages.po194
-rw-r--r--source/oc/sd/messages.po130
-rw-r--r--source/oc/starmath/messages.po6
-rw-r--r--source/oc/svx/messages.po14
-rw-r--r--source/oc/sw/messages.po72
-rw-r--r--source/om/cui/messages.po60
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/om/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/om/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/om/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po621
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/om/readlicense_oo/docs.po13
-rw-r--r--source/om/sc/messages.po194
-rw-r--r--source/om/sd/messages.po130
-rw-r--r--source/om/starmath/messages.po6
-rw-r--r--source/om/svx/messages.po14
-rw-r--r--source/om/sw/messages.po72
-rw-r--r--source/or/cui/messages.po60
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/or/sc/messages.po194
-rw-r--r--source/or/sd/messages.po130
-rw-r--r--source/or/starmath/messages.po6
-rw-r--r--source/or/svx/messages.po14
-rw-r--r--source/or/sw/messages.po72
-rw-r--r--source/pa-IN/cui/messages.po60
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/pa-IN/sc/messages.po194
-rw-r--r--source/pa-IN/sd/messages.po130
-rw-r--r--source/pa-IN/starmath/messages.po6
-rw-r--r--source/pa-IN/svx/messages.po14
-rw-r--r--source/pa-IN/sw/messages.po72
-rw-r--r--source/pl/cui/messages.po62
-rw-r--r--source/pl/filter/messages.po6
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/pl/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/pl/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/pl/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po633
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po223
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/pl/sc/messages.po196
-rw-r--r--source/pl/sd/messages.po134
-rw-r--r--source/pl/sfx2/messages.po16
-rw-r--r--source/pl/starmath/messages.po10
-rw-r--r--source/pl/svx/messages.po25
-rw-r--r--source/pl/sw/messages.po76
-rw-r--r--source/pt-BR/cui/messages.po66
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po276
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po254
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po639
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po233
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter.po60
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po340
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po168
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/librelogo.po10
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po64
-rw-r--r--source/pt-BR/reportdesign/messages.po10
-rw-r--r--source/pt-BR/sc/messages.po198
-rw-r--r--source/pt-BR/sd/messages.po130
-rw-r--r--source/pt-BR/sfx2/messages.po20
-rw-r--r--source/pt-BR/starmath/messages.po10
-rw-r--r--source/pt-BR/svx/messages.po27
-rw-r--r--source/pt-BR/sw/messages.po82
-rw-r--r--source/pt/cui/messages.po62
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/pt/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/pt/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po223
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/pt/sc/messages.po198
-rw-r--r--source/pt/sd/messages.po130
-rw-r--r--source/pt/sfx2/messages.po16
-rw-r--r--source/pt/starmath/messages.po54
-rw-r--r--source/pt/svx/messages.po29
-rw-r--r--source/pt/sw/messages.po78
-rw-r--r--source/ro/cui/messages.po60
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po125
-rw-r--r--source/ro/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ro/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/ro/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po575
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po181
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/ro/sc/messages.po194
-rw-r--r--source/ro/sd/messages.po130
-rw-r--r--source/ro/starmath/messages.po6
-rw-r--r--source/ro/svx/messages.po17
-rw-r--r--source/ro/sw/messages.po72
-rw-r--r--source/ru/cui/messages.po204
-rw-r--r--source/ru/dictionaries/ko_KR.po12
-rw-r--r--source/ru/extensions/messages.po16
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/ru/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/ru/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ru/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ru/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po621
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office.po22
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/ru/readlicense_oo/docs.po16
-rw-r--r--source/ru/sc/messages.po202
-rw-r--r--source/ru/sd/messages.po130
-rw-r--r--source/ru/starmath/messages.po6
-rw-r--r--source/ru/svx/messages.po21
-rw-r--r--source/ru/sw/messages.po106
-rw-r--r--source/ru/uui/messages.po20
-rw-r--r--source/ru/wizards/source/resources.po6
-rw-r--r--source/ru/xmlsecurity/messages.po10
-rw-r--r--source/rw/cui/messages.po60
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/rw/sc/messages.po194
-rw-r--r--source/rw/sd/messages.po130
-rw-r--r--source/rw/starmath/messages.po6
-rw-r--r--source/rw/svx/messages.po14
-rw-r--r--source/rw/sw/messages.po72
-rw-r--r--source/sa-IN/cui/messages.po60
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/sa-IN/sc/messages.po194
-rw-r--r--source/sa-IN/sd/messages.po130
-rw-r--r--source/sa-IN/starmath/messages.po6
-rw-r--r--source/sa-IN/svx/messages.po14
-rw-r--r--source/sa-IN/sw/messages.po72
-rw-r--r--source/sah/cui/messages.po60
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/sah/sc/messages.po194
-rw-r--r--source/sah/sd/messages.po130
-rw-r--r--source/sah/starmath/messages.po6
-rw-r--r--source/sah/svx/messages.po14
-rw-r--r--source/sah/sw/messages.po72
-rw-r--r--source/sat/cui/messages.po60
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/sat/readlicense_oo/docs.po11
-rw-r--r--source/sat/sc/messages.po194
-rw-r--r--source/sat/sd/messages.po130
-rw-r--r--source/sat/starmath/messages.po6
-rw-r--r--source/sat/svx/messages.po14
-rw-r--r--source/sat/sw/messages.po72
-rw-r--r--source/sd/cui/messages.po60
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/sd/readlicense_oo/docs.po11
-rw-r--r--source/sd/sc/messages.po194
-rw-r--r--source/sd/sd/messages.po130
-rw-r--r--source/sd/starmath/messages.po6
-rw-r--r--source/sd/svx/messages.po14
-rw-r--r--source/sd/sw/messages.po72
-rw-r--r--source/si/cui/messages.po60
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po141
-rw-r--r--source/si/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/si/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/si/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po575
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po181
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/si/readlicense_oo/docs.po12
-rw-r--r--source/si/sc/messages.po194
-rw-r--r--source/si/sd/messages.po130
-rw-r--r--source/si/starmath/messages.po6
-rw-r--r--source/si/svx/messages.po14
-rw-r--r--source/si/sw/messages.po72
-rw-r--r--source/sid/cui/messages.po60
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po149
-rw-r--r--source/sid/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sid/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/sid/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po621
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po181
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po76
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/sid/sc/messages.po194
-rw-r--r--source/sid/sd/messages.po130
-rw-r--r--source/sid/starmath/messages.po6
-rw-r--r--source/sid/svx/messages.po14
-rw-r--r--source/sid/sw/messages.po72
-rw-r--r--source/sk/cui/messages.po62
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po141
-rw-r--r--source/sk/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sk/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/sk/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po615
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po201
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po76
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/sk/sc/messages.po200
-rw-r--r--source/sk/sd/messages.po132
-rw-r--r--source/sk/sfx2/messages.po16
-rw-r--r--source/sk/starmath/messages.po54
-rw-r--r--source/sk/svx/messages.po23
-rw-r--r--source/sk/sw/messages.po78
-rw-r--r--source/sq/cui/messages.po60
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po139
-rw-r--r--source/sq/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sq/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/sq/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po585
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po185
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/sq/sc/messages.po194
-rw-r--r--source/sq/sd/messages.po130
-rw-r--r--source/sq/starmath/messages.po6
-rw-r--r--source/sq/svx/messages.po14
-rw-r--r--source/sq/sw/messages.po72
-rw-r--r--source/sr-Latn/cui/messages.po60
-rw-r--r--source/sr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/sr-Latn/sc/messages.po194
-rw-r--r--source/sr-Latn/sd/messages.po130
-rw-r--r--source/sr-Latn/starmath/messages.po6
-rw-r--r--source/sr-Latn/svx/messages.po14
-rw-r--r--source/sr-Latn/sw/messages.po72
-rw-r--r--source/sr/cui/messages.po60
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/sr/sc/messages.po194
-rw-r--r--source/sr/sd/messages.po130
-rw-r--r--source/sr/starmath/messages.po6
-rw-r--r--source/sr/svx/messages.po14
-rw-r--r--source/sr/sw/messages.po72
-rw-r--r--source/ss/cui/messages.po60
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ss/sc/messages.po194
-rw-r--r--source/ss/sd/messages.po130
-rw-r--r--source/ss/starmath/messages.po6
-rw-r--r--source/ss/svx/messages.po14
-rw-r--r--source/ss/sw/messages.po72
-rw-r--r--source/st/cui/messages.po60
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/st/sc/messages.po194
-rw-r--r--source/st/sd/messages.po130
-rw-r--r--source/st/starmath/messages.po6
-rw-r--r--source/st/svx/messages.po14
-rw-r--r--source/st/sw/messages.po72
-rw-r--r--source/sv/cui/messages.po60
-rw-r--r--source/sv/filter/messages.po26
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/sv/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/sv/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po627
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po116
-rw-r--r--source/sv/sc/messages.po200
-rw-r--r--source/sv/sd/messages.po130
-rw-r--r--source/sv/sfx2/messages.po16
-rw-r--r--source/sv/starmath/messages.po104
-rw-r--r--source/sv/svx/messages.po75
-rw-r--r--source/sv/sw/messages.po80
-rw-r--r--source/sw-TZ/cui/messages.po60
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/sw-TZ/sc/messages.po194
-rw-r--r--source/sw-TZ/sd/messages.po130
-rw-r--r--source/sw-TZ/starmath/messages.po6
-rw-r--r--source/sw-TZ/svx/messages.po14
-rw-r--r--source/sw-TZ/sw/messages.po72
-rw-r--r--source/szl/cui/messages.po60
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/szl/sc/messages.po194
-rw-r--r--source/szl/sd/messages.po130
-rw-r--r--source/szl/starmath/messages.po6
-rw-r--r--source/szl/svx/messages.po19
-rw-r--r--source/szl/sw/messages.po74
-rw-r--r--source/ta/cui/messages.po60
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po137
-rw-r--r--source/ta/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ta/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/ta/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po575
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po74
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/ta/sc/messages.po194
-rw-r--r--source/ta/sd/messages.po130
-rw-r--r--source/ta/starmath/messages.po6
-rw-r--r--source/ta/svx/messages.po14
-rw-r--r--source/ta/sw/messages.po72
-rw-r--r--source/te/cui/messages.po60
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/te/readlicense_oo/docs.po12
-rw-r--r--source/te/sc/messages.po194
-rw-r--r--source/te/sd/messages.po130
-rw-r--r--source/te/starmath/messages.po6
-rw-r--r--source/te/svx/messages.po14
-rw-r--r--source/te/sw/messages.po72
-rw-r--r--source/tg/cui/messages.po60
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po131
-rw-r--r--source/tg/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/tg/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/tg/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po601
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/tg/sc/messages.po194
-rw-r--r--source/tg/sd/messages.po130
-rw-r--r--source/tg/starmath/messages.po6
-rw-r--r--source/tg/svx/messages.po14
-rw-r--r--source/tg/sw/messages.po72
-rw-r--r--source/th/cui/messages.po60
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/th/sc/messages.po194
-rw-r--r--source/th/sd/messages.po130
-rw-r--r--source/th/starmath/messages.po6
-rw-r--r--source/th/svx/messages.po14
-rw-r--r--source/th/sw/messages.po72
-rw-r--r--source/ti/cui/messages.po60
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ti/sc/messages.po194
-rw-r--r--source/ti/sd/messages.po130
-rw-r--r--source/ti/starmath/messages.po6
-rw-r--r--source/ti/svx/messages.po14
-rw-r--r--source/ti/sw/messages.po72
-rw-r--r--source/tn/cui/messages.po60
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po23
-rw-r--r--source/tn/sc/messages.po194
-rw-r--r--source/tn/sd/messages.po130
-rw-r--r--source/tn/starmath/messages.po6
-rw-r--r--source/tn/svx/messages.po14
-rw-r--r--source/tn/sw/messages.po72
-rw-r--r--source/tr/cui/messages.po62
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared/01.po79
-rw-r--r--source/tr/helpcontent2/source/text/scalc.po20
-rw-r--r--source/tr/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po20
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/tr/helpcontent2/source/text/sdraw/00.po12
-rw-r--r--source/tr/helpcontent2/source/text/sdraw/01.po222
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po223
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/tr/helpcontent2/source/text/swriter/02.po36
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/tr/sc/messages.po196
-rw-r--r--source/tr/sd/messages.po130
-rw-r--r--source/tr/sfx2/messages.po16
-rw-r--r--source/tr/starmath/messages.po6
-rw-r--r--source/tr/svx/messages.po21
-rw-r--r--source/tr/sw/messages.po72
-rw-r--r--source/ts/cui/messages.po60
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ts/sc/messages.po194
-rw-r--r--source/ts/sd/messages.po130
-rw-r--r--source/ts/starmath/messages.po6
-rw-r--r--source/ts/svx/messages.po14
-rw-r--r--source/ts/sw/messages.po72
-rw-r--r--source/tt/cui/messages.po60
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/tt/sc/messages.po194
-rw-r--r--source/tt/sd/messages.po130
-rw-r--r--source/tt/starmath/messages.po6
-rw-r--r--source/tt/svx/messages.po14
-rw-r--r--source/tt/sw/messages.po72
-rw-r--r--source/ug/cui/messages.po60
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po127
-rw-r--r--source/ug/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ug/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/ug/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po575
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po185
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/ug/sc/messages.po194
-rw-r--r--source/ug/sd/messages.po130
-rw-r--r--source/ug/starmath/messages.po6
-rw-r--r--source/ug/svx/messages.po14
-rw-r--r--source/ug/sw/messages.po72
-rw-r--r--source/uk/cui/messages.po62
-rw-r--r--source/uk/filter/messages.po26
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/uk/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/uk/helpcontent2/source/text/scalc/05.po6
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/uk/helpcontent2/source/text/sdraw.po16
-rw-r--r--source/uk/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po577
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po227
-rw-r--r--source/uk/helpcontent2/source/text/simpress/00.po16
-rw-r--r--source/uk/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/uk/sc/messages.po236
-rw-r--r--source/uk/sd/messages.po130
-rw-r--r--source/uk/sfx2/messages.po16
-rw-r--r--source/uk/starmath/messages.po6
-rw-r--r--source/uk/svx/messages.po23
-rw-r--r--source/uk/sw/messages.po80
-rw-r--r--source/ur/cui/messages.po60
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ur/sc/messages.po194
-rw-r--r--source/ur/sd/messages.po130
-rw-r--r--source/ur/starmath/messages.po6
-rw-r--r--source/ur/svx/messages.po14
-rw-r--r--source/ur/sw/messages.po72
-rw-r--r--source/uz/cui/messages.po60
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/uz/sc/messages.po194
-rw-r--r--source/uz/sd/messages.po130
-rw-r--r--source/uz/starmath/messages.po6
-rw-r--r--source/uz/svx/messages.po14
-rw-r--r--source/uz/sw/messages.po72
-rw-r--r--source/ve/cui/messages.po60
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ve/sc/messages.po194
-rw-r--r--source/ve/sd/messages.po130
-rw-r--r--source/ve/starmath/messages.po6
-rw-r--r--source/ve/svx/messages.po14
-rw-r--r--source/ve/sw/messages.po72
-rw-r--r--source/vec/cui/messages.po60
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/vec/sc/messages.po194
-rw-r--r--source/vec/sd/messages.po130
-rw-r--r--source/vec/starmath/messages.po6
-rw-r--r--source/vec/svx/messages.po19
-rw-r--r--source/vec/sw/messages.po74
-rw-r--r--source/vi/cui/messages.po60
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/vi/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/vi/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/vi/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po575
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/vi/readlicense_oo/docs.po10
-rw-r--r--source/vi/sc/messages.po194
-rw-r--r--source/vi/sd/messages.po130
-rw-r--r--source/vi/starmath/messages.po22
-rw-r--r--source/vi/svx/messages.po14
-rw-r--r--source/vi/sw/messages.po72
-rw-r--r--source/xh/cui/messages.po60
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/xh/sc/messages.po194
-rw-r--r--source/xh/sd/messages.po130
-rw-r--r--source/xh/starmath/messages.po6
-rw-r--r--source/xh/svx/messages.po14
-rw-r--r--source/xh/sw/messages.po72
-rw-r--r--source/zh-CN/chart2/messages.po14
-rw-r--r--source/zh-CN/cui/messages.po108
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po635
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po225
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po50
-rw-r--r--source/zh-CN/sc/messages.po196
-rw-r--r--source/zh-CN/sd/messages.po130
-rw-r--r--source/zh-CN/sfx2/messages.po16
-rw-r--r--source/zh-CN/starmath/messages.po64
-rw-r--r--source/zh-CN/svx/messages.po27
-rw-r--r--source/zh-CN/sw/messages.po80
-rw-r--r--source/zh-TW/cui/messages.po60
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po147
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po621
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/zh-TW/sc/messages.po194
-rw-r--r--source/zh-TW/sd/messages.po130
-rw-r--r--source/zh-TW/starmath/messages.po6
-rw-r--r--source/zh-TW/svx/messages.po21
-rw-r--r--source/zh-TW/sw/messages.po72
-rw-r--r--source/zu/cui/messages.po60
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/zu/sc/messages.po194
-rw-r--r--source/zu/sd/messages.po130
-rw-r--r--source/zu/starmath/messages.po6
-rw-r--r--source/zu/svx/messages.po14
-rw-r--r--source/zu/sw/messages.po72
1659 files changed, 67947 insertions, 79133 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 629878b223a..67ba36f7c90 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -20914,60 +20914,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
index 6a4d6aeaea2..fedd5d02cbe 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8044,15 +8044,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Иҵәахтәуп аслаид"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Атеқст..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25585,24 +25585,24 @@ msgctxt ""
msgid "~File"
msgstr "~Афаил"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Alig~n Objects"
msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Align Tex~t"
msgstr ""
#. y3E2U
@@ -31190,15 +31190,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Иалкаатәуп абзац анҵәамҭанӡа"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Иалкаатәуп армарахьтәи ажәа аҟынӡа"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 44c9496be83..13732a69207 100644
--- a/source/ab/sc/messages.po
+++ b/source/ab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24552,213 +24552,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29603,338 +29603,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Aпараметрқәа..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Аминимум"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Амаксимум"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "Аоперациа"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Аҵакы"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr ""
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Аоперациа"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr ""
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Аоперациа"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr ""
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Аоперациа"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr ""
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Аоперациа"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Аҵакы"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Аҵакы"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Аҵакы"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Аҵакы"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Ианыхтәуп"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Ианыхтәуп"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Ианыхтәуп"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Ианыхтәуп"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index 675e1069393..910c4e56f6b 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-06-25 09:49+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3813,116 +3813,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4326,12 +4326,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6567,219 +6561,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7695,12 +7689,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Аконтур ариашара"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ab/starmath/messages.po b/source/ab/starmath/messages.po
index 124aedf5d22..1c2134a20f9 100644
--- a/source/ab/starmath/messages.po
+++ b/source/ab/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-06-25 09:42+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2193,9 +2193,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 24064293072..4f358d9a8f3 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7241,10 +7241,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -13976,13 +13976,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14006,10 +14006,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index e6036f7de7c..f5314f33e1c 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\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"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20601,181 +20601,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21824,12 +21824,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Аконтур ариашара"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 2a7c1e12d4c..9a34f99537b 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-17 20:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976497.000000\n"
#. GyY9M
@@ -3482,7 +3482,7 @@ msgstr "Druk <Shift>+<F1> om enige beskikbare aanvullende wenke in dialoogblokki
#: cui/inc/tipoftheday.hrc:274
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
-msgstr "%PRODUCTNAME Help"
+msgstr "%PRODUCTNAME Hulp"
#. NG4jW
#: cui/inc/tipoftheday.hrc:275
@@ -3657,7 +3657,7 @@ msgstr "Gevorderd"
#: cui/inc/treeopt.hrc:45
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Basic IDE"
-msgstr "Basic IDE"
+msgstr "BASIC IDE"
#. ZS4Sx
#: cui/inc/treeopt.hrc:46
@@ -3729,7 +3729,7 @@ msgstr "E-pos"
#: cui/inc/treeopt.hrc:69
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Writer"
-msgstr "%PRODUCTNAME Writer"
+msgstr "%PRODUCTNAME \"Writer\""
#. CtZCN
#: cui/inc/treeopt.hrc:70
@@ -3819,7 +3819,7 @@ msgstr "Standaardbrief E-pos"
#: cui/inc/treeopt.hrc:88
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "%PRODUCTNAME Writer/Web"
-msgstr "%PRODUCTNAME Writer/Web"
+msgstr "%PRODUCTNAME \"Writer\"/Web"
#. BZ7BG
#: cui/inc/treeopt.hrc:89
@@ -3861,7 +3861,7 @@ msgstr "Agtergrond"
#: cui/inc/treeopt.hrc:99
msgctxt "SID_SM_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Math"
-msgstr "%PRODUCTNAME Math"
+msgstr "%PRODUCTNAME \"Math\""
#. rFHDF
#: cui/inc/treeopt.hrc:100
@@ -3873,7 +3873,7 @@ msgstr "Instellings"
#: cui/inc/treeopt.hrc:105
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Calc"
-msgstr "%PRODUCTNAME Calc"
+msgstr "%PRODUCTNAME \"Calc\""
#. xe2ry
#: cui/inc/treeopt.hrc:106
@@ -3939,7 +3939,7 @@ msgstr "Druk"
#: cui/inc/treeopt.hrc:120
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Impress"
-msgstr "%PRODUCTNAME Impress"
+msgstr "%PRODUCTNAME \"Impress\""
#. GxFDj
#: cui/inc/treeopt.hrc:121
@@ -3969,7 +3969,7 @@ msgstr "Druk"
#: cui/inc/treeopt.hrc:129
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "%PRODUCTNAME Draw"
-msgstr "%PRODUCTNAME Draw"
+msgstr "%PRODUCTNAME \"Draw\""
#. B9gGf
#: cui/inc/treeopt.hrc:130
@@ -8470,7 +8470,7 @@ msgstr "Klemteken:"
#: cui/uiconfig/ui/effectspage.ui:222
msgctxt "effectspage|outlinecb"
msgid "Outline"
-msgstr "Buitelyne"
+msgstr "Skema"
#. fXVDq
#: cui/uiconfig/ui/effectspage.ui:232
@@ -14671,7 +14671,7 @@ msgstr "As die merkveld aan is, word by uitskryf na HTML 'n waarskuwing vertoon
#: cui/uiconfig/ui/opthtmlpage.ui:561
msgctxt "opthtmlpage|starbasic"
msgid "LibreOffice _Basic"
-msgstr "LibreOffice _Basic"
+msgstr "LibreOffice _BASIC"
#. BtWXE
#: cui/uiconfig/ui/opthtmlpage.ui:571
@@ -20901,60 +20901,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Kies u voorkeur gebruikerskoppelvlak"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Standaard Werksbalk"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Enkelvoudige werkbalk"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Sybalk"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "Tabblad"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "Kompakte Tabblad"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Kompakte Groepbalk"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Groepbalk"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Kompakte Groepbalk"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Enkelvoudige Kontekslys"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Kontekstuele Groepe"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Enkelvoudige werkbalk"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Sybalk"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/af/extras/source/autocorr/emoji.po b/source/af/extras/source/autocorr/emoji.po
index f12b07378a2..74a9ebe6d9a 100644
--- a/source/af/extras/source/autocorr/emoji.po
+++ b/source/af/extras/source/autocorr/emoji.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-08-13 12:35+0000\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/extrassourceautocorremoji/af/>\n"
"Language: af\n"
@@ -24,7 +24,7 @@ msgctxt ""
"CENT_SIGN\n"
"LngText.text"
msgid "cent"
-msgstr "Sent"
+msgstr "sent"
#. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji
#. 8cRaa
@@ -1334,7 +1334,7 @@ msgctxt ""
"PARALLEL_TO\n"
"LngText.text"
msgid "parallel"
-msgstr "parallel"
+msgstr "ewewydig"
#. ∦ (U+02226), see http://wiki.documentfoundation.org/Emoji
#. sDuNZ
@@ -2324,7 +2324,7 @@ msgctxt ""
"JUPITER\n"
"LngText.text"
msgid "jupiter"
-msgstr "jupiter"
+msgstr "Jupiter"
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
#. 2paAD
@@ -2344,7 +2344,7 @@ msgctxt ""
"URANUS\n"
"LngText.text"
msgid "uranus"
-msgstr "uranus"
+msgstr "Uranus"
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
#. 7YHnR
@@ -2364,7 +2364,7 @@ msgctxt ""
"PLUTO\n"
"LngText.text"
msgid "pluto"
-msgstr "pluto"
+msgstr "Pluto"
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
#. 3N5E9
diff --git a/source/af/filter/messages.po b/source/af/filter/messages.po
index 8ebc005569f..bd0dadd2baf 100644
--- a/source/af/filter/messages.po
+++ b/source/af/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-04 20:46+0000\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560927302.000000\n"
#. 5AQgJ
@@ -26,7 +26,7 @@ msgstr "Onbekend"
#: filter/inc/strings.hrc:26
msgctxt "STR_IMPORT_ONLY"
msgid "import filter"
-msgstr "invoerfilter"
+msgstr "invoer filter"
#. 7vg82
#: filter/inc/strings.hrc:27
diff --git a/source/af/filter/source/config/fragments/filters.po b/source/af/filter/source/config/fragments/filters.po
index 05e7c4130a0..d6b9225e88e 100644
--- a/source/af/filter/source/config/fragments/filters.po
+++ b/source/af/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-04-27 15:54+0200\n"
-"PO-Revision-Date: 2020-07-10 23:33+0000\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/af/>\n"
"Language: af\n"
@@ -24,7 +24,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr "ADO Rye XML"
+msgstr "ADO XML Resultaat Rye"
#. bjvBT
#: AbiWord.xcu
@@ -34,7 +34,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "AbiWord Document"
-msgstr "AbiWord-dokument"
+msgstr "AbiWord-Dokument"
#. RBEgr
#: AppleKeynote.xcu
@@ -54,7 +54,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Numbers"
-msgstr "Apple Numbers"
+msgstr "Apple Nommers"
#. 7wGVb
#: ApplePages.xcu
@@ -1384,7 +1384,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Spreadsheet"
-msgstr "ODF-sigblad"
+msgstr "ODF-spreiblad"
#. VZmGZ
#: calc8_template.xcu
@@ -1394,7 +1394,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Spreadsheet Template"
-msgstr "ODF-sigbladsjabloon"
+msgstr "ODF-spreiblad sjabloon"
#. 2JxAC
#: calc_Gnumeric.xcu
@@ -1404,7 +1404,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Gnumeric Spreadsheet"
-msgstr "Gnumeric Spreiblad"
+msgstr "Gnumeric spreiblad"
#. HWKsT
#: calc_HTML_WebQuery.xcu
@@ -1424,7 +1424,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr "Microsoft Excel 2007- binêre lêer"
+msgstr "Microsoft Excel 2007- Binêr"
#. Vpueh
#: calc_MS_Excel_2007_VBA_XML.xcu
@@ -1434,7 +1434,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365 (macro-enabled)"
-msgstr "Excel 2007–365 (Makro's geaktiveerd)"
+msgstr "Excel 2007–365 (Makro's geaktiveer)"
#. oSgEe
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/af/filter/source/config/fragments/internalgraphicfilters.po b/source/af/filter/source/config/fragments/internalgraphicfilters.po
index 15bdd6eda8b..0054bc98488 100644
--- a/source/af/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/af/filter/source/config/fragments/internalgraphicfilters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-05-15 19:39+0000\n"
+"PO-Revision-Date: 2020-11-26 16:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsinternalgraphicfilters/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560974407.000000\n"
#. s5fY3
@@ -44,7 +44,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr "DXF - AutoCAD Interruil Formaat"
+msgstr "DXF - AutoCAD Data-oordrag Formaat"
#. qGZFH
#: emf_Export.xcu
diff --git a/source/af/filter/source/config/fragments/types.po b/source/af/filter/source/config/fragments/types.po
index f27c553e825..6175d3fb827 100644
--- a/source/af/filter/source/config/fragments/types.po
+++ b/source/af/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-07-10 23:33+0000\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentstypes/af/>\n"
"Language: af\n"
@@ -24,7 +24,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr "Microsoft Excel 2007- binêr"
+msgstr "Microsoft Excel 2007- Binêr"
#. ZSPrG
#: MS_Excel_2007_VBA_XML.xcu
@@ -54,7 +54,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365 Template"
-msgstr "Excel 2007–365-Sjabloon"
+msgstr "Excel 2007–365-sjabloon"
#. GGcpF
#: MS_PowerPoint_2007_XML.xcu
@@ -84,7 +84,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 Template"
-msgstr "PowerPoint 2007–365-Sjabloon"
+msgstr "PowerPoint 2007–365-sjabloon"
#. fALRm
#: MS_PowerPoint_2007_XML_VBA.xcu
@@ -104,7 +104,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenDocument Database"
-msgstr "OpenDocument-Databasis"
+msgstr "OpenDocument-databasis"
#. VGEpj
#: StarBaseReport.xcu
@@ -114,7 +114,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenDocument Database Report"
-msgstr "OpenDocument-Databasis Rapport"
+msgstr "OpenDocument-databasis rapport"
#. 5CtAj
#: StarBaseReportChart.xcu
@@ -124,7 +124,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "StarOffice XML (Base) Report Chart 9"
-msgstr "StarOffice XML (Base) Rapport Kaart 9"
+msgstr "StarOffice XML (Base) diagram rapport 9"
#. GQTGB
#: calc8.xcu
@@ -164,7 +164,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Gnumeric Spreadsheet"
-msgstr "Gnumeric-Spreiblad"
+msgstr "Gnumeric spreiblad"
#. XrFYG
#: calc_MS_Excel_2003_XML.xcu
diff --git a/source/af/formula/messages.po b/source/af/formula/messages.po
index efd4e564198..f969c47f807 100644
--- a/source/af/formula/messages.po
+++ b/source/af/formula/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-16 14:24+0100\n"
+"PO-Revision-Date: 2020-12-08 13:38+0100\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/formulamessages/af/>\n"
"Language: af\n"
@@ -2529,7 +2529,7 @@ msgstr "~Einde"
#: formula/inc/strings.hrc:31
msgctxt "RID_STR_SHRINK"
msgid "Shrink"
-msgstr "Shrink"
+msgstr "Verklein"
#. tZZPF
#: formula/inc/strings.hrc:32
diff --git a/source/af/librelogo/source/pythonpath.po b/source/af/librelogo/source/pythonpath.po
index b5188c1b245..9c1522473a6 100644
--- a/source/af/librelogo/source/pythonpath.po
+++ b/source/af/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-06-29 13:09+0200\n"
-"PO-Revision-Date: 2020-07-05 00:08+0000\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/librelogosourcepythonpath/af/>\n"
"Language: af\n"
@@ -59,7 +59,7 @@ msgctxt ""
"PENUP\n"
"property.text"
msgid "penup|pu"
-msgstr "penop|op"
+msgstr "penop|po"
#. FKDzL
#: LibreLogo_en_US.properties
@@ -77,7 +77,7 @@ msgctxt ""
"HOME\n"
"property.text"
msgid "home"
-msgstr "Tuis"
+msgstr "tuis"
#. KpJ4z
#: LibreLogo_en_US.properties
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index fad61e0a1b9..6d5a9344d43 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-17 20:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/af/>\n"
"Language: af\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Versteek skyfie"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~ks..."
+msgid "Te~xt Attributes..."
+msgstr "Te~ks Eienskappe..."
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Lêer"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Bely~n"
+msgid "Alig~n Objects"
+msgstr "Bely~n Objekte"
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Bely~n"
+msgid "Align Tex~t"
+msgstr "Belyn ~Teks"
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Merk tot einde van paragraaf"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Merk tot regterwoord"
+msgid "Select to End of Word"
+msgstr "Selekteer tot Einde van Woord"
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/af/readlicense_oo/docs.po b/source/af/readlicense_oo/docs.po
index 69602e50c04..0911c7fa0e5 100644
--- a/source/af/readlicense_oo/docs.po
+++ b/source/af/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-29 14:35+0000\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/af/>\n"
"Language: af\n"
@@ -23,7 +23,7 @@ msgctxt ""
"Welcome\n"
"readmeitem.text"
msgid "${PRODUCTNAME} ${PRODUCTVERSION} ReadMe"
-msgstr "${PRODUCTNAME} ${PRODUCTVERSION} Leesmy"
+msgstr "${PRODUCTNAME} ${PRODUCTVERSION} Lees my"
#. wHdDE
#: readme.xrm
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index 10c1435d708..1dcfb62f830 100644
--- a/source/af/sc/messages.po
+++ b/source/af/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/af/>\n"
"Language: af\n"
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "~Lêer"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Definieer die rand van die geselekteerde selle."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Inspringing vergroot"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Inspringing verminder"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Begin"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Begin"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Vel_d"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoeg"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Invoeg"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objek-belyning"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "~Uitleg"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Uitleg"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistiek"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Oorsig"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Beeld"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Beel~d"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Teken"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Teken"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omskakel"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "-Objek"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objek"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "-Media"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Druk"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Druk"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Uitbreiding"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Uitbreiding"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -29626,338 +29626,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Oplosser"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr "_Restoureer Alles"
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_psies..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Open die \"Oplossingsopsies\"-dialoog."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "O_plos"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Teiken sel"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimaliseer resultaat na"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Deur selle te wysig"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Tik of klik op die selverwysing van die teikensel. Hierdie veld bevat die verwysing na die sel waarvan die waarde geoptimaliseer moet word."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Waarde van"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Sel verwysing"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "_Waardes"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Sel verwysing"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Sel verwysing"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Sel verwysing"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Sel verwysing"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Heelgetal"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binêr"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Heelgetal"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binêr"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Heelgetal"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binêr"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Heelgetal"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binêr"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Waarde"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Waarde"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Waarde"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Waarde"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Verwyder"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Verwyder"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Verwyder"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Verwyder"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Beperkende voorwaardes"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Open die \"Oplosser\"-dialoog. Met die oplosser kan u wiskundeprobleme oplos met verskeie onbekende veranderlikes en 'n aantal beperkinge op die veranderlikes met behulp van teikensoek metodes."
diff --git a/source/af/scp2/source/impress.po b/source/af/scp2/source/impress.po
index 2072fd4d10e..9f7892eeb57 100644
--- a/source/af/scp2/source/impress.po
+++ b/source/af/scp2/source/impress.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-05-20 11:23+0000\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/scp2sourceimpress/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1548056118.000000\n"
#. USjxN
@@ -23,7 +23,7 @@ msgctxt ""
"STR_FI_NAME_PRAESENTATION\n"
"LngText.text"
msgid "Presentation"
-msgstr "Aanbieding"
+msgstr "Voorlegging"
#. MaeYG
#: folderitem_impress.ulf
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 7c1cd544396..f05548a4106 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
@@ -3819,116 +3819,116 @@ msgstr "Tabel"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omvorm"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Beeld"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Beeld"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Draw"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Draw"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objek"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objek"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Media"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Media"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vorm"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_D"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~D"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Model"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Model"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Nu~tsbalk"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "Keuseskerm"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Uitbreiding"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "Lêer"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Begin"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Begin"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Veld"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Invoeg"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Invoeg"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "Uitleg"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Uitleg"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Skyfievertoning"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Skyfievertoning"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Oorsig"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sien Lys"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omskakel"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Beeld"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Beeld"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "\"_Draw\""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "\"~Draw'"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objek"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Model"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Model"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "-Aansig"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Oorsig"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Wysig Kontoer"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Uitbreiding"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 76133d5a82f..35c9d98dddb 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-29 14:35+0000\n"
+"PO-Revision-Date: 2020-11-23 20:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560975251.000000\n"
#. bHbFE
@@ -4133,37 +4133,37 @@ msgstr "Skrap..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Vaskoppel"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Ontkoppel"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Verberg Sybalk."
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Aanpassing"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Herstel Verstekinstellings"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Sybalk Instellings"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/af/starmath/messages.po b/source/af/starmath/messages.po
index 57943b4452e..54916abc8e5 100644
--- a/source/af/starmath/messages.po
+++ b/source/af/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1548164561.000000\n"
#. GrDhX
@@ -1023,7 +1023,7 @@ msgstr "Lemmetjies"
#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
-msgstr "Limiet Inferior"
+msgstr "Limes met Voetskrif"
#. CbG7y
#: starmath/inc/strings.hrc:133
@@ -1323,7 +1323,7 @@ msgstr "Vektorpyl"
#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
-msgstr "Harpoon"
+msgstr "Harpoen"
#. BLziR
#: starmath/inc/strings.hrc:183
@@ -2189,11 +2189,11 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Fundamentele stelling van infinitesimaalrekening"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
-msgstr "Chaosvergelyking"
+msgstr "Chaos-teorie vergelyking"
#. afEQ8
#: starmath/inc/strings.hrc:329
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 5b008062f73..afef245cab9 100644
--- a/source/af/svx/messages.po
+++ b/source/af/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/af/>\n"
"Language: af\n"
@@ -13,14 +13,14 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976220.000000\n"
#. 3GkZj
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
msgid "Drawing object"
-msgstr "Teken Objek"
+msgstr "Tekening Objek"
#. 9yvmF
#: include/svx/strings.hrc:26
@@ -7114,7 +7114,7 @@ msgstr "Attribuut"
#: include/svx/strings.hrc:1271
msgctxt "RID_STR_BINDING"
msgid "Binding"
-msgstr "Verbinding"
+msgstr "Binding"
#. iFARB
#: include/svx/strings.hrc:1272
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Pas skyfie aan na huidige vensterruimte."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Kan nie alle SmartArts laai nie. As u Microsoft Office 2010 of in 'n later formaat stoor, kan u hierdie probleem vermy."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Kon nie alle \"SmartArt\" objekte laai nie. Stoor in Microsoft Office 2010 of later weergawe sou die kwessie omseil."
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigasiebalk"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Die omvalverslag is suksesvol opgelaai.\n"
-"Dit is binnekort beskikbaar by:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Stuur omvalverslag"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Moenie Versend nie"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 359469d98c9..5bf324cb9f8 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976448.000000\n"
#. v3oJv
@@ -100,11 +100,11 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr "Hou die opskrifvlakke georden. Opskrifvlak % LEVEL_CURRENT% mag nie na %LEVEL_PREV% wees nie."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr "Vermy \"fontworks\" in u dokumente. Maak seker dat u dit gebruik om 'n voorbeeld of 'n ander betekenislose teks te vertoon."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr "Vermy \"Fontwork\" objekte in u dokumente. Maak seker u gebruik dit net as voorbeelde of ander minder belangrike teks."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -1539,37 +1539,37 @@ msgstr "Bladsy Styl Naam"
#: sw/inc/inspectorproperties.hrc:187
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Rsid"
-msgstr "Para Rsid"
+msgstr "Para: RSID"
#. xqcEV
#: sw/inc/inspectorproperties.hrc:188
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Adjust"
-msgstr "Para Verstel"
+msgstr "Para: Verstel"
#. SyTxG
#: sw/inc/inspectorproperties.hrc:189
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Auto Style Name"
-msgstr "Para Outo Styl Naam"
+msgstr "Para: Outo Styl Naam"
#. WHaym
#: sw/inc/inspectorproperties.hrc:190
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Color"
-msgstr "Para Agtergrond Naam"
+msgstr "Para: Agtergrond Naam"
#. uKmB5
#: sw/inc/inspectorproperties.hrc:191
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic"
-msgstr "Para Agtergrond Grafika"
+msgstr "Para: Agtergrond Grafika"
#. f6RGz
#: sw/inc/inspectorproperties.hrc:192
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic Filter"
-msgstr "Para Agtergrond Grafika Filter"
+msgstr "Para: Agtergrond Grafika Filter"
#. Yy5RY
#: sw/inc/inspectorproperties.hrc:193
@@ -20361,181 +20361,181 @@ msgid "~File"
msgstr "~Lêer"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Tuis"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Tuis"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Voeg _in"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Voeg ~in"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Uit~leg"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Uit~leg"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwysing_s"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Verwysing~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "He_rsien"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Beeld"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Beeld"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "T_eken"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "T~eken"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objek"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Druk"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Druk"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -21573,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Redigeer kontoer"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Uitbreiding"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/af/wizards/messages.po b/source/af/wizards/messages.po
index 0bfd865adba..2859f764b83 100644
--- a/source/af/wizards/messages.po
+++ b/source/af/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-05-20 11:22+0000\n"
+"PO-Revision-Date: 2020-11-30 10:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardsmessages/af/>\n"
"Language: af\n"
@@ -13,20 +13,20 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560928613.000000\n"
#. gbiMx
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
msgid "The directory '%1' could not be created.<BR>There may not be enough space left on your hard disk."
-msgstr "Die gids '%1' kon nie geskep word nie.<BR>Daar is moontlik nie voldoende hardeskyfspasie nie."
+msgstr "Die gids '%1' kon nie geskep word nie.<BR>Daar is moontlik nie voldoende oop hardeskyfruimte nie."
#. BPmbE
#: wizards/com/sun/star/wizards/common/strings.hrc:33
msgctxt "RID_COMMON_START_1"
msgid "The text document could not be created.<BR>Please check if the module 'PRODUCTNAME Writer' is installed."
-msgstr "Die teksdokument kon nie geskep word nie.<BR>Hersien asseblief die module 'PRODUCTNAME Writer' se installasie."
+msgstr "Die teksdokument kon nie geskep word nie.<BR>Kontroleer asseblief of die module 'PRODUCTNAME Writer' geïnstalleer is."
#. R9k3A
#: wizards/com/sun/star/wizards/common/strings.hrc:34
diff --git a/source/af/wizards/source/resources.po b/source/af/wizards/source/resources.po
index e82b8f51434..640380cf64d 100644
--- a/source/af/wizards/source/resources.po
+++ b/source/af/wizards/source/resources.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-13 15:35+0000\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1548167797.000000\n"
#. 8UKfi
@@ -23,7 +23,7 @@ msgctxt ""
"RID_COMMON_0\n"
"property.text"
msgid "The directory '%1' could not be created.<BR>There may not be enough space left on your hard disk."
-msgstr "Die gids '%1' kon nie geskep word nie.<BR>Daar is moontlik nie genoeg spasie op u hardeskyf nie."
+msgstr "Die gids '%1' kon nie geskep word nie.<BR>Daar is moontlik nie voldoende oop hardeskyfspasie nie."
#. zDuJi
#: resources_en_US.properties
@@ -41,7 +41,7 @@ msgctxt ""
"RID_COMMON_2\n"
"property.text"
msgid "The spreadsheet could not be created.<BR>Please check if the module 'PRODUCTNAME Calc' is installed."
-msgstr "Die sigblad kon nie geskep word nie.<BR>Gaan asseblief na of die 'PRODUCTNAME Calc'-module geïnstalleer is."
+msgstr "Die spreiblad kon nie geskep word nie.<BR>Hersien asseblief die installasie van die 'PRODUCTNAME Calc'-module."
#. jAyjL
#: resources_en_US.properties
@@ -59,7 +59,7 @@ msgctxt ""
"RID_COMMON_4\n"
"property.text"
msgid "The drawing could not be created.<BR>Please check if the module 'PRODUCTNAME Draw' is installed."
-msgstr "Die tekening kon nie geskep word nie.<BR>Gaan asseblief na of die 'PRODUCTNAME Draw'-module geïnstalleer is."
+msgstr "Die skets kon nie geskep word nie.<BR>Hersien asseblief die installasie van die module 'PRODUCTNAME Draw'."
#. rMsgf
#: resources_en_US.properties
@@ -68,7 +68,7 @@ msgctxt ""
"RID_COMMON_5\n"
"property.text"
msgid "The formula could not be created.<BR>Please check if the module 'PRODUCTNAME Math' is installed."
-msgstr "Die formule kon nie geskep word nie.<BR>Gaan asseblief na of die 'PRODUCTNAME Math'-module geïnstalleer is."
+msgstr "Die formule kon nie geskep word nie.<BR>Hersien asseblief die installasie van die module 'PRODUCTNAME Math'."
#. j5GzW
#: resources_en_US.properties
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 9f529e73cfc..e28dc995366 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-25 00:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/am/>\n"
@@ -20901,60 +20901,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 13f054f0bec..768c504ce71 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">አዲስ ዳይረክቶሪ ወይንም ፎልደር መፍጠሪያ አረፍተ ነገር</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "አዲስ ዳይሬክቶሪ መፍጠሪያ ከ ዳታ መገናኛ ላይ"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
+msgid "Creates a new directory on a data medium."
+msgstr "አዲስ ዳይሬክቶሪ መፍጠሪያ ከ ዳታ መገናኛ ላይ"
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "ዳይሬክቶሪ መፍጠሪያ እንደ ሀረግ"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>ጽሁፍ </emph> ማንኛውም የ ሀረግ መግለጫ የሚገልጽ የ ፋይል ስም እና መንገድ ለ ዳይሬክቶሪ እርስዎ መፍጠር ለሚፈልጉት: እርስዎ እንዲሁም መጠቀም ይችላሉ <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "መንገድ ካልተወሰነ: ዳይሬክቶሪው ይፈጠራል በ አሁኑ ዳይሬክቶሪ ውስጥ"
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "የ ነበረውን ዳይሬክቶሪ ከ ዳታ መገናኛ ውስጥ ማጥፊያ"
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "ዳይሬክቶሪ ማጥፊያ ጽሁፍ እንደ ሀረግ"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "መንገዱ ካልተወሰነ የ <emph> ዳይሬክቶሪ ማስወገጃ አረፍተ ነገር </emph> ውስጥ: በ አሁኑ ዳይሬክቶሪ ውስጥ እርስዎ ማጥፋት የሚፈልጉትን በ አሁኑ መንገድ ውስጥ ይፈልጋል: እዛ ውስጥ ካልተገኘ: የ ስህተት መልእክት ይታያል"
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "መፈጸሚያ ማስቆሚያ ለ Basic ፕሮግራም"
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">ከ አረፍተ ነገር ጋር</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "እቃ ማሰናጃ እንደ ነባር እቃ: ሌላ የ እቃ ስም ካልተገለጸ በስተቀር: ሁሉም ባህሪዎች እና ዘዴዎች የሚያመሳክሩት ወደ ነባር እቃ ነው አረፍተ ነገሩ መጨረሻ እስከሚደርስ ድረስ"
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "ይጠቀሙ <emph>በ</emph> እና <emph>መጨረሻ በ</emph> እርስዎ በርካታ ባህሪዎች ወይንም ዘዴዎች ለ ነጠላ እቃ"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "ድምፅ ያጫውታል በ ኮምፒዩተር ስፒከር ውስጥ: ድምፁ የ ስርአቱ-ጥገኛ ነው እና እርስዎ ድምፁን እና መጠኑን መቀየር አይችሉም"
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/am/helpcontent2/source/text/scalc/00.po b/source/am/helpcontent2/source/text/scalc/00.po
index bc9a09bcfa2..3e80b28b4c7 100644
--- a/source/am/helpcontent2/source/text/scalc/00.po
+++ b/source/am/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-12-27 01:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index cc8a01bdc50..3834a428474 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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\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"
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "በ አግድም እና በ ቁመት ሁለቱንም ለማደንዘዝ: ይምረጡ <emph> ክፍል </emph> ከ ረድፉ በታች በኩል ያለውን ከ አምዱ በ ቀኝ በኩል እርስዎ ማደንዘዝ የሚፈልጉትን"
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">መመልከቻ - ክፍሎች ማደንዘዣ - ማደንዘዣ ረድፎች እና አምዶች</item>"
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "ለማቦዘን ይምረጡ <item type=\"menuitem\">መመልከቻ - ክፍሎች ማደንዘዣ - ረድፎች እና አምዶች ማደንዘዣ </item> እንደገና"
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "እርስዎ ማተም ከ ፈለጉ አንዳንድ ረድፍ በ ሁሉም ገጾች ላይ በ ሰነዱ ላይ: ይምረጡ <item type=\"menuitem\"> አቀራረብ - የ ማተሚያ መጠን - ማረሚያ </item>"
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Rows and Columns\">መመልከቻ - ክፍሎች ማደንዘዣ - ረድፎች እና አምዶች ማደንዘዣ</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
diff --git a/source/am/helpcontent2/source/text/sdraw/01.po b/source/am/helpcontent2/source/text/sdraw/01.po
index 3949a0f11b2..fd2876ba154 100644
--- a/source/am/helpcontent2/source/text/sdraw/01.po
+++ b/source/am/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 15:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 0bd180c2539..a0cbfb1356a 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-03-18 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/am/>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index 604f92519c5..e28f983aafd 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-12-09 17:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">መስሪያ በ <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "የ ስህተት መግለጫ መሳሪያ"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>የ ስህተት መግለጫ መሳሪያ</bookmark_value> <bookmark_value>መግለጫዎች: ስህተት መግለጫዎች</bookmark_value> <bookmark_value>የ ግጭት መግለጫዎች</bookmark_value> <bookmark_value>የ ማስነሻ: ስህተት መግለጫ መሳሪያ</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">የ ስህተት መግለጫ መሳሪያ</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "የ ስህተተ መግለጫ መሳሪያ ራሱ በራሱ ይጀምራል ፕሮግራም በሚጋጭ ጊዜ"
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "የ ስህተት መግለጫ መሳሪያ ሁሉንም አስፈላጊ መረጃ ይሰበስባል: ፕሮግራም አበልጻጊዎቹ ኮዱን እንዲያሻሻሉ: ስለዚህ በሚቀቀጥለው እትም ይህ ስህተት ይወገዳል: እባክዎን የ መነጨውን ስህተት በ መላክ ሶፍትዌሩን እንድናሻሻል ይርዱን:"
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "የ ስህተት መግለጫ መሳሪያ ማስጀመሪያ"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "በ በርካታ ፕሮግራም ውስጥ ግጭት የ ስህተት መግለጫ መሳሪያ ራሱ በራሱ ይጀምራል"
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "መግለጫውን መጨረሻ"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "በ ዋናው የ ስህተት መግለጫ መሳሪያ ንግግር ውስጥ: እርስዎ ተጨማሪ መረጃ ማስገባት ይችላሉ አበልጻጊዎቹን ስለ ስህተቱ ሊረዳ የሚችል: ለምሳሌ: ስህተቱ የ ተፈጠረው በ ጠንካራ አክል ለውጥ እንደሆነ ወይንም ሶፍትዌር ምክንያት: ወይንም እርስዎ ምን ቁልፍ ሲጫኑ ስህተቱ እንደ ተፈጠረ: እባክዎን መረጃውን ያካትቱ"
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "የ ስህተት መግለጫ በ መላክ ላይ"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "የ ስህተት መግላጫ የሚጠቀመው መሳሪያ የ HTTP PUT / SOAP አሰራር ነው ዳታ ለ መላክ: እርስዎ በ ምርጫ ያስገቡ መግለጫ ጽሁፍ እንዲረዳ ለ መለያ ይዞታ ለ ፕሮግራሙ ግጭት: እና ከዛ ይጫኑ የ <emph>መላኪያ</emph> ቁልፍ"
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "ለ እርስዎ የ ስህተት መግለጫ ምንም መልስ አያገኙም: እርስዎ እርዳታ ከ ፈለጉ ይህን ይጎብኙ የ <link href=\"text/shared/main0108.xhp\">እርዳታ ክፍል </link> ከ ኢንተርኔት ላይ"
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "ምን ዳታ ተላከ?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "የ ስህተት መግለጫ በርካታ ፋይሎች ይይዛል: ዋናው ያዘው ፋይል ስለ ስህተት አይነቶች ነው: የ መስሪያ ስርአት ስም እና እትም: የ ማስታወሻ አጠቃቀም: እና እርስዎ ያስገቡትን መግለጫ ነው: እርስዎ መጫን ይችላሉ የ <emph> መግለጫ ማሳያ </emph> ቁልፍ ከ ዋናው ንግግር ውስጥ ከ ስህተት መግለጫ መሳሪያ ውስጥ መመልከት ይችላሉ በ ዋናው ፋይል ውስጥ የሚላከውን"
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "በተጨማሪ የ ተገኘው የ ማስታወሻ ይዞታ እና መከመሪያ ምልክት የሚመነጨው እና የሚሰበሰበው በ አንዳንድ መደበኛ መሳሪያ ነው (\"dbhhelp.dll\" በ Windows ስርአት ውስጥ: \"pstack\" በ UNIXስርአት ውስጥ). ይህ መረጃ እንዲሁም ይላካል"
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "ያስታውሱ አንድ የ ተለየ የ ማተሚያ ስራ መፍጠር ለ እያንዳንዱ ፋክስ: ያለ በለዚያ የ መጀመሪያው ተቀባይ ሁሉንም ፋክሶች ይላኩለታል በ <emph> መሳሪያዎች - ደብዳቤ ማዋሀጃ </emph> ንግግር ውስጥ ይምረጡ የ <emph> ማተሚያ </emph> ምርጫ እና ከዛ ይምረጡ የ <emph> ነጠላ ማተሚያ ስራ </emph> ምልክት ማድረጊያ ሳጥን ውስጥ"
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "ነባር ቴምፕሌቶች መቀየሪያ"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>ማሻሻያ: ይመልከቱ መቀየሪያ</bookmark_value><bookmark_value>መቀየሪያ: ይመልከቱ እንዲሁም ማረሚያ እና መቀየሪያ</bookmark_value><bookmark_value>ነባር ቴምፕሌቶች; መቀየሪያ</bookmark_value><bookmark_value>ነባር;ሰነዶች</bookmark_value><bookmark_value>ማስተካከያ ቴምፕሌቶች</bookmark_value><bookmark_value>ማሻሻያ;ቴምፕሌቶች</bookmark_value><bookmark_value>ማረሚያ;ቴምፕሌቶች</bookmark_value><bookmark_value>ቴምፕሌቶች;ማረሚያ እና ማስቀመጫ</bookmark_value><bookmark_value>ማስቀመጫ;ቴምፕሌቶች</bookmark_value><bookmark_value>እንደ ነበር መመለሻ;ቴምፕሌቶች</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">ነባር ቴምፕሌቶች መቀየሪያ </link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "እርስዎ አዲስ ሰነድ በሚከፍቱ ጊዜ በ <emph> ፋይል - አዲስ </emph> ባዶ ሰነድ ይታያል መሰረት ያደረገ በ $[officename] ቲምፕሌት: እርስዎ ማረም: ማሻሻል: ወይንም መቀየር ይችላሉ ይህን ቲምፕሌት: የ እርስዎ ቴምፕሌት የሚፈልጉትን ይዞታ እንዲይዝ"
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "ነባር ቴምፕሌቶች ማሻሻያ"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "መጀመሪያ ይክፈቱ የ ነበረ $[officename] ቲምፕሌት እና ያሻሽሉት: ወይንም እርስዎ አዲስ ሰነድ ይክፈቱ እና የሚፈልጉትን ቲምፕሌት ለ መፍጠር ያርሙት"
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "እርስዎ መግለጽ ይችላሉ የ ሰነድ ቴምፕሌት ለ እያንዳንዱ $[officename] ክፍል: የሚቀጥለው የሚገልጸው የ ጽሁፍ ሰነዶች እንዴት እንደሚገለጹ ነው"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "ሰነድ ያስቀምጡ በ መምረጥ <emph> ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት </emph> እና ሰነድ ያስቀምጡ በ <emph> የ እኔ ቴምፕሌቶች </emph> ምድብ ውስጥ"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "ይምረጡ <emph> ፋይል - አዲስ - ቴምፕሌቶች </emph>"
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "ሁለት ጊዜ-ይጫኑ <emph> የ እኔ ቴምፕሌቶች </emph> ዝርዝር ውስጥ: ለ እርስዎ ይታይዎታል በ ተጠቃሚ-የሚገለጽ ቴምፕሌቶች በ ተጠቃሚ ዳይሬክቶሪ የሚገለጽ ስር ውስጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - መንገድ </emph> እርስዎ ያስቀመጡትን ቴምፕሌት ይምረጡ"
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "ይምረጡ <emph> እንደ ነባር ማሰናጃ </emph> እርስዎ አዲስ የ ጽሁፍ ሰነድ ሲከፍቱ በሚቀጥለው ጊዜ: አዲሱ ሰነድ አዲሱን ነባር ቴምፕሌት መሰረት ያደረገ ይሆናል"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "ቴምፕሌቶች ማስተካከያ መጠቀሚያ"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "የ እርስዎን ስራ ለማቅለል በርካታ መንገዶች አሉ የ እርስዎን ቴምፕሌቶች ማስተካከያ በ መጠቀም"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "ቴምፕሌቶች በ ቴምፕሌት ፎልደር ውስጥ"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "እርስዎ አዲስ ቴምፕሌት ማስቀመጥ ይችላሉ በ <emph> ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት </emph> ወይንም በ መምረጥ \"ቴምፕሌት\" ፋይል አይነት በ ማንኛውም ማስቀመጫ ንግግር ውስጥ: ቴምፕሌት ያስቀምጡ በ ተጠቃሚ ዳይሬክቶሪ ውስጥ በ ተወሰነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - መንገድ </emph> ቴምፕሌቱ ጋር ለ መድረስ በ ቀላሉ ከ <emph> ፋይል - አዲስ - ቴምፕሌት </emph> ንግግር ውስጥ"
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "ቴምፕሌት ለ ማረም ለ መክፈት: ይምረጡ <emph> ፋይል - አዲስ - ቴምፕሌቶች </emph> ቴምፕሌት ይምረጡ እና ይጫኑ <emph> ማረሚያ </emph> ቁልፍ"
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,14 +24100,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "ይህን ይመልከቱ <link href=\"text/swriter/guide/templates_styles.xhp\">ቴምፕሌቶች እና ዘዴዎች </link> ለ ተዛመደ መረጃ"
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "ይህን ይመልከቱ <link href=\"text/swriter/guide/template_create.xhp\">የ ሰነድ ቴምፕሌት መፍጠሪያ </link> ለ ተዛመደ መረጃ"
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index 71dd8e298ea..f8668748203 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-12-10 01:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "መመልከቻ"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>መመልከቻ: ነባር</bookmark_value> <bookmark_value>ነባር: መመልከቻ</bookmark_value> <bookmark_value>ማሰናጃ: መመልከቻ</bookmark_value> <bookmark_value>የ ምልክቶች: መጠን</bookmark_value> <bookmark_value>የ ምልክቶች: ዘዴዎች</bookmark_value> <bookmark_value>WYSIWYG በ ፊደል ዝርዝር ውስጥ</bookmark_value> <bookmark_value>ቅድመ እይታ: የ ፊደሎች ዝርዝር</bookmark_value> <bookmark_value>የ ፊደሎች ዝርዝር</bookmark_value> <bookmark_value>የ ፊደል ስም ሳጥን</bookmark_value> <bookmark_value>የ አይጥ: ቦታ</bookmark_value> <bookmark_value>ቁራጭ ሰሌዳ: መምረጫ ቁራጭ ሰሌዳ</bookmark_value> <bookmark_value>ምርጫ ቁራጭ ሰሌዳ</bookmark_value> <bookmark_value>OpenGL: ማሰናጃዎች</bookmark_value> <bookmark_value>OpenGL: ጥቁር ዝርዝር</bookmark_value> <bookmark_value>OpenGL: ነጭ ዝርዝር</bookmark_value> <bookmark_value>OpenGL: የ ንድፎች ውጤት</bookmark_value> <bookmark_value>የ ማስታወሻ ደብተር መደርደሪያ: ምልክት መጠን</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "የ መመልከቻ ምርጫዎች መወሰኛ"
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "የ ተጠቃሚ ገጽታ"
+msgid "Icon style"
+msgstr "የ ምልክት ዘዴ"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "የ እቃ መደርደሪያ ምልክት መጠን"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">የ ምልክት ዘዴ ለ ምልክቶች በ እቃ መደርደሪያ እና ንግግሮች ውስጥ ይወስኑ </ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "የ ጎን መደርደሪያ ምልክት መጠን"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">የ ጎን መደርደሪያ ምልክት መጠን ይወስኑ </ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "የ ማስታወሻ ደብተር መደርደሪያ ምልክት መጠን"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">የ ማሳያ መጠን ይወስኑ ለ <link href=\"text/shared/01/notebook_bar.xhp\">ማስታወሻ ደብተር መደርደሪያ</link> ምልክቶች </ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "የ ምልክት ዘዴ"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">የ ምልክት ዘዴ ለ ምልክቶች በ እቃ መደርደሪያ እና ንግግሮች ውስጥ ይወስኑ </ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">የ ጎን መደርደሪያ ምልክት መጠን ይወስኑ </ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "የ መመልከቻ ፊደል ማለስለሻ"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">ይምረጡ ለ ጽሁፍ ማለስለሻ በ መመልከቻው ላይ</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">ትንሹን የ ፊደል መጠን ያስገቡ ማለስለሻ ለ መፈጸም</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">ምልክቶች ከ ተመሳሳይ ዝርዝር እቃዎች አጠገብ ማሳያ: ይምረጡ ከ \"ራሱ በራሱ\": \"መደበቂያ\" እና \"ማሳያ\": \"ራሱ በራሱ\" ምልክት ያሳያል እንደ ስርአቱ ማሰናጃ እና ገጽታ አይነት </ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "አይጥ"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "የ አይጥ ቦታ"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">የ አይጥ መጠቆሚያው አዲሲ በ ተከፈተው ንግግር ውስጥ የት ቦታ እንደሚሆን መወሰኛ </ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "የ አይጥ መሀከል ቁልፍ"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "መጨረሻ ምልክት የ ተደረገበት የ ተመረጠው ይዞታ ለ ቁራጭ ሰሌዳ ምርጫ"
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "የ ንድፎች ውጤት"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">ይጫኑ Shift+Ctrl+R እንደ ነበር ለመመለስ ወይንም የ አሁኑን ሰነድ መመልከቻ ለማነቃቃት</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">ይጫኑ Shift+Ctrl+R እንደ ነበር ለመመለስ ወይንም የ አሁኑን ሰነድ መመልከቻ ለማነቃቃት</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,68 +3805,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">በሚደገፍ ጊዜ: እርስዎ ማስቻል እና ማሰናከል ይችላሉ ፀረ-ደረጃ የ ንድፎችን: ፀረ-ደረጃ ካስቻሉ በርካታ የ ንድፍ እቃዎች የሚታዩት ለስለስ ብለው ነው ማንኛውም ንድፎች </ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "የ OpenGL ለ ሁሉም ማቅረቢያ ይጠቀሙ (እንደገና ሲጀምር)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">ይጠቀሙ ከፍተኛ የ Open Graphics Library መፈጸሚያ (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) ሁሉንም የሚታዩ አካላቶች ለማቅረብ: መተግባሪያዎች: መስኮቶችንም ያካትታል: ዝርዝሮች: የ እቃ መደርደሪያ: እና ምልክቶች </ahelp> OpenGL የሚጠቀመው የ ኮምፒዩተር ንድፎች አካል ማፍጠኛ ለ ንድፎች ማቅረቢያ ነው: አካሉ በ ጥቁር ዝርዝር ውስጥ ካለ (ከ ታች በኩል ይመልከቱ) ይህ ምርጫ ስኬታማ አይሆንም"
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "ያስገድዱ የ OpenGL በ ጥቁር ዝርዝር ውስጥ ቢኖርም እንኳን (እንደገና ሲያስጀምሩ)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">ማስገደጃ ለ መጠቀም የ OpenGL የ ንድፎቹ አካሉ ጥቁር ዝርዝር ውስጥ ቢኖርም </ahelp> አካሉ ጥቁር ዝርዝር ውስጥ የሚገባው ችግር ሲኖረው ነው ወይንም ለ ንድፎች አጠቃቀም አስቸጋሪ ሲሆን ነው"
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "ዝርዝር"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "ምልክቶች በ ዝርዝር ውስጥ"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">ምልክቶች ከ ተመሳሳይ ዝርዝር እቃዎች አጠገብ ማሳያ: ይምረጡ ከ \"ራሱ በራሱ\": \"መደበቂያ\" እና \"ማሳያ\": \"ራሱ በራሱ\" ምልክት ያሳያል እንደ ስርአቱ ማሰናጃ እና ገጽታ አይነት </ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">ሊመረጡ የሚችሉ ፊደሎች የ ተመሳሳይ ፊደሎች ስም ማሳያ: ለምሳሌ: ፊደሎች በ ፊደሎች ሳጥን ውስጥ በ <emph> አቀራረብ </emph> መደርደሪያ </ahelp> ውስጥ"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "የ መመልከቻ ፊደል ማለስለሻ"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">ይምረጡ ለ ጽሁፍ ማለስለሻ በ መመልከቻው ላይ</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">ትንሹን የ ፊደል መጠን ያስገቡ ማለስለሻ ለ መፈጸም</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index fb88f5cfe78..df5914a136d 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: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "እርስዎ ካልወሰኑ ሁሉም አዲስ $[officename] የ ጽሁፍ ሰነድ ነባሩን ቴምፕሌት መሰረት ያደረገ ይሆናል"
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] ቁጥሮች አሉት <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">በቅድሚያ የ ተወሰነ ቴምፕሌቶች</link> እርስዎ መፍጠር ይችላሉ የተለያዩ ሰነዶች ወይንም የ ጽሁፍ ሰነዶች: እንደ ንግድ ደብዳቤ የመሳሰሉ"
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "በ ቀጥታ መጠቆሚያ ባህሪ ለማሰናዳት: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - የ አቀራረብ እርዳታ </emph>"
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "በ <item type=\"menuitem\"> መሳሪያዎች </item> መደርደሪያ ላይ ይጫኑ <item type=\"menuitem\"> በ ቀጥታ መጠቆሚያ </item> ምልክት <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\"> ምልክት </alt></image>"
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "በ ጽሁፍ ሰነድ ውስጥ በ ባዶ ቦታ ላይ ይጫኑ: የ አይጥ መጠቆሚያው ይቀየራል ወደ ማሰለፊያ አንጸባራቂ እርስዎ በሚጽፉት ጽሁፍ ላይ ይፈጸማል"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">ምልክት</alt></image> በ ግራ ማሰለፊያ"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">ምልክት</alt></image> መሀከል"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">ምልክት</alt></image> በ ቀኝ ማሰለፊያ"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index 73df5e9c9eb..dc658f2706a 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/am/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "ተንሸራታች ~መደበቂያ"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "ጽ~ሁፍ..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~ፋይል"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ማሰለፊ~ያ"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ማሰለፊ~ያ"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "የ አንቀጽ መጨረሻ ይምረጡ"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "ከ ቃሉ በስተ ቀኝ ይምረጡ"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index eacea3dac68..54816644a14 100644
--- a/source/am/sc/messages.po
+++ b/source/am/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-06-05 20:56+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/am/>\n"
@@ -24592,213 +24592,213 @@ msgid "~File"
msgstr "~ፋይል"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "ለ ተመረጡት ክፍሎች ድንበር ይወስኑ"
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "ማስረጊያ መጨመሪያ"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "ማስረጊያ መቀነሻ"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "ሜ_ዳ"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "እቃ ማሰለፊያ"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_ዳታ"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~ዳታ"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "መቀየሪያ"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~እቃ"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~ብዙሀን መገናኛ"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_ማተሚያ"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~ማተሚያ"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29628,338 +29628,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "መፍትሄ ሰጪ"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "ም_ርጫዎች..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_መፍትሄ"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_ኢላማው ክፍል"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "ከፍተኛው ውጤት ወደ"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "ክፍሎቹን _በ መቀየር"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "አነስ_ተኛ"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_ከፍተኛ"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_ዋጋ ከ"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_ክፍል ማመሳከሪያ"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_አንቀሳቃሽ"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "ዋ_ጋ"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "የ ክፍል ማመሳከሪያ"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "የ ክፍል ማመሳከሪያ"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "የ ክፍል ማመሳከሪያ"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "የ ክፍል ማመሳከሪያ"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Integer"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binary"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "አንቀሳቃሽ"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Integer"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binary"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "አንቀሳቃሽ"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Integer"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binary"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "አንቀሳቃሽ"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Integer"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binary"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "አንቀሳቃሽ"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "ዋጋ"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "ዋጋ"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "ዋጋ"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "ዋጋ"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "ማስወገጃ"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "ማስወገጃ"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "ማስወገጃ"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "ማስወገጃ"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "ሁኔታዎችን መወሰኛ"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index 1743310127d..a0d74dda188 100644
--- a/source/am/sd/messages.po
+++ b/source/am/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-05-11 01:10+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/am/>\n"
@@ -3822,116 +3822,116 @@ msgstr "~ሰንጠረዥ"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "መቀየሪያ"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_እቃ"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~እቃ"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_ዲ"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~ዲ"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_ዋናው"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~ዋናው"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -4335,12 +4335,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_ዝርዝር"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6573,219 +6567,219 @@ msgid "~File"
msgstr "~ፋይል"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ቤት"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "ሜ_ዳ"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_እቅድ"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_ተንሸራታች ማሳያ"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~ተንሸራታች ማሳያ"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_ሰንጠረዥ"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~ሰንጠረዥ"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "መቀየሪያ"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_እቃ"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~እቃ"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_ዋናው"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~ዋናው"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~ረቂቅ"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_ዲ"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~ዲ"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -7695,12 +7689,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ቅርጽ ማረሚያ"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/am/starmath/messages.po b/source/am/starmath/messages.po
index cae8f713da7..1be77a6f636 100644
--- a/source/am/starmath/messages.po
+++ b/source/am/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-07-20 17:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index 13f3d6c3cea..91482f6d4ff 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/am/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "ተንሸራታቹን በ አሁኑ መስኮት ልክ ማድረጊያ"
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "SmartArts. መጫን አልተቻለም: ማስቀመጥ በ Microsoft Office 2010 ወይንም ከዚያ በኋላ ያሉ ይህን ችግር ያስወግዳሉ"
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13959,17 +13959,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "መቃኛ መደርደሪያ"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"የ ግጭቱ መግለጫ ተሳክቶ ተጭኗል\n"
-"እርስዎ በ ትንሽ ጊዜ ውስጥ መግለጫውን ያገኙታል በ:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13995,10 +13992,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_ሁለተኛ የ ግጭት መግለጫ"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index 43791b4b949..3c6f472553e 100644
--- a/source/am/sw/messages.po
+++ b/source/am/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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20365,181 +20365,181 @@ msgid "~File"
msgstr "~ፋይል"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ቤት"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_እቅድ"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "ማመሳከሪያዎ_ች"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "ማመሳከሪ~ያ"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_ሰንጠረዥ"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~ሰንጠረዥ"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_እቃ"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~እቃ"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_ማተሚያ"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~ማተሚያ"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -21577,12 +21577,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ቅርጽ ማረሚያ"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index f84c6084a41..33c7c989d02 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-31 13:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/an/>\n"
@@ -21086,60 +21086,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
index b288d530cf3..e4582400446 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-30 17:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/an/>\n"
@@ -8522,16 +8522,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Ucultar diapositiva"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Texto..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -27276,27 +27275,25 @@ msgctxt ""
msgid "~File"
msgstr "~Fichero"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Aliniar"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Aliniar"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -33125,16 +33122,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Seleccionar dica final d'o párrafo"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Seleccionar dica o final d'a parola"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index cf9c0e78a7c..4edacaa1fb1 100644
--- a/source/an/sc/messages.po
+++ b/source/an/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-31 13:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/an/>\n"
@@ -26518,213 +26518,213 @@ msgid "~File"
msgstr "~Fichero"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Obchecto"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -31698,350 +31698,356 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Opcions..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minimo"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Maximo"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Valors"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Numero "
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binario"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr ""
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Numero "
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binario"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr ""
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Numero "
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binario"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr ""
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Numero "
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binario"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr ""
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valors"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valors"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valors"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valors"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Borrar"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Borrar"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Borrar"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Borrar"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index cc0a8b76fcb..6d0246a555d 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/an/>\n"
@@ -3857,116 +3857,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obchecto"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4370,12 +4370,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6627,219 +6621,219 @@ msgid "~File"
msgstr "~Fichero"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obchecto"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7765,12 +7759,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/an/starmath/messages.po b/source/an/starmath/messages.po
index 6c255888f4b..64e32abb5c4 100644
--- a/source/an/starmath/messages.po
+++ b/source/an/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2193,9 +2193,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 127aadad408..aff72dabffc 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/an/>\n"
@@ -7267,10 +7267,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14031,13 +14031,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14061,10 +14061,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index a891091822e..ed61a6b5b2d 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-08-30 17:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/an/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20662,181 +20662,181 @@ msgid "~File"
msgstr "~Fichero"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obchecto"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21884,12 +21884,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 2d4cc05653c..559808387f4 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-05 13:34+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: Arabic <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/ar/>\n"
@@ -20955,60 +20955,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared.po b/source/ar/helpcontent2/source/text/sbasic/shared.po
index 5f13ccbbe0c..ea2aad16c04 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ar/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,49 +12814,40 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
+msgid "Creates a new directory on a data medium."
+msgstr ""
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
+msgid "MkDir path"
msgstr ""
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
#. PLopZ
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr ""
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "مثال:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr ""
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr ""
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr ""
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "مثال:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr ""
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "مثال:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,40 +24811,49 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
msgstr ""
#. zLuzY
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr ""
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "مثال:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/ar/helpcontent2/source/text/scalc/00.po b/source/ar/helpcontent2/source/text/scalc/00.po
index c3b74f981d9..29a72a1fbab 100644
--- a/source/ar/helpcontent2/source/text/scalc/00.po
+++ b/source/ar/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/ar/helpcontent2/source/text/scalc/guide.po b/source/ar/helpcontent2/source/text/scalc/guide.po
index 927a3d0086b..5b0ac889bd2 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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr ""
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr ""
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/ar/helpcontent2/source/text/sdraw/01.po b/source/ar/helpcontent2/source/text/sdraw/01.po
index 2743370f9ef..6df23080a31 100644
--- a/source/ar/helpcontent2/source/text/sdraw/01.po
+++ b/source/ar/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 15:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index e5eeb7e1522..4768b1372ed 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/ar/helpcontent2/source/text/shared/guide.po b/source/ar/helpcontent2/source/text/shared/guide.po
index 4305e068ea3..b42c21304ac 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr ""
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,148 +10447,139 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
+msgid "Crash Report Tool"
msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
+msgid "Starting the Crash Report Tool"
msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr ""
-
-#. vq6k8
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
msgstr ""
#. uD7Ga
@@ -22075,31 +21796,31 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr ""
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
msgstr ""
#. nWgSj
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr ""
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
+msgid "Creating a Default Template"
msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
msgstr ""
-#. GuEWL
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index f47f355cfc8..ac531407cbd 100644
--- a/source/ar/helpcontent2/source/text/shared/optionen.po
+++ b/source/ar/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "عرض"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,49 +3517,67 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
+msgid "Visibility"
msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
msgstr ""
#. QWZyh
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,22 +3751,22 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
msgstr ""
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
msgstr ""
#. WzMq5
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr ""
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr ""
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr ""
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index 7e2bf3f881f..bc769244caf 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: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,13 +16891,13 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr ""
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
msgstr ""
#. VFfAP
@@ -17269,13 +17251,13 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
msgstr ""
#. AmitQ
@@ -17287,31 +17269,31 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr ""
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
msgstr ""
#. EuMGF
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
index babd98f8147..4880aa8c275 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8036,15 +8036,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "أ~خفِ الشريحة"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~نص..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25551,25 +25551,25 @@ msgctxt ""
msgid "~File"
msgstr "~ملف"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~حاذِ"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~حاذِ"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31166,15 +31166,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "حدد حتى نهاية الفقرة"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "حدد حتى الكلمة على اليمين"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index ab6a8f3ef61..1097e23496d 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25070,213 +25070,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30243,347 +30243,353 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "الحلّال"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_خيارات..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_حلّ"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "الخلية ال_هدف"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "تحسين نتيجة إلى"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "بت_غيير الخلايا"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "الأ_دنى"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "الحد الأ_قصى"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_قيمة"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "مرجع ال_خلية"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "ال_معامل"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "الق_يمة"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "مرجع ال_خلية"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "مرجع ال_خلية"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "مرجع ال_خلية"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "مرجع ال_خلية"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "عدد صحيح"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "ثنائي"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "ال_معامل"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "عدد صحيح"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "ثنائي"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "ال_معامل"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "عدد صحيح"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "ثنائي"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "ال_معامل"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "عدد صحيح"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "ثنائي"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "ال_معامل"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "القيمة"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "القيمة"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "القيمة"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "القيمة"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "إزالة"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "إزالة"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "إزالة"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "إزالة"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "تحديد الشروط"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index ac430878067..dc8c1d2990f 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3858,116 +3858,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4371,12 +4371,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6641,219 +6635,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7817,12 +7811,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "الخط المحيط للكتابة"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ar/starmath/messages.po b/source/ar/starmath/messages.po
index f489f33b2c2..3880f5082f6 100644
--- a/source/ar/starmath/messages.po
+++ b/source/ar/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2203,9 +2203,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 7f9d1887616..29971ce3151 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Arabic <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ar/>\n"
@@ -7271,10 +7271,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "لائم الشّريحة إلى النّافذة الحاليّة."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14070,17 +14070,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "شريط الملاحة"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"رُفع بلاغ الانهيار بنجاح.\n"
-"يمكنك رؤيته قريبا على:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -14106,10 +14103,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "أر_سل بلاغ الانهيار"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index a6d6678eb29..79883b5eb46 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-06-26 08:22+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: Arabic <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ar/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20493,181 +20493,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21730,12 +21730,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "الخط المحيط للكتابة"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index ab6de88e039..736be11a8f6 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21463,60 +21463,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
index a154e50ef2b..88522e9be7e 100644
--- a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -8121,15 +8121,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "স্লাইড লুকাওক (~H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "লিখনী (~x)..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25807,27 +25807,25 @@ msgctxt ""
msgid "~File"
msgstr "ফাইল (~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "সংৰেখন"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "সংৰেখন"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31497,15 +31495,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "দফাৰ শেষলৈ বাছনী কৰক"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "সোঁফালৰ শব্দলৈ বাছনী কৰক"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index e6a8fae98f6..7c4b9118b31 100644
--- a/source/as/sc/messages.po
+++ b/source/as/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25173,213 +25173,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30406,351 +30406,357 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "ছল্ভাৰ"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "বিকল্পসমূহ (_p)..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "সমাধান কৰক (_S)"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "লক্ষ্য কোষ (_T)"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "বৃদ্ধি কৰক"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "কোষ পৰিবৰ্তন কৰি (_B)"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "নূন্যতম (_u)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "সর্বাধিক (_M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "চিহ্নিত বস্তুৰ মান (_V)"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "অপাৰেটৰ (_O)"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "মান (_a)"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "পূৰ্ণসংখ্যা"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "যুগ্মক"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "অপাৰেটৰ (_O)"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "পূৰ্ণসংখ্যা"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "যুগ্মক"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "অপাৰেটৰ (_O)"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "পূৰ্ণসংখ্যা"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "যুগ্মক"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "অপাৰেটৰ (_O)"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "পূৰ্ণসংখ্যা"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "যুগ্মক"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "অপাৰেটৰ (_O)"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "মান (_a)"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "মান (_a)"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "মান (_a)"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "মান (_a)"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "আঁতৰাওক"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "আঁতৰাওক"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "আঁতৰাওক"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "আঁতৰাওক"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "বহুত চৰ্ত"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index 80c7c743796..827192703a2 100644
--- a/source/as/sd/messages.po
+++ b/source/as/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3872,116 +3872,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4385,12 +4385,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6706,219 +6700,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7885,12 +7879,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "টেক্সটৰ ৰূপৰেখা"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/as/starmath/messages.po b/source/as/starmath/messages.po
index e5a6a95493f..7dca2fe6a9c 100644
--- a/source/as/starmath/messages.po
+++ b/source/as/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2202,9 +2202,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index ff834d3c40e..798fd6081e4 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Assamese <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/as/>\n"
@@ -7297,10 +7297,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14177,13 +14177,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "নেভিগেশ্বন বাৰ"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14207,10 +14207,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index ceb6adf413c..0ad19436eaf 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -99,10 +99,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20924,181 +20924,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22153,12 +22153,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "টেক্সটৰ ৰূপৰেখা"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index e8205a64e7c..4b2f9bfc0e7 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-20 21:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/ast/>\n"
@@ -21179,60 +21179,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index 4c2650b56e9..a0d620cdbf4 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-21 00:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/ast/>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Crea un directoriu nuevu nun soporte de datos."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "Creates a new directory on a data medium."
+msgstr "Crea un directoriu nuevu nun soporte de datos."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Testu As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Testu:</emph> Cualquier espresión de cadena qu'especifique'l nome y ruta del directoriu que se deseya crear. Tamién pue usase la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Si la ruta d'accesu nun se determina, créase'l directoriu nel directoriu actual."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Desanicia un directoriu d'un soporte de datos."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Testu As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Si la ruta d'accesu nun se determina, la <emph>instrucción RmDir</emph> busca'l directoriu que se deseya desaniciar na ruta actual. Si nun lu atopa, apaez un mensaxe de fallu."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Detien la execución del programa Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Define un oxetu como'l predetermináu. Nun siendo que se declare otru nome d'oxetu, toles propiedaes y métodos faen referencia al oxetu predetermináu hasta que se llega a la instrucción End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Use <emph>With</emph> y <emph>End With</emph> si tien delles propiedaes o métodos pa un únicu oxetu."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Fai sonar un tonu al traviés del altavoz del ordenador. El tonu depende del sistema y nun pue modificar el volume nin la modulación."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/00.po b/source/ast/helpcontent2/source/text/scalc/00.po
index b3cf40fdfc7..69585430406 100644
--- a/source/ast/helpcontent2/source/text/scalc/00.po
+++ b/source/ast/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-03 13:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/ast/>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index 71ff6268dd8..c768a05c491 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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-04 11:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/ast/>\n"
@@ -7550,22 +7550,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "P'afitar horizontal y verticalmente escueya la <emph>caxella</emph> asitiada debaxo de la filera y a la derecha de la columna que deseye afitar."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7586,13 +7586,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Si deseya qu'una filera determinada imprentar en toles fueyes d'un documentu, utilice'l siguiente comandu <emph>Formatu - Árees d'impresión - Editar.</emph>"
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/ast/helpcontent2/source/text/sdatabase.po b/source/ast/helpcontent2/source/text/sdatabase.po
index 2289e45d392..bec07f0b501 100644
--- a/source/ast/helpcontent2/source/text/sdatabase.po
+++ b/source/ast/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-08-18 15:35+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
#. ugSgG
#: 02000000.xhp
@@ -3145,7 +3145,7 @@ msgctxt ""
"par_idN10548\n"
"help.text"
msgid "Table"
-msgstr ""
+msgstr "Tabla"
#. JWHfj
#: toolbars.xhp
@@ -3199,7 +3199,7 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Desanicia la tabla esbillada.</ahelp>"
#. m7BX3
#: toolbars.xhp
diff --git a/source/ast/helpcontent2/source/text/sdraw/01.po b/source/ast/helpcontent2/source/text/sdraw/01.po
index 5783d545d1c..2afb4d98239 100644
--- a/source/ast/helpcontent2/source/text/sdraw/01.po
+++ b/source/ast/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494345812.000000\n"
#. ybhKD
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 7ef2f4131a7..139da88aab0 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-22 11:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/ast/>\n"
"Language: ast\n"
@@ -752,7 +752,7 @@ msgctxt ""
"hd_id3149388\n"
"help.text"
msgid "Table"
-msgstr ""
+msgstr "Tabla"
#. Gg9dS
#: 01010201.xhp
@@ -4172,7 +4172,7 @@ msgctxt ""
"hd_id3145315\n"
"help.text"
msgid "Table"
-msgstr ""
+msgstr "Tabla"
#. 9HAgU
#: 01110101.xhp
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index 1c6c7822e02..feef6be7a6f 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-04 11:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/ast/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Trabayar con <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "Documentu de T602"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Testu"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Testu"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Ferramienta d'informe de fallos"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Ferramienta d'informe de fallos</bookmark_value> <bookmark_value>fallos, informar de fallos</bookmark_value> <bookmark_value>informes de cayíes</bookmark_value> <bookmark_value>activar;Ferramienta d'informe de fallos</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Programa de informe de fallos\">Programa d'informe de fallos</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "La ferramienta d'informe de fallos empecípiase automáticamente cuando se bloquia un programa."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "El programa d'informe de fallos axunta tola información necesaria p'ayudar a los desarrolladores de programes a ameyorar el códigu, con cuenta de que nes versiones posteriores esti fallu probablemente pueda evitase. Ayudar a ameyorar el software y únvienos un informe del fallu xeneráu."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Empecipiar el programa d'informe de fallos"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "La ferramienta d'informe de fallos empecípiase automáticamente en casi tolos bloqueos de programa."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Completar l'informe"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Nel diálogu de la ferramienta d'informe de fallos, pue escribir información adicional p'ayudar los desarrolladores a atopar l'erru. Por exemplu, indique tamién si l'erru namái apaez tres un cambéu nel hardware o'l software, o si fíxose clic nun botón."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Unviar l'informe del fallu"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "El programa d'informe de fallos usa'l protocolu HTTP PUT/SOAP pa unviar los datos del informe. Opcionalmente pue escribir una descripción que nos ayudar a identificar el contestu de la cayida del programa. Calque dempués el botón <emph>Unviar</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Nun va llograr una respuesta al so informe de fallu. Si precisa asistencia, visite el <link href=\"text/shared/main0108.xhp\">foru d'asistencia</link> n'Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "¿Qué datos s'unvien?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "L'informe de fallu consta de dellos ficheros. El principal contién información sobre'l tipu de fallu, el nome del sistema operativu y la versión, l'usu de la memoria y la descripción qu'introdució. Pue calcar el botón <emph>Amosar informe</emph> nel diálogu principal del programa d'informe de fallos pa ver qué se va unviar nel ficheru principal."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Amás, el conteníu relevante de la memoria y los rastros de les piles axuntar por aciu delles ferramientes estándar del sistema (\"dbhhelp.dll\" nos sistemes Windows, \"pstack\" nos sistemes UNIX). Tamién se va unviar esta información."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Recuerde que tien de crear un trabayu d'impresión dixebráu pa cada fax; de lo contrario, el primer receptor va recibir tolos faxes. Nel diálogu <emph>Ferramientes - Combinar correspondencia</emph>, escueya la opción <emph>Imprentadora</emph> y, de siguío, el caxellu de verificación <emph>Crear xeres individuales d'impresión</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Camudar una plantía predeterminada"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>camudar, ver cambeos</bookmark_value><bookmark_value>camudar, ver tamién editar y trocar</bookmark_value><bookmark_value>plantíes predeterminaes; camudar</bookmark_value><bookmark_value>predeterminaos;documentos</bookmark_value><bookmark_value>plantíes personalizaes</bookmark_value><bookmark_value>anovar; plantíes</bookmark_value><bookmark_value>editar;plantíes</bookmark_value><bookmark_value>plantíes;editar y guardar</bookmark_value><bookmark_value>guardar;plantíes</bookmark_value><bookmark_value>reestablecer;plantíes</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Modificar una plantilla predeterminada\">Modificar una plantía predeterminada</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Al abrir un documentu nuevu con <emph>Ficheru - Nuevu</emph>, apaez un documentu baleru, basáu nuna plantía de $[officename]. Pue editar, camudar o trocar esta plantía de forma que'l documentu nuevu tenga los sos estilos personalizaos o otru conteníu."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modificar una plantía predeterminada"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "De primeres, abra una plantía de $[officename] y modificar, o abra un documentu nuevu y faiga los cambeos pertinentes pa crear la plantía que precisa."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
+
+#. bnC8i
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3145748\n"
+"help.text"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. 2pSHL
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3146901\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Naturalmente va poder definir una plantía pa cada módulu de $[officename]. De siguío describimos cómo proceder colos documentos de testu."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
-#. dAATP
+#. MEA5R
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Escueya <emph>Ficheru - Nuevu - Plantíes</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
msgstr ""
-#. GuEWL
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Cómo utilizar les mesmes plantíes de documentos"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. Quf5G
+#. 3w93A
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id51605476162735\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Esisten delles maneres de facilitar el trabayu por aciu l'usu de plantíes personalizaes."
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. S8XFP
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Plantíes na carpeta de plantíes"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index f5f513c47c8..7394f1537bd 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-20 06:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ast/>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Anidiar tipos de lletra de pantalla"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifique'l tamañu de tipu de lletra más pequeñu p'aplicar l'anidiáu.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Salida de gráficos"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Calque Mayús + Control + R pa restaurar o anovar la vista del documentu actual.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Calque Mayús + Control + R pa restaurar o anovar la vista del documentu actual.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\".\">Cuando ye soportáu, pue habilitase o evacuar l'anti-aliasing de gráficos. Con anti-aliasing habilitáu, la visualización de la mayoría de los oxetos gráficos llucen nidios y con menos artefactos.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menú"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Anidiar tipos de lletra de pantalla"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique'l tamañu de tipu de lletra más pequeñu p'aplicar l'anidiáu.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index 9bb89da004b..c498f618ee8 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-22 11:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1540152130.000000\n"
#. sZfWF
@@ -16691,7 +16691,7 @@ msgctxt ""
"hd_id3155775\n"
"help.text"
msgid "Style"
-msgstr ""
+msgstr "Estilu"
#. yYDqn
#: 05040500.xhp
@@ -16709,7 +16709,7 @@ msgctxt ""
"hd_id931604684769944\n"
"help.text"
msgid "Width"
-msgstr ""
+msgstr "Anchor"
#. H2vfk
#: 05040500.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 8574e642ca5..7c521e00cbc 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: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/ast/>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Si nun lu especifica otra mou, tolos documentos de testu nuevos de $[officename] va basar na plantía predeterminada."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] tien un númberu de <link href=\"text/swriter/01/05130000.xhp\" name=\"plantillas predefiníes\">plantíes predefiníes</link> que pue usar pa crear tipos distintos o documentos de testu, como les cartes comerciales."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Na barra <item type=\"menuitem\">Ferramientes</item>, faiga clic nel símbolu <item type=\"menuitem\">Cursor directu</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Iconu</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Faiga clic nun espaciu llibre del documentu de testu. El punteru del mur camuda pa reflexar l'alliniación que se va aplicar al testu qu'escriba."
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Iconu</alt></image> Alliniar a la izquierda"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Iconu</alt></image> Centru"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Iconu</alt></image> Alliniar a la derecha"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index f509d0b0273..ef564c56c73 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-20 07:13+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/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.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022492.000000\n"
#. W5ukN
@@ -8108,15 +8108,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Tapecer diapositiva"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~stu..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25776,27 +25776,25 @@ msgctxt ""
msgid "~File"
msgstr "~Ficheru"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Alliniar"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Alliniar"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31445,15 +31443,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Escoyer hasta'l final del párrafu"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Escoyer hasta'l final de la pallabra"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index c8da57ac54c..9ad13f4ecd6 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-02 14:43+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-25 12:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/ast/>\n"
"Language: ast\n"
@@ -25034,213 +25034,213 @@ msgid "~File"
msgstr "~Ficheru"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Especifique los bordes de les caxelles seleicionaes."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alliniación d'oxetos"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Oxetu"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprentar"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30092,7 +30092,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:85
msgctxt "sidebarnumberformat|numberformatcombobox"
msgid "Fraction"
-msgstr ""
+msgstr "Fraición"
#. kQGBu
#: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:86
@@ -30230,343 +30230,349 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Resolvedor"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_pciones..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Solucionar"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Caxella des_tín"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimizar resultáu a"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Cam_biando les caxelles"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Mínim_u"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Máximu"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Valor de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Referencia de _caxella"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operador"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_alor"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de _caxella"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de _caxella"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de _caxella"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de _caxella"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Enteru"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binariu"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operador"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Enteru"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binariu"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operador"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Enteru"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binariu"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operador"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Enteru"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binariu"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operador"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valor"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valor"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valor"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valor"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Desaniciar"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Desaniciar"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Desaniciar"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Desaniciar"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Condiciones llímites"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index 2ffee14c452..cb34d3ad7fe 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/ast/>\n"
@@ -3876,116 +3876,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oxetu"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4389,12 +4389,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6699,219 +6693,219 @@ msgid "~File"
msgstr "~Ficheru"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oxetu"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7865,12 +7859,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Contornu de caráuteres"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index 657c83fddfe..02f998639b9 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-08-30 17:35+0000\n"
+"PO-Revision-Date: 2020-11-25 12:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1540149375.000000\n"
#. bHbFE
@@ -4192,37 +4192,37 @@ msgstr "Desaniciar..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Empotrar"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Desempotrar"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Zarrar la barra llateral"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Personalización"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Restaurar lo predeterminao"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Axustes de la barra llateral"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/ast/starmath/messages.po b/source/ast/starmath/messages.po
index cc3314ca893..eb0b073d409 100644
--- a/source/ast/starmath/messages.po
+++ b/source/ast/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-20 07:13+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/ast/>\n"
@@ -2191,9 +2191,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 2529f04ed7c..41f3b27ac48 100644
--- a/source/ast/svx/messages.po
+++ b/source/ast/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-25 00:44+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-03 21:40+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ast/>\n"
"Language: ast\n"
@@ -7279,7 +7279,7 @@ msgstr "El documentu nun camudó dende'l caberu guardáu."
#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
-msgstr "Cargando documentu..."
+msgstr "Cargando'l documentu..."
#. YbNsP
#: include/svx/strings.hrc:1294
@@ -7287,11 +7287,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr ""
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Nun pudieron cargase tolos oxetos de SmartArt. Guardar en Microsoft Office 2010 o posterior va evitar esti problema."
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -7315,7 +7315,7 @@ msgstr "Amenorgar"
#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
-msgstr ""
+msgstr "25%"
#. vNTaU
#: include/svx/strings.hrc:1300
@@ -14142,13 +14142,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barra de navegación"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14172,10 +14172,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
@@ -19391,7 +19391,7 @@ msgstr ""
#: svx/uiconfig/ui/sidebarempty.ui:26
msgctxt "sidebarempty|RID_SIDEBAR_EMPTY_PANEL_TEXT"
msgid "Properties for the task that you are performing are not available for the current selection."
-msgstr "Les propiedaes de la xera que ta faciendo nun tan disponibles pa la esbilla actual."
+msgstr "Les propiedaes de la xera que tas faciendo nun tan disponibles pa la esbilla actual."
#. ED99f
#: svx/uiconfig/ui/sidebargallery.ui:108
@@ -19409,7 +19409,7 @@ msgstr ""
#: svx/uiconfig/ui/sidebargallery.ui:309 svx/uiconfig/ui/sidebargallery.ui:328
msgctxt "sidebargallery|RID_SVXSTR_GALLERY_THEMEITEMS"
msgid "Theme Items"
-msgstr ""
+msgstr "Elementos del tema"
#. FLH5B
#: svx/uiconfig/ui/sidebargallery.ui:323
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index f5faa6733f6..8e54a0d61d9 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-09-30 15:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ast/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20729,181 +20729,181 @@ msgid "~File"
msgstr "~Ficheru"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oxetu"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprentar"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21956,12 +21956,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Contornu de caráuteres"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/ast/xmlsecurity/messages.po b/source/ast/xmlsecurity/messages.po
index 916ce6484bb..25b7c0925c2 100644
--- a/source/ast/xmlsecurity/messages.po
+++ b/source/ast/xmlsecurity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:44+0100\n"
-"PO-Revision-Date: 2020-01-22 12:05+0000\n"
+"PO-Revision-Date: 2020-11-28 00:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/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.1.1\n"
"X-POOTLE-MTIME: 1527110958.000000\n"
#. EyJrF
@@ -144,27 +144,25 @@ msgstr "Nun pudo alcontrase nengún xestor de certificaos."
#: xmlsecurity/inc/strings.hrc:50
msgctxt "STR_XMLSECDLG_NO_CERT_FOUND"
msgid "Could not find the certificate."
-msgstr ""
+msgstr "Nun pudo alcontrase'l certificáu."
#. hXMQx
#: xmlsecurity/inc/strings.hrc:52
-#, fuzzy
msgctxt "RID_XMLSECWB_NO_MOZILLA_PROFILE"
msgid "Digital signatures functionality could not be used, because no Mozilla user profile was found. Please check the Mozilla installation."
-msgstr "Nun pudo usase la función Robles dixitales darréu que nun se proporcionó un perfil d'usuariu de Mozilla. Compruebe la instalación de Mozilla."
+msgstr "Nun pudo usase la función Robles dixitales darréu que nun s'alcontró dengún perfil d'usuariu de Mozilla. Comprueba la instalación de Mozilla."
#. dNPzJ
#: xmlsecurity/inc/strings.hrc:54
-#, fuzzy
msgctxt "selectcertificatedialog|STR_DIGITAL_SIGNATURE"
msgid "Digital signature"
-msgstr "Firmes dixitales"
+msgstr "Robla dixital"
#. ojssM
#: xmlsecurity/inc/strings.hrc:55
msgctxt "selectcertificatedialog|STR_NON_REPUDIATION"
msgid "Non-repudiation"
-msgstr ""
+msgstr "Non refugu"
#. kYHCr
#: xmlsecurity/inc/strings.hrc:56
@@ -188,13 +186,13 @@ msgstr ""
#: xmlsecurity/inc/strings.hrc:59
msgctxt "selectcertificatedialog|STR_KEY_CERT_SIGN"
msgid "Certificate signature verification"
-msgstr ""
+msgstr "Verificación de la robla del certificáu"
#. GQcAW
#: xmlsecurity/inc/strings.hrc:60
msgctxt "selectcertificatedialog|STR_CRL_SIGN"
msgid "CRL signature verification"
-msgstr ""
+msgstr "Verificación CRL de la robla"
#. i8FJM
#: xmlsecurity/inc/strings.hrc:61
@@ -204,10 +202,9 @@ msgstr ""
#. 4oZqX
#: xmlsecurity/inc/strings.hrc:62
-#, fuzzy
msgctxt "selectcertificatedialog|str_sign"
msgid "Sign"
-msgstr "Señales"
+msgstr "Roblar"
#. tMAzV
#: xmlsecurity/inc/strings.hrc:63
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index 838fea1fb8b..a55bd3b0ace 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21024,60 +21024,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
index 2f07545441a..421eaebdaff 100644
--- a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8063,14 +8063,14 @@ msgctxt ""
msgid "~Hide Slide"
msgstr ""
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
+msgid "Te~xt Attributes..."
msgstr ""
#. GR6Sf
@@ -25619,24 +25619,24 @@ msgctxt ""
msgid "~File"
msgstr ""
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Alig~n Objects"
msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Align Tex~t"
msgstr ""
#. y3E2U
@@ -31240,14 +31240,14 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr ""
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
+msgid "Select to End of Word"
msgstr ""
#. bpBoC
diff --git a/source/az/sc/messages.po b/source/az/sc/messages.po
index 9901b927f3d..9ce3c23f124 100644
--- a/source/az/sc/messages.po
+++ b/source/az/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24590,213 +24590,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29681,344 +29681,350 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "~Seçimlər..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr ""
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr ""
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Dәyәr"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr ""
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr ""
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr ""
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr ""
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr ""
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr ""
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr ""
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr ""
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Dәyәr"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Dәyәr"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Dәyәr"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Dәyәr"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
#, fuzzy
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "~Sil"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
#, fuzzy
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "~Sil"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
#, fuzzy
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "~Sil"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
#, fuzzy
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "~Sil"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index 33bc4b9f8de..3bf9f7259b9 100644
--- a/source/az/sd/messages.po
+++ b/source/az/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3836,116 +3836,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4349,12 +4349,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6600,219 +6594,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7742,12 +7736,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/az/starmath/messages.po b/source/az/starmath/messages.po
index faf38c5d7be..aee3e8e2e9c 100644
--- a/source/az/starmath/messages.po
+++ b/source/az/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-14 08:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Azerbaijani <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/az/>\n"
@@ -2205,9 +2205,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/az/svx/messages.po b/source/az/svx/messages.po
index 05339159d83..78ed93edaf3 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7249,10 +7249,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -13995,13 +13995,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14025,10 +14025,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index fc8dddc298a..9f3035ed3d2 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20530,181 +20530,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21748,12 +21748,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index dcb023d5191..f89fce4dfba 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -20897,60 +20897,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
index d822a772e27..a46082a9ed8 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Не паказваць слайд"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Тэкст..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25516,25 +25516,25 @@ msgctxt ""
msgid "~File"
msgstr "Файл"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Раўнаванне"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Раўнаванне"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31115,15 +31115,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Пазначыць да заканчэння абзаца"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Пазначыць да слова ўправа"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index 37cd0408eee..16bed249b98 100644
--- a/source/be/sc/messages.po
+++ b/source/be/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25153,213 +25153,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30294,351 +30294,357 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Срэбны"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Настаўленні..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "Вырашыць"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
#, fuzzy
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Мэта"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
#, fuzzy
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Аптымізаваць згодна з"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
#, fuzzy
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Чыё"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Максімальнае"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Максімальнае"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
#, fuzzy
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "Значэнне з"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
#, fuzzy
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Клетка reference"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
#, fuzzy
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "Аператар"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Значэнне"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Клетка reference"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Клетка reference"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Клетка reference"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Клетка reference"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Цэлы лік"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Бінарны"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Аператар"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Цэлы лік"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Бінарны"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Аператар"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Цэлы лік"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Бінарны"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Аператар"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Цэлы лік"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Бінарны"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Аператар"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Велічыня"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Велічыня"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Велічыня"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Велічыня"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Сцерці"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Сцерці"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Сцерці"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Сцерці"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Умовы абмежавання"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index 030e3775257..8dd6c511c41 100644
--- a/source/be/sd/messages.po
+++ b/source/be/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3828,116 +3828,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4341,12 +4341,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6578,219 +6572,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7700,12 +7694,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Змяніць контур"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/be/starmath/messages.po b/source/be/starmath/messages.po
index ebf7c3d0d9d..db9a7500822 100644
--- a/source/be/starmath/messages.po
+++ b/source/be/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2192,9 +2192,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index 7fd0dc6b5c6..02f6c752410 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\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"
@@ -7236,10 +7236,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -13976,13 +13976,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Стужка навігацыі"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14006,10 +14006,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Даслаць справаздачу пра крах"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index e05bc736bce..5172eaca37b 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20363,181 +20363,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21575,12 +21575,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Змяніць контур"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index aecd4d40503..1cb3cb64b2f 100644
--- a/source/bg/cui/messages.po
+++ b/source/bg/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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/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.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564897785.000000\n"
#. GyY9M
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Изберете предпочитания от вас потребителски интерфейс."
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Стандартна лента с инструменти"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Единична лента с инструменти"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Странична лента"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "С раздели"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "С раздели, компактна"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Лента с групи, компактна"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Лента с групи"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Лента с групи, компактна"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Контекстно, обединени"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Контекстни групи"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Единична лента с инструменти"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Странична лента"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared.po b/source/bg/helpcontent2/source/text/sbasic/shared.po
index 976be0c92a2..bc31ce12e72 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-30 22:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/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.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562357378.000000\n"
#. yzYVt
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">Оператор MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Създава нова директория върху носител на данни."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Creates a new directory on a data medium."
+msgstr "Създава нова директория върху носител на данни."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> низов израз, задаващ името и пътя на създаваната директория. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Ако пътят не е определен, директорията се създава в текущата директория."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Изтрива съществуваща директория от носител на данни."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Ако не е зададен път, операторът <emph>RmDir</emph> търси директорията за изтриване в текущия път. Ако не бъде намерена там, се показва съобщение за грешка."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Спира изпълнението на програма на Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">Оператор With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Задава обект като обект по подразбиране. Освен ако бъде декларирано друго име на обект, всички свойства и методи се отнасят за подразбирания обект до срещането на оператор End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Използвайте <emph>With</emph> и <emph>End With</emph>, ако искате да се обърнете към няколко свойства или методи на един и същ обект."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Изсвирва тон през високоговорителя на компютъра. Звукът зависи от системата и не можете да променяте силата или височината му."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/bg/helpcontent2/source/text/scalc/00.po b/source/bg/helpcontent2/source/text/scalc/00.po
index c4804a8b7ee..78161785342 100644
--- a/source/bg/helpcontent2/source/text/scalc/00.po
+++ b/source/bg/helpcontent2/source/text/scalc/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-17 16:43+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/bg/>\n"
"Language: bg\n"
@@ -1187,14 +1187,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Изберете <item type=\"menuitem\">Изглед - Разделяне на прозореца</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Изберете <item type=\"menuitem\">Изглед - Фиксиране на клетки - Фиксиране на редове и колони</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr "<variable id=\"fefix\">Изберете <item type=\"menuitem\">Изглед - Фиксиране на редове и колони</item>.</variable>"
#. BkQfX
#: 00000412.xhp
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index 265206fb5c4..480d8821bc8 100644
--- a/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/source/bg/helpcontent2/source/text/scalc/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: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-11-10 20:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/bg/>\n"
"Language: bg\n"
@@ -7550,23 +7550,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "За да фиксирате едновременно по хоризонтала и по вертикала, изберете <emph>клетката</emph>, която е под реда и отдясно на колоната, които искате да фиксирате."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Изберете <item type=\"menuitem\">Изглед - Фиксиране на клетки - Фиксиране на редове и колони</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr "Изберете <item type=\"menuitem\">Изглед - Фиксиране на редове и колони</item>."
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "За премахване на фиксирането изберете отново <item type=\"menuitem\">Изглед - Фиксиране на клетки - Фиксиране на редове и колони</item>."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr "За премахване на фиксирането изберете отново <item type=\"menuitem\">Изглед - Фиксиране на редове и колони</item>."
#. U7GBK
#: line_fix.xhp
@@ -7586,14 +7586,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Ако искате да отпечатате определен ред на всички страници на документа, използвайте <item type=\"menuitem\">Форматиране - Области за печат - Редактиране</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Изглед - Фиксиране на клетки - Фиксиране на редове и колони</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Изглед - Фиксиране на редове и колони</link>"
#. RbKLt
#: line_fix.xhp
diff --git a/source/bg/helpcontent2/source/text/sdraw/01.po b/source/bg/helpcontent2/source/text/sdraw/01.po
index 93364b70601..e0d8a559fa7 100644
--- a/source/bg/helpcontent2/source/text/sdraw/01.po
+++ b/source/bg/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-18 15:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/bg/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Задава ориентацията на страницата, белите полета по края й, фона и други настройки на оформлението.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "За да промените фона на всички страници в активния файл, изберете фон, щракнете върху <emph>OK</emph> и после – върху <emph>Да</emph> в диалоговия прозорец <emph>Настройки на страница</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index 5faf2526bd7..2b9bc991a68 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-19 19:35+0000\n"
+"PO-Revision-Date: 2020-11-23 15:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/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.1.1\n"
"X-POOTLE-MTIME: 1562356072.000000\n"
#. 3B8ZN
@@ -2669,7 +2669,7 @@ msgctxt ""
"bm_id3147315\n"
"help.text"
msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>напасване на редовете; определение</bookmark_value><bookmark_value>редова разредка на страницата; определение</bookmark_value>"
#. ygQrE
#: 00000005.xhp
@@ -2687,7 +2687,7 @@ msgctxt ""
"par_id3145230\n"
"help.text"
msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
-msgstr ""
+msgstr "В %PRODUCTNAME напасването на редовете се нарича <emph>Редова разредка на страницата</emph>."
#. WxQBJ
#: 00000005.xhp
@@ -2696,7 +2696,7 @@ msgctxt ""
"par_id3154223\n"
"help.text"
msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
-msgstr ""
+msgstr "Под обща редова разредка на страницата се разбира съгласуваното отпечатване на редовете в текстовите области от двете страни на листа. Съгласуваната редова разредка прави страницата по-лесна за четене, като предотвратява прозиране на сиви сенки между редовете на текста. Понятието може да се отнася и за редове в съседни текстови колони, за които се използва обща вертикална мрежа, така че да бъдат вертикално подравнени помежду си."
#. BNJUC
#: 00000005.xhp
@@ -2705,7 +2705,7 @@ msgctxt ""
"par_id761604345191168\n"
"help.text"
msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
-msgstr ""
+msgstr "Печатането с настройка „Редова разредка на страницата“ е особено полезно за документи, които ще имат срещуположни съседни страници (например книга или брошура), за оформления с няколко колони и за документи, предназначени за двустранен печат."
#. Es2pF
#: 00000005.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 82c3e07b829..5941ad1803e 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/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.1.1\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562503995.000000\n"
@@ -8000,14 +8000,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "Знакът, представен от осемцифрения шестнадесетичен код в Уникод (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "За определени символни шрифтове кодът в Уникод за специалните знаци може да зависи от използвания шрифт. Кодовете в Уникод могат да се прегледат чрез командата <menuitem>Вмъкване - Специален знак</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index 0ecc3d14ec7..3e109a841fb 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-17 16:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/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.1.1\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356897.000000\n"
@@ -98,6 +98,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Работа с %PRODUCTNAME\">Работа с <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3527,15 +3536,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Документ на HTML"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3779,24 +3779,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "OpenDocument - текст (плосък XML)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 - текстов документ"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 - текстов документ"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3806,24 +3788,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 - текстов документ"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF – преносим документен формат"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - преносим документен формат"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3878,24 +3842,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "Документ на T602"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Текст"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Текст"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5165,15 +5111,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "Филтри за GRAPHICFILTER"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP – растерно изображение на Windows"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5201,15 +5138,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF – формат за обмен на AutoCAD"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF – разширен метафайл"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5219,15 +5147,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF – разширен метафайл"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS – капсулиран PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5237,15 +5156,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS – капсулиран PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr "GIF – формат за обмен на графика"
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5255,24 +5165,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr "GIF – формат за обмен на графика"
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5291,24 +5183,6 @@ msgctxt ""
msgid "text/html"
msgstr "text/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG – формат на Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG – формат на Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5318,15 +5192,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG – формат на Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET – метафайл на OS/2"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5345,15 +5210,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV – файлов формат на QuickTime"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM – преносимо растерно изображение"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5390,15 +5246,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr "PCD – Photo CD Base4"
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT – Mac Pict"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5417,15 +5264,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX – Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM – преносимо изображение в нива на сивото"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5435,33 +5273,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM – преносимо изображение в нива на сивото"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG – преносима мрежова графика"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG – преносима мрежова графика"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG – преносима мрежова графика"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5471,15 +5282,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG – преносима мрежова графика"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM – преносимо пикселно изображение"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5498,15 +5300,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD – Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS – растерно изображение на Sun"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5516,33 +5309,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS – растерно изображение на Sun"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG – мащабируема векторна графика"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG – мащабируема векторна графика"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG – мащабируема векторна графика"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5570,15 +5336,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG – мащабируема векторна графика (Draw)"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr "SVM – метафайл на StarView"
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5597,15 +5354,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA – Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF – файлов формат за изображения с маркери"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5615,15 +5363,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF – файлов формат за изображения с маркери"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF – метафайл на Windows"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5642,15 +5381,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM – растерно изображение на X"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM – пикселно изображение на X"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10718,149 +10448,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr "Ако искате да изпратите електронното писмо до получател, чийто софтуер не може да чете формата OpenDocument, можете да изпратите текущия документ в често използван несвободен формат. <br/>За текстов документ изберете <item type=\"menuitem\">Файл - Изпращане - Изпращане като документ на Microsoft Word</item>. За електронна таблица изберете <item type=\"menuitem\">Файл - Изпращане - Изпращане като електронна таблица на Microsoft Excel</item>. За презентация изберете <item type=\"menuitem\">Файл - Изпращане - Изпращане като презентация на Microsoft PowerPoint</item>. <br/>Ако искате да изпратите документа като файл само за четене, изберете <item type=\"menuitem\">Файл - Изпращане - Изпращане като PDF</item>.<br/>Тези команди не променят текущия документ. Създава се и се изпраща временно копие."
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Инструмент за докладване на грешки"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Инструмент за докладване на грешки</bookmark_value><bookmark_value>докладване на грешки</bookmark_value><bookmark_value>сривове, докладване за</bookmark_value><bookmark_value>активиране;Инструмент за докладване на грешки</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Инструмент за докладване на грешки\">Инструмент за докладване на грешки</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Инструментът за докладване на грешки стартира автоматично при програмен срив."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Инструментът за докладване на грешки събира цялата необходима информация, която може да помогне на разработчиците да подобрят кода, така че грешката да бъде избегната в следващите версии. Моля, помогнете ни да подобрим продукта, като изпратите генерирания доклад."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Стартиране на инструмента за докладване на грешки"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "При повечето програмни сривове инструментът за изтриване на грешки ще се стартира автоматично."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Попълване на доклада"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "В главния диалогов прозорец на инструмента за докладване на грешки можете да въведете малко допълнителна информация, за да помогнете на разработчиците да локализират грешката. Например, ако тя се проявява само след промяна в хардуерната или софтуерната конфигурация, или ако сте щракнали върху точно определен бутон, моля, включете тази информация."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Изпращане на доклад за грешки"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Инструментът за докладване на грешки изпраща данните на доклада чрез протокола HTTP PUT / SOAP. Можете да въведете и описателен текст, който да ни помогне да разберем контекста на програмния срив. След това натиснете бутона <emph>Изпращане</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Няма да получите отговор на доклада за грешка. Ако ви е необходима поддръжка, моля, посетете <link href=\"text/shared/main0108.xhp\">форума за поддръжка</link> в Интернет."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
-msgstr "Може да решите да отговаряте на евентуални въпроси от разработчиците относно докладваната грешка. Отметнете полето, ако искате да ви търсят по е-поща при необходимост от допълнителна информация. По подразбиране полето не е отметнато, така че няма да получавате писма."
+msgid "What Data are Sent?"
+msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Какви данни се изпращат?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Докладът за грешка се състои от няколко файла. Главният файл съдържа информация за типа на грешката, името и версията на операционната система, заетата памет и въведеното от вас описание. Можете да щракнете върху бутона <emph>Показване доклад</emph> в главния диалогов прозорец на инструмента за докладване на грешки, за да прегледате какво ще бъде изпратено в главния файл."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Освен това се събира свързаното със срива съдържание от паметта и стека чрез стандартни системни инструменти („dbhhelp.dll“ в Windows и „pstack“ в UNIX). Тази информация също се изпраща."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22076,32 +21797,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Не забравяйте да създавате отделно задание за печат за всеки факс, в противен случай първият получател ще получи всички факсове. В диалоговия прозорец <emph>Инструменти - Циркулярни писма</emph> изберете настройката <emph>Принтер</emph> и отметнете полето <emph>Единична задача за печат</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Промяна на подразбираните шаблони"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>промяна, виж също редактиране и замяна</bookmark_value><bookmark_value>подразбирани шаблони; промяна</bookmark_value><bookmark_value>подразбирани настройки;документи</bookmark_value><bookmark_value>шаблони по избор</bookmark_value><bookmark_value>обновяване; шаблони</bookmark_value><bookmark_value>редактиране;шаблони</bookmark_value><bookmark_value>шаблони;редактиране и записване</bookmark_value><bookmark_value>записване;шаблони</bookmark_value><bookmark_value>нулиране;шаблони</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Промяна на подразбираните шаблони\">Промяна на подразбираните шаблони</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22112,113 +21833,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Когато отворите нов документ с <emph>Файл - Нов</emph>, се появява празен документ, базиран върху шаблон на $[officename]. Можете да редактирате, промените или замените този шаблон, така че новият документ да съдържа ваши собствени стилове или друго съдържание."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Променяне на подразбираните шаблони"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Първо отворете съществуващ шаблон на $[officename] и го променете или отворете нов документ и го редактирайте както е необходимо, за да създадете желания шаблон."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Можете да зададете шаблон за документи за всеки модул на $[officename]. По-долу описваме какво трябва да направите за текстови документи."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Изберете <emph>Файл - Шаблони - Записване като шаблон</emph> и запишете документа в категорията <emph>Моите шаблони</emph>."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Изберете <emph>Файл - Нов - Шаблони</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Щракнете двукратно върху <emph>Моите шаблони</emph> в списъка. Ще видите потребителските шаблони от директорията, зададена в <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Пътища</emph>. Изберете шаблона, който току-що сте записали."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Изберете <emph>Задаване като подразбиран</emph>. Следващия път, когато отворите нов текстов документ, той ще бъде базиран на новия подразбиран шаблон."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Използване на шаблони по избор"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Има няколко начина да улесните работата си, като използвате ваши собствени шаблони."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Шаблони в папката за шаблони"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Можете да запишете нов шаблон с <emph>Файл - Шаблони - Записване като шаблон</emph> или като изберете типа файлове „Шаблон“ в диалогов прозорец за записване. Запишете шаблона в потребителската директория, зададена в <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Пътища</emph>, за да имате достъп до него от диалоговия прозорец <emph>Файл - Нов - Шаблони</emph>."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "За да отворите шаблона за редактиране, изберете <emph>Файл - Нов - Шаблони</emph>, изберете шаблона и щракнете върху бутона <emph>Редактиране</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24254,14 +24101,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Вижте <link href=\"text/swriter/guide/templates_styles.xhp\">Шаблони и стилове</link> за допълнителна информация."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Вижте <link href=\"text/swriter/guide/template_create.xhp\">Създаване на шаблон за документ</link> за допълнителна информация."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index fa0185c0b6c..246ec2dc819 100644
--- a/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/source/bg/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-21 15:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/bg/>\n"
"Language: bg\n"
@@ -3428,14 +3428,14 @@ msgctxt ""
msgid "View"
msgstr "Изглед"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>изгледи; подразбирани настройки</bookmark_value> <bookmark_value>подразбирани настройки; изгледи</bookmark_value> <bookmark_value>настройки; изгледи</bookmark_value> <bookmark_value>икони;размери</bookmark_value> <bookmark_value>икони;стилове</bookmark_value> <bookmark_value>WYSIWYG в списъци с шрифтове</bookmark_value> <bookmark_value>мостри; списъци с шрифтове</bookmark_value> <bookmark_value>шрифтове, списъци с</bookmark_value> <bookmark_value>шрифт, поле за име на</bookmark_value> <bookmark_value>мишка; позициониране</bookmark_value> <bookmark_value>клипборд; клипборд за селекции</bookmark_value> <bookmark_value>селекции, клипборд за</bookmark_value> <bookmark_value>OpenGL;настройки</bookmark_value> <bookmark_value>OpenGL;черен списък</bookmark_value> <bookmark_value>OpenGL;бял списък</bookmark_value> <bookmark_value>OpenGl;графичен изход</bookmark_value> <bookmark_value>динамична лента;размер на иконите</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr "<bookmark_value>изгледи; подразбирани настройки</bookmark_value> <bookmark_value>подразбирани настройки; изгледи</bookmark_value> <bookmark_value>настройки; изгледи</bookmark_value> <bookmark_value>икони;размери</bookmark_value> <bookmark_value>икони;стилове</bookmark_value> <bookmark_value>WYSIWYG в списъци с шрифтове</bookmark_value> <bookmark_value>мостри; списъци с шрифтове</bookmark_value> <bookmark_value>шрифтове, списъци с</bookmark_value> <bookmark_value>шрифт, поле за име на</bookmark_value> <bookmark_value>мишка; позициониране</bookmark_value> <bookmark_value>мишка; среден бутон</bookmark_value> <bookmark_value>клипборд; клипборд за селекции</bookmark_value> <bookmark_value>селекции, клипборд за</bookmark_value> <bookmark_value>Skia;настройки</bookmark_value> <bookmark_value>Skia;графичен изход</bookmark_value> <bookmark_value>динамична лента;размер на иконите</bookmark_value>"
#. cGjPM
#: 01010800.xhp
@@ -3455,59 +3455,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Определя настройките на изгледа."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Потребителски интерфейс"
+msgid "Icon style"
+msgstr "Стил на иконите"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Размер на иконите в лентите с инструменти"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Указва стила на иконите в лентите с инструменти и диалоговите прозорци.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Задава размера на иконите в лентите с инструменти.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> Възможността <emph>Автоматично</emph> означава използване на настройката за размер на шрифта за менюта в операционната система.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr "Размер на иконите"
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Размер на иконите в страничната лента"
+msgid "Toolbar"
+msgstr "Лента с инструменти"
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Задава размера за показване на иконите в страничната лента.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Задава размера за показване на иконите в лентите с инструменти.</ahelp>"
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Размер на иконите в динамичната лента"
+msgid "Notebookbar"
+msgstr "Динамична лента"
#. 29iV7
#: 01010800.xhp
@@ -3518,50 +3518,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Задава размера за показване на иконите в <link href=\"text/shared/01/notebook_bar.xhp\">динамичната лента</link>.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Стил на иконите"
+msgid "Sidebar"
+msgstr "Странична лента"
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Указва стила на иконите в лентите с инструменти и диалоговите прозорци.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Задава размера за показване на иконите в страничната лента.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Изглаждане на екранните шрифтове"
+msgid "Visibility"
+msgstr "Видимост"
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Отметнете, ако желаете текстът да се изглажда при показване на екрана.</ahelp>"
+msgid "Menu icons"
+msgstr "Икони в менютата"
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Въведете най-малкия размер на шрифта, при който да се изглаждат назъбванията.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Показва икони до съответните елементи от менюта. Можете да избирате между „Автоматично“, „Скриване“ и „Показване“. „Автоматично“ показва икони според системните настройки и теми.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr "Клавишни комбинации"
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr "Показва клавишни комбинации до съответните елементи от менюта. Можете да избирате между „Автоматично“, „Скриване“ и „Показване“. „Автоматично“ показва клавишни комбинации според системните настройки."
#. QWZyh
#: 01010800.xhp
@@ -3572,14 +3590,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Мишка"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Позициониране на мишката"
+msgid "Positioning"
+msgstr "Позициониране"
#. aYKpK
#: 01010800.xhp
@@ -3590,14 +3608,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Указва дали и как да се позиционира показалецът на мишката в новоотворени диалогови прозорци.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Среден бутон на мишката"
+msgid "Middle button"
+msgstr "Среден бутон"
#. 6Qe9V
#: 01010800.xhp
@@ -3734,23 +3752,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "Съдържанието на клипборда за селекции е последната маркирана селекция."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Графичен изход"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Натиснете Shift+Ctrl+R, за да възстановите или опресните изгледа на текущия документ.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Натиснете Shift+Ctrl+R, за да възстановите или опресните изгледа на текущия документ.</ahelp>"
+msgid "Graphics Output"
+msgstr "Графичен изход"
#. WzMq5
#: 01010800.xhp
@@ -3788,68 +3806,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Когато се поддържа, можете да включвате и изключвате изглаждането на назъбените краища в графики. С включено изглаждане повечето графични обекти изглеждат на екрана по-гладки и с по-малко дефекти.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Рендиране на всичко с OpenGL (след рестарт)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr "Рендиране на всичко със Skia (след рестарт)"
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Използване на високопроизводителната библиотека Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) за изобразяване на всички визуални елементи на приложението, включително прозорци, менюта, ленти с инструменти и икони.</ahelp> OpenGL използва графичното устройство на компютъра, за да ускори изобразяването на графика. Ако устройството е в черния списък (вижте по-долу), тази настройка няма да има ефект."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Използване на високопроизводителния графичен двигател Skia за изобразяване на всички визуални елементи на приложението, включително прозорци, менюта, ленти с инструменти и икони.</ahelp> Skia използва графичното устройство на компютъра, за да ускори изобразяването на графика."
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Налагане на OpenGL въпреки черния списък (след рестарт)"
+msgid "Force Skia software rendering (on restart)"
+msgstr "Налагане на софтуерно рендиране със Skia (след рестарт)"
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Налага използване на OpenGL дори ако графичното устройство е в черния списък.</ahelp> Устройство се включва в черния списък, когато има програмни дефекти или е възможно да изобразява некачествена графика."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Отметнете тази контрола, за да забраните на Skia да използва графичното устройство на компютъра.</ahelp>"
-#. CTQcx
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN107A3\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Menu"
-msgstr "Меню"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr "По време на инсталиране %PRODUCTNAME избира най-подходящите настройки за конфигуриране на графичния двигател Skia. Ако Skia е включен, обикновено не е необходимо да променяте подразбираните настройки."
-#. WnNCQ
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id361606171335950\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Икони в менютата"
-
-#. zqqN8
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_id3155766\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Показва икони до съответните елементи от менюта. Можете да избирате между „Автоматично“, „Скриване“ и „Показване“. „Автоматично“ показва икони според системните настройки и теми.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr "Ако се сблъскате с проблеми в графичната визуализация (например с външния вид на иконите в ленти с инструменти или на графичните обекти) и Skia е разрешен, може да опитате да изключите <emph>Налагане на софтуерно рендиране със Skia</emph> или изцяло да забраните Skia."
#. wPnrb
#: 01010800.xhp
@@ -3878,6 +3887,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Показва имената на достъпните за избиране шрифтове със самите шрифтове, например за шрифтовете от списъка на лентата <emph>Форматиране</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Изглаждане на екранните шрифтове"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Отметнете, ако желаете текстът да се изглажда при показване на екрана.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr "от"
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Въведете най-малкия размер на шрифта, при който да се изглаждат назъбванията.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index 2f71ba1f3c2..a054876c6f7 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-21 15:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/bg/>\n"
"Language: bg\n"
@@ -10301,7 +10301,7 @@ msgctxt ""
"bm_id3156383\n"
"help.text"
msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>числа; автоматично разпознаване в текстови таблици</bookmark_value><bookmark_value>таблици; числа, разпознаване</bookmark_value><bookmark_value>таблици;форматиране на дати</bookmark_value><bookmark_value>дати;автоматично форматиране в таблици</bookmark_value><bookmark_value>разпознаване;числа</bookmark_value>"
#. aahB7
#: number_date_conv.xhp
@@ -10337,7 +10337,7 @@ msgctxt ""
"par_id3155919\n"
"help.text"
msgid "Choose <menuitem>Table > Number recognition</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Таблица > Разпознаване на числа</menuitem>."
#. en4GC
#: number_date_conv.xhp
@@ -10346,7 +10346,7 @@ msgctxt ""
"par_id531605970858214\n"
"help.text"
msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
-msgstr ""
+msgstr "Когато този режим е включен, пред командата <menuitem>Разпознаване на числа</menuitem> има отметка."
#. hDANA
#: number_date_conv.xhp
@@ -10364,7 +10364,7 @@ msgctxt ""
"par_id781605970689063\n"
"help.text"
msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
-msgstr ""
+msgstr "Тази функционалност се прилага глобално върху всички таблици във всички документи. Когато е включена, въвеждането на дата в клетка от таблица ще предизвиква автоматично форматиране. Включването и изключването на режима не променя форматирането на съществуващи данни."
#. gsMre
#: number_date_conv.xhp
@@ -12517,14 +12517,14 @@ msgctxt ""
msgid "Printing a single page"
msgstr "Отпечатване на една страница"
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
-msgstr "Изберете <menuitem>Файл > Печат</menuitem>, за да отворите диалоговия прозорец <emph>Печат</emph>."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Изберете <menuitem>Файл - Печат</menuitem>, за да отворите диалоговия прозорец <emph>Печат</emph>."
#. 2GBM8
#: print_selection.xhp
@@ -12562,14 +12562,14 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr "Отпечатване на диапазон от страници"
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
-msgstr "Изберете <menuitem>Файл > Печат</menuitem>, за да отворите диалоговия прозорец <emph>Печат</emph>."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Изберете <menuitem>Файл - Печат</menuitem>, за да отворите диалоговия прозорец <emph>Печат</emph>."
#. hWBFk
#: print_selection.xhp
@@ -12589,59 +12589,41 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr "Въведете номерата на страниците за отпечатване."
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
-msgstr "• Използвайте <literal>-</literal> за диапазон от страници (например с <input>1–4</input> ще се отпечатат всички страници от 1 до 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
+msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
-msgstr "• Допускат се и частични диапазони."
-
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr "С <input>-5</input> ще се отпечатат всички страници до тази с номер 5 включително."
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr "С <input>10-</input> ще се отпечата всичко от страница 10 до края на документа."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
+msgstr ""
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
-msgstr "• Използвайте <literal>,</literal> или <literal>;</literal> за списък от страници. (Например с <input>1,3;7</input> ще се отпечатат страници 1, 3 и 7. Интервалите не са задължителни. 1, 3, 7 също ще работи.)"
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
+msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
-msgstr "• Възможни са и комбинации (например с <input>1, 3, 5-10, 15-</input> ще се отпечатат страници 1, 3, от 5 до 10 и от 15 до края на документа)."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
+msgstr ""
#. FRjsx
#: print_selection.xhp
@@ -12670,14 +12652,14 @@ msgctxt ""
msgid "Select the content to print."
msgstr "Изберете съдържанието, което да бъде отпечатано."
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
-msgstr "Изберете <menuitem>Файл > Печат</menuitem>, за да отворите диалоговия прозорец <emph>Печат</emph>."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Изберете <menuitem>Файл - Печат</menuitem>, за да отворите диалоговия прозорец <emph>Печат</emph>."
#. iaYKz
#: print_selection.xhp
@@ -13721,7 +13703,7 @@ msgctxt ""
"par_id391604248923423\n"
"help.text"
msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
-msgstr ""
+msgstr "Печатането с настройка <link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Редова разредка на страницата</emph></link> е особено полезно за документи, които ще имат срещуположни съседни страници (например книга или брошура), за оформления с няколко колони и за документи, предназначени за двустранен печат."
#. XHAM3
#: registertrue.xhp
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Освен ако сте задали нещо друго, всеки нов текстов документ на $[officename] се базира на шаблона по подразбиране."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] предлага няколко <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">предварително дефинирани шаблона</link>, от които можете да създавате различни видове документи, например бизнес писма."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "За да зададете поведението на свободния курсор, изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Помощ при форматиране</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "В лентата <item type=\"menuitem\">Инструменти</item> щракнете върху иконата <item type=\"menuitem\">Свободен курсор</item><image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Икона</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Щракнете върху празно място в текстовия документ. Показалецът на мишката се променя, за да отрази подравняването, което ще бъде приложено върху въвеждания текст:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Икона</alt></image> Подравняване отляво"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Икона</alt></image> Центриране"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Икона</alt></image> Подравняване отдясно"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
index c93f9157e22..118d0efc305 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-17 20:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/bg/>\n"
"Language: bg\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Скриване на кадър"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Текст..."
+msgid "Te~xt Attributes..."
+msgstr "Атрибути на текста..."
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Файл"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Подравняване"
+msgid "Alig~n Objects"
+msgstr "Подравняване на обекти"
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Подравняване"
+msgid "Align Tex~t"
+msgstr "Подравняване на текст"
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Маркиране до края на абзац"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Маркиране до дума отдясно"
+msgid "Select to End of Word"
+msgstr "Маркиране до края на дума"
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index 069cf9afd59..1622b7ac838 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/bg/>\n"
"Language: bg\n"
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "Файл"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Задайте кантовете на избраните клетки."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Увеличаване на отстъпа"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Намаляване на отстъпа"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Начало"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Поле"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вмъкване"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Подравняване на обект"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Оформление"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Оформление"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "Статистика"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Данни"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "Данни"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Преглед"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "Изглед"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Преобразуване"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Обект"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Обект"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Печат"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Печат"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Разширение"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Разширение"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Инструменти"
@@ -29626,338 +29626,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solver"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr "Нулиране на всички"
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_Настройки..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Отваря диалоговия прозорец Настройки на Solver."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Решаване"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Целева клетка"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Оптимизиране към"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Променяйки клетките"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "_Минимум"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Въведете диапазона от клетки, които могат да бъдат променяни."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Максимум"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Въведете диапазона от клетки, които могат да бъдат променяни."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Въведете диапазона от клетки, които могат да бъдат променяни."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Въведете или щракнете върху обръщението към целевата клетка. Това поле приема адреса на клетката, чиято стойност трябва да бъде оптимизирана."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Стойност на"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Въведете диапазона от клетки, които могат да бъдат променяни."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Въведете диапазона от клетки, които могат да бъдат променяни."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Обръщение към _клетка"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Операция"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Стойност"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Обръщение към клетка"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Обръщение към клетка"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Обръщение към клетка"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Обръщение към клетка"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Цяло число"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Двоично"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Операция"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Цяло число"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Двоично"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Операция"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Цяло число"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Двоично"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Операция"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Цяло число"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Двоично"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Операция"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Стойност"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Стойност"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Стойност"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Стойност"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Премахване"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Премахване"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Премахване"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Премахване"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Гранични условия"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Отваря диалоговия прозорец Solver. Тази функция служи за решаване на уравнения с няколко неизвестни и съвкупност от ограничения върху тях чрез методи за решаване на обратни задачи."
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index 7c4c8d5ff3e..3790477249b 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/bg/>\n"
@@ -3819,116 +3819,116 @@ msgstr "Таблица"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Преобразуване"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Обект"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Обект"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3D"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3D"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Образец"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Образец"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Разширение"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Разширение"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Инструменти"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "Меню"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Разширение"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "Файл"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Начало"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Поле"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вмъкване"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "Оформление"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Оформление"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Прожекция"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Прожекция"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Преглед"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "Изглед"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Таблица"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Таблица"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Преобразуване"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Обект"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Обект"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Образец"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Образец"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "Изглед"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "План"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Разширение"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Разширение"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Инструменти"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Редактиране на контура"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Разширение"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index 91527600303..b692f820e74 100644
--- a/source/bg/sfx2/messages.po
+++ b/source/bg/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-31 11:35+0000\n"
+"PO-Revision-Date: 2020-11-23 20:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/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.1.1\n"
"X-POOTLE-MTIME: 1559599623.000000\n"
#. bHbFE
@@ -4133,37 +4133,37 @@ msgstr "Изтриване..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Закачване"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Откачване"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Затваряне на страничната лента"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Персонализиране"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Връщане на подразбираните"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Настройки на страничната лента"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/bg/starmath/messages.po b/source/bg/starmath/messages.po
index 2e4f1f1164b..cc4bbe13a0c 100644
--- a/source/bg/starmath/messages.po
+++ b/source/bg/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/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.1.1\n"
"X-POOTLE-MTIME: 1562423232.000000\n"
#. GrDhX
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Фундаментална теорема на анализа"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr "Уравнение на хаоса"
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index 58675dc2abd..f4915c69957 100644
--- a/source/bg/svx/messages.po
+++ b/source/bg/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562357387.000000\n"
#. 3GkZj
@@ -7229,11 +7229,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Побиране на кадъра в текущия прозорец."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Не бе възможно да се заредят всички обекти SmartArt. Проблемът може да се избегне чрез записване във формат на Microsoft Office 2010 или по-нов."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Не бе възможно да се заредят всички обекти SmartArt. Проблемът може да се избегне чрез записване с Microsoft Office 2010 или по-нов."
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13956,17 +13956,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Лента за навигация"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Докладът за срив бе изпратен успешно.\n"
-"Той скоро ще бъде достъпен на адрес:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13992,11 +13989,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Изпращане на доклада"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Да не се изпраща"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index 1ac85df24ed..259ef3860fe 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562504032.000000\n"
#. v3oJv
@@ -100,11 +100,11 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr "Спазвайте подредбата на нивата на заглавията. Заглавие от ниво %LEVEL_CURRENT% не трябва да бъде след ниво %LEVEL_PREV%."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr "Избягвайте да използвате Fontworks в документите си. Уверете се, че се използва само за показване на примери или друг незначителен текст."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr "Избягвайте обектите на Fontwork в документите си. Използвайте ги само за примери или други текстове, които не носят собствено значение."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -20361,181 +20361,181 @@ msgid "~File"
msgstr "Файл"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Начало"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вмъкване"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Оформление"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Оформление"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Препратки"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Препратки"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Преглед"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "Изглед"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Таблица"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Таблица"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Обект"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Обект"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Печат"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Печат"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Разширение"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Разширение"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Инструменти"
@@ -21573,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Редактиране на контура"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Разширение"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index 4ac74a38a6e..3957318f773 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-16 06:42+0000\n"
"Last-Translator: parnas <parnasghosh@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -20951,60 +20951,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
index 5fe127a7172..a38d8a68c1b 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "একটি ডাটা মাধ্যমে নতুন একটি ডিরেক্টরী তৈরি করা হয়।"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
+msgid "Creates a new directory on a data medium."
+msgstr "একটি ডাটা মাধ্যমে নতুন একটি ডিরেক্টরী তৈরি করা হয়।"
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>লেখ:</emph> যেকোনো স্ট্রিং এক্সপ্রেশন যাতে তৈরি করা হবে এমন ডিরেক্টরির নাম এবং পাথ উল্লেখ থাকে। আপনি <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL নোটেশন</link>ও ব্যবহার করতে পারেন।"
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "যদি একটি পাথ নির্ধারিত না থাকে তাহলে বর্তমান ডিরেক্টরিতে এই ডিরেক্টরিটি তৈরি হবে।"
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "ডাটা মাধ্যম হতে একটি বিদ্যমান ডিরেক্টরী মুছে ফেলা হয়।"
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "যদি পাথ নির্ধারণ করা না হয়, তাহলে আপনি বর্তমান পাথের যে ডিরেক্টরিটি মুছে ফেলতে চান তার জন্য <emph>RmDir স্টেটমেন্ট</emph> অনুসন্ধান চালায়। এটি যদি সেখানে পাওয়া না যায় তাহলে একটি ত্রুটি বার্তা আবির্ভূত হয়।"
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "মূল প্রোগ্রাম চালনা থামিয়ে দেয়া হয়।"
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "একটি বস্তুকে ডিফল্ট বস্তু হিসেবে নির্ধারণ করা হয়। অন্য বস্তু নাম ডিক্লেয়ার করা ব্যতীত, End With স্টেটমেন্টে না পৌঁছানো পর্যন্ত সকল বৈশিষ্ট্যাবলী এবং পদ্ধতি দ্বারা পূর্বনির্ধারিত বস্তু নির্দেশিত হয়ে থাকে।"
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "যদি একক বস্তুর জন্য বিভিন্ন বৈশিষ্ট্যাবলী অথবা প্রক্রিয়া থাকে তাহলে <emph>With</emph> এবং <emph>End With</emph> ব্যবহার করুন।"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "কম্পিউটার স্পীকারের মাধ্যমে একটি সুর বাজানো হয়। সুরটি সিস্টেম-নির্ভরশীল এবং এর শব্দ অথবা পিচ পরিবর্তন করা যায় না।"
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/00.po b/source/bn-IN/helpcontent2/source/text/scalc/00.po
index 639ef6f79e7..d0475eabd6b 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/00.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/guide.po b/source/bn-IN/helpcontent2/source/text/scalc/guide.po
index 524c4f60a7d..df8a61a1f0f 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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "অনুভূমিক এবং উলম্ভভাবে জমাতে,<emph>ঘর</emph>নির্বাচন করুন যা সারির নিচে এবং কলামের ডানে যা আপনি জমাতে চান।"
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "যদি আপনি একটি নথির সব পৃষ্ঠায় একটি নির্দিষ্ট সারি মুদ্রণ করতে চান, <emph>বিন্যাস - মুদ্রণ পরিসর - সম্পাদনা করুন</emph> পছন্দ করুন।"
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/bn-IN/helpcontent2/source/text/sdraw/01.po b/source/bn-IN/helpcontent2/source/text/sdraw/01.po
index 96472aa87d5..3b563172a13 100644
--- a/source/bn-IN/helpcontent2/source/text/sdraw/01.po
+++ b/source/bn-IN/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 17:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index 758500c31bc..33d2f32bd7e 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/bn-IN/helpcontent2/source/text/shared/guide.po b/source/bn-IN/helpcontent2/source/text/shared/guide.po
index a66e5271135..a3f54fd06c6 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\"><item type=\"productname\">%PRODUCTNAME</item></link> কাজ করছে"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "ভুল বিবরণীর টুল"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">ভুল বিবরণীর টুল</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "একটি প্রোগ্রাম ক্রাশ হলে ত্রুটি বার্তা টুলটি স্বয়ংক্রিয়ভাবে শুরু হয়।"
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "ত্রুটি প্রতিবেদন টুল সমস্ত প্রয়োজনীয় তথ্য সমবেত করে যা কোডের উন্নতির জন্য করতে প্রোগ্রাম উন্নতিকারক সহায়তা করতে পারে যাতে পরবর্তী সংস্করণে এই ত্রুটি সম্ভবত এড়িয়ে চলা যায়। অনুগ্রহ করে সফটওয়্যার উন্নতি করতে এবং গৃহিত ত্রুটি প্রতিবেদন পাঠানোর জন্য আমাদেরকে সাহায্য করুন।"
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "ভুল বিবরণীর টুলটি শুরু করছে"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "অধিকাংশ প্রোগ্রাম ক্রাশের কারণে তৈরি ত্রুটি বার্তা টুলটি স্বয়ংক্রিয়ভাবে শুরু হবে।"
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "বিবরণী সম্পন্ন হচ্ছে"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "প্রধান ত্রুটি প্রতিবেদন টুল ডায়ালগে আপনি কিছু অতিরিক্ত তথ্য অন্তর্ভুক্ত করতে পারেন যা উন্নতিকারকদের ত্রুটি চিহ্নিত করতে সাহায্য করতে পারে। উদাহরনস্বরূপ, যদি ত্রুটি আপনার হার্ডওয়ার অথবা সফটওয়্যার পরিবেশে কেবলমাত্র একটি পরিবর্তনের পরে আবির্ভূত হয়, অথবা যদি আপনি একটি বোতামে ক্লিক করেন তাহলে অনুগ্রহ করে সেই তথ্যটি অন্তর্ভুক্ত করুন।"
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "ভুলের বিবরণী পাঠাচ্ছে"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "প্রতিবেদন তথ্য প্রেরন করে ত্রুটি প্রতিবেদন টুল HTTP PUT / SOAP প্রোটোকল ব্যবহার করে। আপনি ঐচ্ছিকভাবে কিছু বর্ণনামূলক টেক্সট অন্তর্ভুক্ত করতে পারেন যা প্রোগ্রাম ক্রেশ প্রসঙ্গ সনাক্ত করতে আমাদেরকে সাহায্য করবে। তারপর <emph> প্রেরন করুন </emph> বোতাম ক্লিক করুন।"
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "আপনি আপনার ত্রুটি প্রতিবেদনে উত্তর পাবেন না। যদি আপনার সমর্থন প্রয়োজন হয় তাহলে অনুগ্রহ করে ইন্টারনেটে <link href=\"text/shared/main0108.xhp\"> আলোচনাচক্র সমর্থন করুন</link> পরিদর্শন করুন।"
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "কি ধরনের তথ্য পাঠানো হয়েছে?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "ত্রুটি প্রতিবেদন কতিপয় ফাইলের সমন্বয়ে গঠিত হয়। প্রধান ফাইলটি ত্রুটির ধরন, পরিচালনা ব্যবস্থার নাম এবং সংস্করণ, ব্যবহৃত স্মৃতি এবং আপনি যে বর্ণনা অন্তর্ভুক্ত করেছিলেন সে সম্বন্ধে তথ্য ধারণ করে। প্রধান ফাইলে কি পাঠাবে তা প্রদর্শন করার জন্য আপনি ত্রুটি প্রতিবেদন টুলের প্রধান ডায়ালগে <emph> প্রতিবেদন প্রদর্শন</emph>বোতামে ক্লিক করতে পারেন।"
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "অতিরিক্ত হিসেবে, প্রাসঙ্গিক স্মৃতি প্রসঙ্গ এবং স্টেক ছাপে কিছু ব্যবস্থা প্রমাণ টুল দ্বারা সমবেত হয় (\" dbhhelp dll \" উইন্ডোজ ব্যবস্থায় \" pstack \" UNIX ব্যবস্থায়)। এই তথ্যটি ও পাঠানো হবে।"
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "প্রত্যেক ফ্যাক্সের জন্য এক আলাদা মুদ্রণ কাজ তৈরি করতে অন্যথায় স্মরণ করুন, প্রথম গ্রাহক সমস্ত faxes গ্রহণ করবে।তে<emph> সরঞ্জাম- মেইল নিমজ্জিত করা</emph> ডায়ালগ নির্বাচন করে<emph> মুদ্রণযন্ত্র</emph> অপশন এবং তারপর নির্বাচন করুন<emph> একক মুদ্রণ কর্ম</emph> পরীক্ষা বাক্স।"
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "পূর্বনির্ধারিত ট্যামপ্লেট পরিবর্তন করছে"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">পূর্বনির্ধারিত ট্যামপ্লেট পরিবর্তন করছে</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "যখন আপনি <emph> ফাইল- নতুন</emph>এর মাধ্যমে একটি নতুন নথি খুলবেন,$[officename] ফর্মার উপর ভিত্তি করে একটি ফাঁকা নথি আবির্ভূত হয়। আপনি সম্পাদনা করতে, পরিবর্তন করতে, অথবা এই ফর্মাটি প্রতিস্থাপন করতে পারবেন যাতে করে নতুন নথি আপনার স্বনির্বাচিত শৈলী অথবা অন্যান্য অভ্যন্তরস্থ বস্তু ধারণ করে।"
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "পূর্বনির্ধারিত ট্যামপ্লেট পরিবর্তন করছে"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "সর্বপ্রথম, হয় বিদ্যমান $[officename] ট্যামপ্লেট খুলুন এবং তা সম্পাদনা করুন অথবা একটি নতুন নথি খুলুন এবং কাঙ্খিত ট্যামপ্লেট তৈরি করার জন্য এটি প্রয়োজন অনুসারে সম্পাদনা করুন।"
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "আপনি প্রত্যেক $[officename] মডিউলের জন্য একটি নথি ট্যামপ্লেট সংজ্ঞায়িত করতে পারেন। নিম্নলিখিত বিষয় টেক্সট নথির জন্য কিভাবে অগ্রসর হতে পবে তা বর্ণনা করে।"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
+"help.text"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
msgstr ""
-#. GuEWL
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "নির্দিষ্ট ট্যামপ্লেট ব্যবহার করছে"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. Quf5G
+#. DuAAp
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id251605475503009\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "আপনার নিজের স্বনির্বাচিত ট্যামপ্লেট ব্যবহার করার মধ্যে আপনার কাজ সহজতর করার কতিপয় উপায় রয়েছে।"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. S8XFP
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "ট্যামপ্লেট পত্রাধারে বিদ্যমান ট্যামপ্লেট"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/bn-IN/helpcontent2/source/text/shared/optionen.po b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
index f2a1ff05523..f1d254a6eb9 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "প্রদর্শন"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "পর্দার ফন্ট এন্টিএলিয়াসিং"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">বিপরীত নামান্তরণ প্রয়োগ করতে ক্ষুদ্রতর ফন্ট আকার সন্নিবেশ করান।</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "গ্রাফিক্স আউটপুট"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">বর্তমান নথির প্রদর্শন পূনরুদ্ধার বা সতেজ করতে Shift+Ctrl+R চাপুন।</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">বর্তমান নথির প্রদর্শন পূনরুদ্ধার বা সতেজ করতে Shift+Ctrl+R চাপুন।</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\".\">সমর্থিত হলে, আপনি গ্রাফিকের এন্টি এলিয়েসিং সক্রিয় অথবা নিষ্ক্রিয় করতে পারেন। এন্টি এলিয়েসিং সক্রিয় করা হলে, অধিকাংশ গ্রাফিক বস্তু মসৃণ এবং অপেক্ষাকৃত কম কৃত্রিম মনে হয়।</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "তালিকা"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "পর্দার ফন্ট এন্টিএলিয়াসিং"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">বিপরীত নামান্তরণ প্রয়োগ করতে ক্ষুদ্রতর ফন্ট আকার সন্নিবেশ করান।</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/guide.po b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
index 5f2f572f679..b3b721d768f 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: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "যদি না আপনি অন্যথায় উল্লেখ করেন, প্রতি নতুন $[officename] নথি পূর্ব নির্ধারিত ফর্মার উপর ভিত্তি করে।"
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] এর <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">নির্দিষ্ট সংখ্যক পূর্ব নির্ধারিত ফর্মা আছে </link> যা আপনি বিভিন্ন ধরন অথবা পাঠ্য নথি তৈরি করতে ব্যবহার করতে পারেন, যেমন ব্যবসা সংক্রান্ত পত্র।"
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "<item type=\"menuitem\">টুল</item> বারে, <item type=\"menuitem\">সরাসরি কার্সার</item> আইকনে ক্লিক করুন <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">আইকন</alt></image>।"
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "পাঠ্য নথির ফাঁকা স্থানে ক্লিক করুন। মাউস পয়েন্টার প্রান্তিককরণের প্রভাব পরিবর্তন করবে যা আপনার লেখা পাঠ্যে প্রয়োগ করা হবে:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">আইকন</alt></image> বাম প্রান্তিককরণ"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">আইকন</alt></image> কেন্দ্রীয়করণ"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">আইকন</alt></image> ডান প্রান্তিককরণ"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index 18c6da439a6..eed97e57e18 100644
--- a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -8124,15 +8124,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "স্লাইড আড়াল (~H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "পাঠ্য... (~x)"
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25815,27 +25815,25 @@ msgctxt ""
msgid "~File"
msgstr "ফাইল (~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "প্রান্তিককরণ"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "প্রান্তিককরণ"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31506,15 +31504,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "অনুচ্ছেদের শেষ পর্যন্ত নির্বাচন"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "ডানের শব্দ পর্যন্ত নির্বাচন"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/bn-IN/sc/messages.po b/source/bn-IN/sc/messages.po
index 4eeb7bc2c2a..e076b818965 100644
--- a/source/bn-IN/sc/messages.po
+++ b/source/bn-IN/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25098,213 +25098,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30219,342 +30219,348 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "সমাধানকারী"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "অপশন... (_p)"
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "সমাধান করুন (_S)"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "টার্গেট কক্ষ (_T)"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "ফলাফল উপযুক্ত করুন"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "কক্ষ পরিবর্তন করে (_B)"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "সর্বনিম্ন (_u)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "সর্বোচ্চ (_M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "এর মান (_V)"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "ঘরের রেফারেন্স (_C)"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "অপারেটর (_O)"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "মান (_a)"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "ঘরের রেফারেন্স (_C)"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "ঘরের রেফারেন্স (_C)"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "ঘরের রেফারেন্স (_C)"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "ঘরের রেফারেন্স (_C)"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "পূর্ণসংখ্যা"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "বাইনারী"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "অপারেটর"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "পূর্ণসংখ্যা"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "বাইনারী"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "অপারেটর"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "পূর্ণসংখ্যা"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "বাইনারী"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "অপারেটর"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "পূর্ণসংখ্যা"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "বাইনারী"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "অপারেটর"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "মান"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "মান"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "মান"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "মান"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "সরিয়ে ফেলা"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "সরিয়ে ফেলা"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "সরিয়ে ফেলা"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "সরিয়ে ফেলা"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "সীমাবদ্ধকরণ শর্তসমূহ"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/bn-IN/sd/messages.po b/source/bn-IN/sd/messages.po
index e2d4313b3ed..bf81860f011 100644
--- a/source/bn-IN/sd/messages.po
+++ b/source/bn-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3864,116 +3864,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4377,12 +4377,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6680,219 +6674,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7857,12 +7851,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "লেখার কনট্যুর"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/bn-IN/starmath/messages.po b/source/bn-IN/starmath/messages.po
index 4ebd97a377c..40e74562687 100644
--- a/source/bn-IN/starmath/messages.po
+++ b/source/bn-IN/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-11 06:35+0000\n"
"Last-Translator: biraj <brnet00@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/bn-IN/svx/messages.po b/source/bn-IN/svx/messages.po
index 6d81b32d35d..6a890d2e13d 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bengali (India) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bn_IN/>\n"
@@ -7286,10 +7286,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "স্লাইড বর্তমান উইন্ডোতে ধরান।"
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14109,13 +14109,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "ন্যাভিগেশন বার"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14139,10 +14139,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index e2f1778ab9b..6d49bacb8d6 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20915,181 +20915,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22145,12 +22145,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "লেখার কনট্যুর"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index b7947378b32..4c47daef3f4 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\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"
@@ -21591,60 +21591,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/bn/helpcontent2/source/text/sbasic/shared.po b/source/bn/helpcontent2/source/text/sbasic/shared.po
index 00a5a8b176b..b146ee6fec3 100644
--- a/source/bn/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bn/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "একটি ডাটা মাধ্যমে নতুন একটি ডিরেক্টরী তৈরি করা হয়।"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
+msgid "Creates a new directory on a data medium."
+msgstr "একটি ডাটা মাধ্যমে নতুন একটি ডিরেক্টরী তৈরি করা হয়।"
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>লেখ:</emph> যেকোনো স্ট্রিং এক্সপ্রেশন যাতে তৈরি করা হবে এমন ডিরেক্টরির নাম এবং পাথ উল্লেখ থাকে। আপনি <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL নোটেশন</link>ও ব্যবহার করতে পারেন।"
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "যদি একটি পাথ নির্ধারিত না থাকে তাহলে বর্তমান ডিরেক্টরিতে এই ডিরেক্টরিটি তৈরি হবে।"
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "ডাটা মাধ্যম হতে একটি বিদ্যমান ডিরেক্টরী মুছে ফেলা হয়।"
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "যদি পাথ নির্ধারণ করা না হয়, তাহলে আপনি বর্তমান পাথের যে ডিরেক্টরিটি মুছে ফেলতে চান তার জন্য <emph>RmDir স্টেটমেন্ট</emph> অনুসন্ধান চালায়। এটি যদি সেখানে পাওয়া না যায় তাহলে একটি ত্রুটি বার্তা আবির্ভূত হয়।"
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "মূল প্রোগ্রাম চালনা থামিয়ে দেয়া হয়।"
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "একটি বস্তুকে ডিফল্ট বস্তু হিসেবে নির্ধারণ করা হয়। অন্য বস্তু নাম ডিক্লেয়ার করা ব্যতীত, End With স্টেটমেন্টে না পৌঁছানো পর্যন্ত সকল বৈশিষ্ট্যাবলী এবং পদ্ধতি দ্বারা পূর্বনির্ধারিত বস্তু নির্দেশিত হয়ে থাকে।"
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "যদি একক বস্তুর জন্য বিভিন্ন বৈশিষ্ট্যাবলী অথবা প্রক্রিয়া থাকে তাহলে <emph>With</emph> এবং <emph>End With</emph> ব্যবহার করুন।"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "কম্পিউটার স্পীকারের মাধ্যমে একটি সুর বাজানো হয়। সুরটি সিস্টেম-নির্ভরশীল এবং এর শব্দ অথবা পিচ পরিবর্তন করা যায় না।"
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/bn/helpcontent2/source/text/scalc/00.po b/source/bn/helpcontent2/source/text/scalc/00.po
index ae7ab0473c2..bda9186e53c 100644
--- a/source/bn/helpcontent2/source/text/scalc/00.po
+++ b/source/bn/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/bn/helpcontent2/source/text/scalc/guide.po b/source/bn/helpcontent2/source/text/scalc/guide.po
index 5c17b6297d8..c1a1e58cac9 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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "অনুভূমিক এবং উলম্ভভাবে জমাতে,<emph>ঘর</emph>নির্বাচন করুন যা সারির নিচে এবং কলামের ডানে যা আপনি জমাতে চান।"
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "যদি আপনি একটি নথির সব পৃষ্ঠায় একটি নির্দিষ্ট সারি মুদ্রণ করতে চান, <emph>বিন্যাস - মুদ্রণ পরিসর - সম্পাদনা করুন</emph> পছন্দ করুন।"
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/bn/helpcontent2/source/text/sdraw/01.po b/source/bn/helpcontent2/source/text/sdraw/01.po
index 52669361c38..7a692864ada 100644
--- a/source/bn/helpcontent2/source/text/sdraw/01.po
+++ b/source/bn/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 16:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index 503e3600fe9..f65c7997a77 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/bn/helpcontent2/source/text/shared/guide.po b/source/bn/helpcontent2/source/text/shared/guide.po
index 7f30351a347..33e52d63078 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\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"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\"><item type=\"productname\">%PRODUCTNAME</item></link> কাজ করছে"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "ভুল বিবরণীর টুল"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">ভুল বিবরণীর টুল</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "একটি প্রোগ্রাম ক্রাশ হলে ত্রুটি বার্তা টুলটি স্বয়ংক্রিয়ভাবে শুরু হয়।"
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "ত্রুটি প্রতিবেদন টুল সমস্ত প্রয়োজনীয় তথ্য সমবেত করে যা কোডের উন্নতির জন্য করতে প্রোগ্রাম উন্নতিকারক সহায়তা করতে পারে যাতে পরবর্তী সংস্করণে এই ত্রুটি সম্ভবত এড়িয়ে চলা যায়। অনুগ্রহ করে সফটওয়্যার উন্নতি করতে এবং গৃহিত ত্রুটি প্রতিবেদন পাঠানোর জন্য আমাদেরকে সাহায্য করুন।"
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "ভুল বিবরণীর টুলটি শুরু করছে"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "অধিকাংশ প্রোগ্রাম ক্রাশের কারণে তৈরি ত্রুটি বার্তা টুলটি স্বয়ংক্রিয়ভাবে শুরু হবে।"
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "বিবরণী সম্পন্ন হচ্ছে"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "প্রধান ত্রুটি প্রতিবেদন টুল ডায়ালগে আপনি কিছু অতিরিক্ত তথ্য অন্তর্ভুক্ত করতে পারেন যা উন্নতিকারকদের ত্রুটি চিহ্নিত করতে সাহায্য করতে পারে। উদাহরনস্বরূপ, যদি ত্রুটি আপনার হার্ডওয়ার অথবা সফটওয়্যার পরিবেশে কেবলমাত্র একটি পরিবর্তনের পরে আবির্ভূত হয়, অথবা যদি আপনি একটি বোতামে ক্লিক করেন তাহলে অনুগ্রহ করে সেই তথ্যটি অন্তর্ভুক্ত করুন।"
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "ভুলের বিবরণী পাঠাচ্ছে"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "প্রতিবেদন তথ্য প্রেরন করে ত্রুটি প্রতিবেদন টুল HTTP PUT / SOAP প্রোটোকল ব্যবহার করে। আপনি ঐচ্ছিকভাবে কিছু বর্ণনামূলক টেক্সট অন্তর্ভুক্ত করতে পারেন যা প্রোগ্রাম ক্রেশ প্রসঙ্গ সনাক্ত করতে আমাদেরকে সাহায্য করবে। তারপর <emph> প্রেরন করুন </emph> বোতাম ক্লিক করুন।"
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "আপনি আপনার ত্রুটি প্রতিবেদনে উত্তর পাবেন না। যদি আপনার সমর্থন প্রয়োজন হয় তাহলে অনুগ্রহ করে ইন্টারনেটে <link href=\"text/shared/main0108.xhp\"> আলোচনাচক্র সমর্থন করুন</link> পরিদর্শন করুন।"
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "কি ধরনের তথ্য পাঠানো হয়েছে?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "ত্রুটি প্রতিবেদন কতিপয় ফাইলের সমন্বয়ে গঠিত হয়। প্রধান ফাইলটি ত্রুটির ধরন, পরিচালনা ব্যবস্থার নাম এবং সংস্করণ, ব্যবহৃত স্মৃতি এবং আপনি যে বর্ণনা অন্তর্ভুক্ত করেছিলেন সে সম্বন্ধে তথ্য ধারণ করে। প্রধান ফাইলে কি পাঠাবে তা প্রদর্শন করার জন্য আপনি ত্রুটি প্রতিবেদন টুলের প্রধান ডায়ালগে <emph> প্রতিবেদন প্রদর্শন</emph>বোতামে ক্লিক করতে পারেন।"
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "অতিরিক্ত হিসেবে, প্রাসঙ্গিক স্মৃতি প্রসঙ্গ এবং স্টেক ছাপে কিছু ব্যবস্থা প্রমাণ টুল দ্বারা সমবেত হয় (\" dbhhelp dll \" উইন্ডোজ ব্যবস্থায় \" pstack \" UNIX ব্যবস্থায়)। এই তথ্যটি ও পাঠানো হবে।"
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "প্রত্যেক ফ্যাক্সের জন্য এক আলাদা মুদ্রণ কাজ তৈরি করতে অন্যথায় স্মরণ করুন, প্রথম গ্রাহক সমস্ত faxes গ্রহণ করবে।তে<emph> সরঞ্জাম- মেইল নিমজ্জিত করা</emph> ডায়ালগ নির্বাচন করে<emph> মুদ্রণযন্ত্র</emph> অপশন এবং তারপর নির্বাচন করুন<emph> একক মুদ্রণ কর্ম</emph> পরীক্ষা বাক্স।"
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "পূর্বনির্ধারিত ট্যামপ্লেট পরিবর্তন করছে"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">পূর্বনির্ধারিত ট্যামপ্লেট পরিবর্তন করছে</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "যখন আপনি <emph> ফাইল- নতুন</emph>এর মাধ্যমে একটি নতুন নথি খুলবেন,$[officename] ফর্মার উপর ভিত্তি করে একটি ফাঁকা নথি আবির্ভূত হয়। আপনি সম্পাদনা করতে, পরিবর্তন করতে, অথবা এই ফর্মাটি প্রতিস্থাপন করতে পারবেন যাতে করে নতুন নথি আপনার স্বনির্বাচিত শৈলী অথবা অন্যান্য অভ্যন্তরস্থ বস্তু ধারণ করে।"
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "পূর্বনির্ধারিত ট্যামপ্লেট পরিবর্তন করছে"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "সর্বপ্রথম, হয় বিদ্যমান $[officename] ট্যামপ্লেট খুলুন এবং তা সম্পাদনা করুন অথবা একটি নতুন নথি খুলুন এবং কাঙ্খিত ট্যামপ্লেট তৈরি করার জন্য এটি প্রয়োজন অনুসারে সম্পাদনা করুন।"
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "আপনি প্রত্যেক $[officename] মডিউলের জন্য একটি নথি ট্যামপ্লেট সংজ্ঞায়িত করতে পারেন। নিম্নলিখিত বিষয় টেক্সট নথির জন্য কিভাবে অগ্রসর হতে পবে তা বর্ণনা করে।"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
+"help.text"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
msgstr ""
-#. GuEWL
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "নির্দিষ্ট ট্যামপ্লেট ব্যবহার করছে"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. Quf5G
+#. DuAAp
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id251605475503009\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "আপনার নিজের স্বনির্বাচিত ট্যামপ্লেট ব্যবহার করার মধ্যে আপনার কাজ সহজতর করার কতিপয় উপায় রয়েছে।"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. S8XFP
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "ট্যামপ্লেট পত্রাধারে বিদ্যমান ট্যামপ্লেট"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/bn/helpcontent2/source/text/shared/optionen.po b/source/bn/helpcontent2/source/text/shared/optionen.po
index 1b9b1683911..7c8ca53fc85 100644
--- a/source/bn/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\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"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "প্রদর্শন"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "পর্দার ফন্ট এন্টিএলিয়াসিং"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">বিপরীত নামান্তরণ প্রয়োগ করতে ক্ষুদ্রতর ফন্ট আকার সন্নিবেশ করান।</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "গ্রাফিক্স আউটপুট"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">বর্তমান নথির প্রদর্শন পূনরুদ্ধার বা সতেজ করতে Shift+Ctrl+R চাপুন।</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">বর্তমান নথির প্রদর্শন পূনরুদ্ধার বা সতেজ করতে Shift+Ctrl+R চাপুন।</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\".\">সমর্থিত হলে, আপনি গ্রাফিকের এন্টি এলিয়েসিং সক্রিয় অথবা নিষ্ক্রিয় করতে পারেন। এন্টি এলিয়েসিং সক্রিয় করা হলে, অধিকাংশ গ্রাফিক বস্তু মসৃণ এবং অপেক্ষাকৃত কম কৃত্রিম মনে হয়।</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "তালিকা"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "পর্দার ফন্ট এন্টিএলিয়াসিং"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">বিপরীত নামান্তরণ প্রয়োগ করতে ক্ষুদ্রতর ফন্ট আকার সন্নিবেশ করান।</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/swriter/guide.po b/source/bn/helpcontent2/source/text/swriter/guide.po
index 27366cd0296..c1bdbf6978f 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: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "যদি না আপনি অন্যথায় উল্লেখ করেন, প্রতি নতুন $[officename] নথি পূর্ব নির্ধারিত ফর্মার উপর ভিত্তি করে।"
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] এর <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">নির্দিষ্ট সংখ্যক পূর্ব নির্ধারিত ফর্মা আছে </link> যা আপনি বিভিন্ন ধরন অথবা পাঠ্য নথি তৈরি করতে ব্যবহার করতে পারেন, যেমন ব্যবসা সংক্রান্ত পত্র।"
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "<item type=\"menuitem\">টুল</item> বারে, <item type=\"menuitem\">সরাসরি কার্সার</item> আইকনে ক্লিক করুন <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">আইকন</alt></image>।"
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "পাঠ্য নথির ফাঁকা স্থানে ক্লিক করুন। মাউস পয়েন্টার প্রান্তিককরণের প্রভাব পরিবর্তন করবে যা আপনার লেখা পাঠ্যে প্রয়োগ করা হবে:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">আইকন</alt></image> বাম প্রান্তিককরণ"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">আইকন</alt></image> কেন্দ্রীয়করণ"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">আইকন</alt></image> ডান প্রান্তিককরণ"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
index 1b84dd6d526..17d1fcd5107 100644
--- a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8141,15 +8141,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "স্লাইড আড়াল (~H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "পাঠ্য... (~x)"
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25827,27 +25827,25 @@ msgctxt ""
msgid "~File"
msgstr "ফাইল (~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "প্রান্তিককরণ"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "প্রান্তিককরণ"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31545,15 +31543,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "অনুচ্ছেদের শেষ পর্যন্ত নির্বাচন"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "ডানের শব্দ পর্যন্ত নির্বাচন"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/bn/sc/messages.po b/source/bn/sc/messages.po
index 2e23b185e12..9fd590afd4f 100644
--- a/source/bn/sc/messages.po
+++ b/source/bn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25247,213 +25247,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30478,351 +30478,357 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "অপশন..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "সর্বনিম্ন (~M)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "সর্বোচ্চ (~M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
#, fuzzy
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "অপারেটর"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "মান"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Integer "
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "বাইনারী"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "অপারেটর"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Integer "
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "বাইনারী"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "অপারেটর"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Integer "
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "বাইনারী"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "অপারেটর"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Integer "
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "বাইনারী"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "অপারেটর"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "মান"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "মান"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "মান"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "মান"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "অপসারণ করুন"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "অপসারণ করুন"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "অপসারণ করুন"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "অপসারণ করুন"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/bn/sd/messages.po b/source/bn/sd/messages.po
index c069cf406df..4b94ae0a6d2 100644
--- a/source/bn/sd/messages.po
+++ b/source/bn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3895,116 +3895,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4408,12 +4408,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6749,219 +6743,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7927,12 +7921,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "লেখার কনট্যুর"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/bn/starmath/messages.po b/source/bn/starmath/messages.po
index b664ecfc585..e9d41667b40 100644
--- a/source/bn/starmath/messages.po
+++ b/source/bn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2211,9 +2211,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/bn/svx/messages.po b/source/bn/svx/messages.po
index c83590b95ac..546a19257d7 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\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"
@@ -7295,10 +7295,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14187,13 +14187,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "ন্যাভিগেশন বার"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14217,10 +14217,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index d5ee19887f7..93862e6f572 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -21078,181 +21078,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22313,12 +22313,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "লেখার কনট্যুর"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index eb4fb1f2c10..240bc1afbb5 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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\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"
@@ -21536,60 +21536,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/bo/helpcontent2/source/text/sbasic/shared.po b/source/bo/helpcontent2/source/text/sbasic/shared.po
index b93967b438c..67682142cd2 100644
--- a/source/bo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-08-09 08:32+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "གཞི་གྲངས་ཀྱི་སྨྱན་སྦྱོར་གཟུགས་ནང་དཀར་ཆག་གསར་བཟོ།"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
+msgid "Creates a new directory on a data medium."
+msgstr "གཞི་གྲངས་ཀྱི་སྨྱན་སྦྱོར་གཟུགས་ནང་དཀར་ཆག་གསར་བཟོ།"
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text </emph>གསར་བཟོ་ལ་གཏན་འཁེལ་བའི་དཀར་ཆག་གི་མིང་དང་བརྒྱུད་ལམ་གྱི་ཡིག་རྟགས་ཕྲེང་བའི་མཚོན་ཚུལ་ལ་སྤྱོད། <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL མཚོན་ཐབས་\">URL མཚོན་ཐབས་</link>ཡང་སྤྱད་ཆོག་"
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "གལ་ཏེ་བརྒྱུད་ལམ་གཏན་འཁེལ་བྱེད་མི་ཐུབ་ན་མིག་མདུན་དཀར་ཆག་འོག་གཏན་འཁེལ་གྱི་དཀར་ཆག་གསར་བཟོ་བྱེད།"
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "གཞི་གྲངས་སྨྱན་སྦྱོར་ནང་གི་ད་ཡོད་དཀར་ཆག་སུབ་པ།"
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "གལ་ཏེ་བརྒྱུད་ལམ་གཏན་འཁེལ་བྱེད་མི་ཐུབ་ན་<emph>RmDir རྗོད་པ་</emph>མིག་མདུན་གྱི་བརྒྱུད་ལམ་ནང་སུབ་རྒྱུའི་དཀར་ཆག་བཤེར་འཚོལ་བྱེད། དཀར་ཆག་འདི་གལ་སྲིད་མ་ཪྙེད་ན་ནོར་འཁྲུལ་གྱི་སྙན་ཞུ་ཞིག་མངོན་ནོ།"
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Basic བྱ་རིམ་ལག་བསྟར་མཚམས་འཇོག"
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "བྱ་ཡུལ་གང་ཞིག་ཁས་ལེན་བྱ་ཡུལ་ལ་གཏན་འཁེལ་བྱེད། བྱ་ཡུལ་གཞན་དག་གི་མིང་གསལ་བསྒྲགས་བྱས་ན་མ་གཏོགས་ End With རྗོད་པའི་སྔོན་དུ་ལག་བསྟར་བྱ་བའི་གཏོགས་གཤིས་དང་ཐབས་ཤེས་ཡོད་ཚད་ཁས་ལེན་བྱ་རིམ་ལ་ལྟོས་པ་ཡིན།"
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "བྱ་ཡུལ་ཞིག་ལ་གཏོགས་གཤིས་སམ་ཐབས་ཤེས་སྣ་མང་ལྡན་པའི་ཚེ་ <emph>With</emph> དང་ <emph>End With</emph>བེད་སྤྱོད་བྱས་ཆོག"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "རྩིས་འཁོར་གྱི་སྒྲ་སྐྱེད་ཆས་ནས་སྒྲ་བཏང་། མ་ལག་མི་འདྲ་བར་སྒྲ་དེ་ཡང་ཕལ་ཆེར་མི་འདྲ་ལ་སྒྲ་ཚད་གདངས་ལའང་བཅས་ཐབས་བྲལ།"
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/bo/helpcontent2/source/text/scalc/00.po b/source/bo/helpcontent2/source/text/scalc/00.po
index da02410d189..a5cbed69b0c 100644
--- a/source/bo/helpcontent2/source/text/scalc/00.po
+++ b/source/bo/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\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"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/bo/helpcontent2/source/text/scalc/guide.po b/source/bo/helpcontent2/source/text/scalc/guide.po
index 0f5a19e2476..cbebb5f047a 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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "དུས་གཅིག་ཏུ་རྒྱས་བཅད་ས་ཁོངས་སྙོམས་འཁོད་དང་དྲང་འཕྱང་བྱ་དགོས་ན་<emph>དྲ་མིག་གཅིག་</emph>འདེམས་དགོས་ དྲ་མིག་དེའི་གཡོན་མཐེབ་ཀྱི་ས་ཁོངས་རྒྱས་བཅད་བྱས་སོ།"
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "གལ་སྲིད་ཁྱེད་ནས་ཡིག་ཕྲེང་གང་ཞིག་ཡིག་ཚགས་ཀྱི་གཏག་པར་ཤོག་ངོས་ཡོད་ཚད་ཐོག་ཐོན་རྒྱུའི་ཐུགས་རེ་མཛད་ན་<emph>[ཡིག་ཆ།] - [གཏག་པར་ས་ཁོངས།] - [རྩོམ་སྒྲིག...]འདེམས་པར་མཛོད།</emph>"
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/bo/helpcontent2/source/text/sdraw/01.po b/source/bo/helpcontent2/source/text/sdraw/01.po
index 96abf04de36..23d7a93936a 100644
--- a/source/bo/helpcontent2/source/text/sdraw/01.po
+++ b/source/bo/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 17:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index 28ea18355f1..e9a8b212a14 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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/bo/helpcontent2/source/text/shared/guide.po b/source/bo/helpcontent2/source/text/shared/guide.po
index cbcb3a897d1..31653250825 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"སྤྱོད་པ་%PRODUCTNAME\">སྤྱོད་པ་ <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "ཪྙན་ཐོའི་ཡོ་བྱད་ནོར་བ།"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>ཪྙན་ཐོའི་ཡོ་བྱད་ནོར་བ་</bookmark_value><bookmark_value>ཪྙན་ཐོའི་ནོར་བ་</bookmark_value><bookmark_value>སྙན་ཞུ་ཐོར་བ་</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"ཪྙན་ཐོའི་ཡོ་བྱད་ནོར་བ་\">ཪྙན་ཐོའི་ཡོ་བྱད་ནོར་བ་</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "ནོར་བའི་ཪྙན་ཐོའི་ཡོ་བྱད་དགོས་ངེས་ཀྱི་ཆ་རྐྱེན་འཕྲིན་ཡོད་ཚད་བསྡུ་ལེན་བྱེད་ བྱ་རིམ་གསར་སྤེལ་མཁན་གྱིས་བྱ་རིམ་ཚབ་ཨང་སྒྱུར་བཅོས་བྱེད་ གལ་ཡོད་ཀྱི་རྗེས་ཀྱི་པར་གཞིའི་ནང་འདྲ་བའི་ནོར་འཁྲུལ་ཐོན་པ་གཡོལ་ཐབས་བྱེད། ཁྱེད་ཀྱིས་སྐྱེ་གྲུབ་ནོར་འཁྲུལ་སྙན་ཞུ་ང་ཚོར་བསྐུར་རྒྱུ་དགའ་བསུ་ཞུ་ དེ་བས་ལེགས་པའི་མཉེན་ཆས་སྒྱུར་བཅོས་བྱ་རྒྱུ་ང་ཚོས་རོགས་རམ་བྱེད།"
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "ཪྙན་ཐོའི་ཡོ་བྱད་ནོར་བ་སྒུལ་སློང་བྱེད།"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "སྙན་ཞུ་ལེགས་གྲུབ་བྱུར།"
-
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "\"ཪྙན་ཐོའི་ཡོ་བྱད་ནོར་བ་\"གླེང་སྒྲོམ་གཙོ་བོའི་ནང་ཟུར་སྣོན་ཆ་འཕྲིན་ཁ་ཤས་ནང་བཅུག་བྱས་ཏེ་ གསར་སྤེན་མཁན་ནོར་འཁྲུལ་ཪྙེད་ཐུབ་རོགས་རམ་བྱེད། དཔེར་ན་ གལ་ཏེ་མཉེན་ཆ་མཁྲེགསཆས་ ཁོར་ཡུལ་འགྱུར་བ་བྱུང་ན་ཡང་ན་ གནོན་མཐེབ་ཞིག་རྐྱང་རྡེབ་རྗེས་གཞི་ནས་ནོར་འཁྲུལ་ཐོན་གསལ་བཤད་འདི་དག་གི་ཆ་འཕྲིན་ནང་བཅུག་བྱེད།"
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "སྙན་ཞུ་ནོར་བ་བསྐུར།"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "ཪྙན་ཐོའི་ཡོ་བྱད་ནོར་བ་ཪྙན་ཞུའི་གཞི་གྲངས་སྐུར་སྐབས་ HTTP PUT / SOAP འགྲོའ་མཐུད་བོད་སྤྱོད། ཁྱེད་ཀྱི་འདེམས་པའི་སྐོ་ནས་སྤྱོད་པའི་རང་བཞིན་གི་ཡི་གེ་ཁ་ཤས་ནང་འཇུག་ དེ་ནས་བྱ་རིམ་ཐོར་བའི་ཁོར་ཡུག་ཤན་འབྱེད་བྱེད། དེ་ནས་<emph>\"བསྐུར་\"</emph>གནོན་མཐེབ་ལ་རྐང་རྡེབ་བྱེད།"
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "ནོར་བའི་ཪྙན་ཐོའི་ ང་ཚོས་སླར་གསིརགསིར་ལག་མི་བྱེད། གལ་ཏེ་དགོས་ཁོ་ཡོད་ན་ལག་རྩལ་གྱི་རྒྱབ་སྐྱོར་དགོས་ན་ Internet ཐོག་<link href=\"text/shared/main0108.xhp\">ལག་རྩལ་རྫརྒྱབ་སྐྱོར་དཔྱད་སྟེགས་འཚམས་འདྲེ་བྱེད།</link>"
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "གཞི་གྲངས་གང་ཞིག་བསྐུར་རམ།"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "སྙན་ཞུ་ནོར་བ་ནི་ཡིག་ཆ་མང་དག་ལས་གྲུབ་པ་ཡིན། གཙོར་ཡིག་ནང་ནོར་གྱི་རིགས་བཀོལ་སྤྱོད་མ་ལག་དང་པར་གཞི་ནང་ཉར་བེད་སྤྱོད་གནས་ཚུལ་དེ་བཞིན་ནང་འཇུག་གི་གསལ་བཤད་སོགས་ ཆ་འཕྲིན་འདུས་ཡོད་\"ཪྙན་ཐོའི་ཡོ་བྱད་ནོར་བ་\"གླེང་སྒྲོམ་གཙོ་བོའི་ནང་གྱི་<emph>\"མངོན་པའི་ཪྙན་ཞུ་\"</emph>གནོན་མཐེབ་རྐྱང་རྡེབ་བྱེད་ ཏེ་གཙོར་ཡིག་ནང་བསྐུར་བའི་ནང་དོན་ལྟ་ཞིབ་བྱེད།"
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "གཞན་ཡང་མ་ལག་འགའ་ཤས་ཀྱི་ ཚད་ཞི་ཡོ་བྱད་(Windows མ་ལག་ནང་གི་\"dbhhelp.dll\"、UNIX མ་ལག་ནང་གི་\"pstack\")ཀྱི་འབྲེལ་ཡོད་ཀྱི་ཉར་སྟར་ནང་དོན་དང་སྤུང་པའི་རྗེས་འདེད་ཆ་འཕྲིན་བསྡུ་རུ་བྱེད།"
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "བཪྙན་སྐྱེལ་ཆས་ཚང་མ་ཁེར་རྐྱང་གི་གཏག་པར་ལས་བྱ་གསར་བཟོ་ཡིད་ལ་འཇོག་ དེ་ལྟར་མིན་ན་དང་ལེན་མཁན་དང་པོ་ནི་བཪྙན་སྐྱེལ་ཡོད་ཚད་མཐོང་ཐུབ། <emph>ཡོ་བྱད་ - སྦྲག་ཡིག་</emph>གླེང་སྒྲོམ་ནང་ཟླ་སྒྲིལ་བྱེད་ <emph>གཏག་པར་ཆས་</emph>འདེམས་གཞི་འདེམས་ དེ་རྗེས་<emph>གཏག་པར་ཆས་རྐྱང་པའི་ལས་འགན་</emph>བསྐྱར་འདེམས་སྒྲོམ་འདེམས།"
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "ཁས་ལེན་མ་པང་བཟོ་བཅོས་བྱེད།"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>ཁས་ལེན་མ་པང་; བཟོ་བཅོས་</bookmark_value><bookmark_value>བཟོ་བཅོས་;ཁས་ལེན་མ་པང་</bookmark_value><bookmark_value>ཁས་ལེན་ཡིག་ཚགས་</bookmark_value><bookmark_value>རང་མཚན་འཇོག་མ་པང་</bookmark_value><bookmark_value>བཟོ་བཅོས་; མ་པང་</bookmark_value><bookmark_value>རྩོམ་སྒྲིག་;མ་པང་</bookmark_value><bookmark_value>མ་པང་;རྩོམ་སྒྲིག་བྱེད་པ་མ་ཟད་ཉར་ཚགས་བྱེད་</bookmark_value><bookmark_value>ཉར་ཚགས་;མ་པང་</bookmark_value><bookmark_value>བསྐྱར་སྒྲིག་;མ་པང་</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"ཁས་ལེན་མ་པང་བཟོ་བཅོས་\">ཁས་ལེན་མ་པང་བཟོ་བཅོས་</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "གལ་སྲིད་ཁྱེད་ཀྱིས་ཚལ་ཐོའི་བཀའ་ཚིག་<emph>ཡིག་ཆ་</emph> - <emph>གསར་བཟོ་</emph>རྐྱང་རྡེབ་བྱེད་ན་ ཡིག་ཚགས་སྟོང་པ་ཞིག་མཐོང་ཐུབ་ འདི་ནི་ $[officename] ཚད་གཞིའི་བཟོ་ལྟ་རེད། ཁྱེད་ཀྱིས་ཡིག་ཚགས་འདི་རྩོམ་སྒྲིག་གམ་ཡང་ན་ད་ཉར་བྱེད་པའི་ཡིག་ཚགས་ཤིག་བཟོ་བཅོས་བྱེད་ དེ་རྗེས་མི་སྒེར་ཅན་གྱི་ཡིག་ཚགས་འདི་ཚད་གཞིའི་བཟོ་ལྟ་ལ་བཀོད་སྒྲིག་བྱེད། འདི་འདྲ་ཐེངས་རེར་ཡིག་ཚགས་ཤིག་གསར་བཟོས་སྐབས་བྱ་རིམ་་ཧ་རང་འགུལ་གྱིས་ཚད་གཞིའི་བཟོ་ལྟ་གསར་པའི་ཡིག་ཚགས་འདི་བེད་སྤྱོད།"
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "ཁས་ལེན་མ་པང་བཟོ་ལྟ།"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "སྔོན་ལ་ ད་ཡོད་ཀྱི་ $[officename] མ་པང་ཁ་ཕྱེ་བ་མ་ཟད་ དེ་བཟོ་བཅོས་བྱེད་ ཡང་ན་ཡིག་ཚགས་གསར་པ་ཁ་ཕྱེ་བ་མ་ཟད་དགོས་མཁོ་ལྟར་རྩོམ་སྒྲིག་བྱས་ཏེ་དགོས་ངེས་ཀྱི་མ་པང་གསར་བཟོ་བྱེད།"
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
+
+#. bnC8i
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3145748\n"
+"help.text"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. 2pSHL
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3146901\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "ཁྱེད་ཀྱིས་ཡིག་ཚགས་མ་པང་གསར་པ་ཞིག་མཚན་འཇོག་བྱེད་ $[officename] ཡི་སྨོ་ལིང་རེ་རེར་སྤྱོད། གཤམ་ལ་ང་ཚོས་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་ཀྱི་མ་པང་སྤྱོད་པ་གསལ་བཤད་བྱེད།"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
-#. dAATP
+#. MEA5R
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
msgstr ""
-#. GuEWL
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "རང་མཚན་འོག་མ་པང་བེད་སྤྱོད།"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. Quf5G
+#. DuAAp
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id251605475503009\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "རང་མཚན་འཇོག་མ་པང་བེད་སྤྱོད་པ་བརྒྱུད་བྱ་ཐབས་མང་དག་གིས་ལས་དེབ་སྟབས་བདེ་རུ་འགྱུར།"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. S8XFP
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "ཡིག་ཚགས་བཟོ་ལྟ་ཡིག་ཆའི་ཁུག་ནང་གི་བཟོ་ལྟ།"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/bo/helpcontent2/source/text/shared/optionen.po b/source/bo/helpcontent2/source/text/shared/optionen.po
index cfeab897bae..6fb762e4648 100644
--- a/source/bo/helpcontent2/source/text/shared/optionen.po
+++ b/source/bo/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "མཐོང་རིས།"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "སྙོམས་འདྲེད་གསལ་ཡོལ་ཡིག་གཟུགས།"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">ཡིག་གཟུགས་ཆུང་ཤོས་ནང་འཇུག་བྱས་ནས་སྙོམས་འདྲེད་ལག་རྩལ་སྤྱོད་པར་བྱེད།</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "ཙིག་རྟགས།"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Shift+Ctrl+R མཐེབ་གནོན་ན་མིག་སྔའི་ཡིག་ཚགས་མཐོང་རིས་སླར་གསོའམ་གསར་སྐྱེས་ཐུབ།</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Shift+Ctrl+R མཐེབ་གནོན་ན་མིག་སྔའི་ཡིག་ཚགས་མཐོང་རིས་སླར་གསོའམ་གསར་སྐྱེས་ཐུབ།</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "ཚལ་ཐོ།"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "སྙོམས་འདྲེད་གསལ་ཡོལ་ཡིག་གཟུགས།"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">ཡིག་གཟུགས་ཆུང་ཤོས་ནང་འཇུག་བྱས་ནས་སྙོམས་འདྲེད་ལག་རྩལ་སྤྱོད་པར་བྱེད།</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/swriter/guide.po b/source/bo/helpcontent2/source/text/swriter/guide.po
index c7cd0e23a80..e6d2aeb4cab 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: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "ཁྱེད་ཀྱིས་ཆེད་མངགས་གཏན་འཁེལ་བྱས་པ་མ་གཏོགས་ དེ་མིན་ $[officename] ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་ཚང་མ་\"ཁས་ལེན་\"མ་པང་གཞིར་བྱེད།"
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] <link href=\"text/swriter/01/05130000.xhp\" name=\"སྔོན་མཚན་འཇོག་མ་པང་\">སྔོན་མཚན་འཇོག་མ་པང་</link> འབོར་ཆེན་ལྡན་ཡོད་ མ་པང་འདི་དག་སྤྱད་ན་རིགས་སྣ་ཚོགས་སམ་ཡིག་དེབ་ཀྱི་ཡིག་ཚགས་གསར་འཛུགས་བྱེད་ཆོག་ དཔེར་ན་ཚོང་དོན་འཕྲིན་ཡིན།"
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "<emph>ཡོ་བྱད་</emph>ཚང་སྟེང་<emph>ཐད་ཀར་འོད་རྟགས་གནས་ངེས་</emph>རིས་རྟགས་ལ་རྐྱང་རྡེབ་བྱ། <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149846\">རིས་རྟགས་</alt></image>"
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་ནང་གི་སྟོང་པའི་གནས་སར་རྐྱང་རྡེབ་བྱེད། ཙིག་རྟགས་སྟོན་མདར་འགྱུར་ལྡོག་འབྱུང་ཞིང་ནང་འཇུག་བྱས་པའི་ཡིག་དེབ་ལ་ཉེར་སྤྱོད་བྱས་པའི་སྙོམ་གཤིབ་ཀྱི་ཐབས་ཚུལ་ཚུར་སྣང་བྱེད་"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457inch\" height=\"0.3228inch\"><alt id=\"alt_id5471987\" xml-lang=\"bo\">རིས་རྟགས་</alt></image> གཡོན་སྙོམ་གཤིབ་"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398inch\" height=\"0.3228inch\"><alt id=\"alt_id5730253\" xml-lang=\"bo\">རིས་རྟགས་</alt></image> དཀྱིལ་བསྡུ་"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563inch\" height=\"0.3228inch\"><alt id=\"alt_id6953622\" xml-lang=\"bo\">རིས་རྟགས་</alt></image> གཡས་སྙོམ་གཤིབ་"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
index 4fa6b33c2db..f67b437ae45 100644
--- a/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8138,15 +8138,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "སྒྲོན་བཪྙན་སྤྱིན་ཤོག་གབ་པ།(~H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "ཡི་གེ(~X)..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25822,27 +25822,25 @@ msgctxt ""
msgid "~File"
msgstr "ཡིག་ཆ།(~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "སྙོམ་གཤིབ།"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "སྙོམ་གཤིབ།"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31529,15 +31527,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "དུམ་མཚམས་ཀྱི་མཇུག་སྒྲིལ་གནས་སའི་བར་བདམས།"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "ཡི་གེའི་གཡས་བར་འདེམས་པ།"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/bo/readlicense_oo/docs.po b/source/bo/readlicense_oo/docs.po
index 30f1ba1f741..325d5b7851a 100644
--- a/source/bo/readlicense_oo/docs.po
+++ b/source/bo/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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2018-11-12 11:37+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"Language-Team: Tibetan <https://weblate.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/bo/>\n"
"Language: bo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1542022671.000000\n"
#. q6Gg3
@@ -618,7 +618,7 @@ msgctxt ""
"naso6\n"
"readmeitem.text"
msgid "To enable touchpad scrolling, add the following lines to the \"<tt>C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini</tt>\" configuration file, and restart your computer:"
-msgstr "To enable touchpad scrolling, add the following lines to the \"C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini\" configuration file, and restart your computer:"
+msgstr "To enable touchpad scrolling, add the following lines to the \"<tt> C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini<tt> \" configuration file, and restart your computer:"
#. BdEXg
#: readme.xrm
@@ -645,7 +645,7 @@ msgctxt ""
"sdcc32asrc\n"
"readmeitem.text"
msgid "The Mozilla address book driver requires the <tt>SUNWzlib</tt> package. This package is not part of the minimum Solaris operating system installation. If you require access to the Mozilla address book, then add this package to your Solaris operating system using the command \"<tt>pkgadd</tt>\" from the installation CD."
-msgstr "Mozilla འཕྲིན་དེབ་འདེད་སྐུལ་བྱ་རིམ་ལ་ SUNWzlibམཉེན་ཆས་ཐུབ་ཡོད་དགོས།སྟབས་བདེའི་བསྒར་འཇུག་བྱེད་སྟངས་ཐོག་ནས་ Solarisབཀོལ་སྤྱོད་རྒྱུད་ཁོངས་བསྒར་འཇུག་བྱེད་སྐབས་མཉེན་ཐུབ་འདི་བསྒར་འཇུག་མི་བྱེད། གལ་ཏེ་ཁྱེད་ལ་ Mozillaའཕྲིན་དེབ་བེད་སྤྱོད་དགོས་ཚེ་བསྒར་འཇུག་འོད་སྡེར་ནང་ \"pkgadd\"བཀའ་བརྡ་བརྒྱུད་ནས་མཉེན་ཐུམ་འདི་Solaris བཀོལ་སྤྱོད་རྒྱུད་ཁོངས་ནང་བསྒར་འཇུག་བྱས་ན་འགྲིག"
+msgstr "Mozilla འཕྲིན་དེབ་འདེད་སྐུལ་བྱ་རིམ་ལ་ <tt>SUNWzlib</tt>མཉེན་ཆས་ཐུབ་ཡོད་དགོས།སྟབས་བདེའི་བསྒར་འཇུག་བྱེད་སྟངས་ཐོག་ནས་ Solarisབཀོལ་སྤྱོད་རྒྱུད་ཁོངས་བསྒར་འཇུག་བྱེད་སྐབས་མཉེན་ཐུབ་འདི་བསྒར་འཇུག་མི་བྱེད། གལ་ཏེ་ཁྱེད་ལ་ Mozillaའཕྲིན་དེབ་བེད་སྤྱོད་དགོས་ཚེ་བསྒར་འཇུག་འོད་སྡེར་ནང་ \"<tt>pkgadd</tt>\"བཀའ་བརྡ་བརྒྱུད་ནས་མཉེན་ཐུམ་འདི་Solaris བཀོལ་སྤྱོད་རྒྱུད་ཁོངས་ནང་བསྒར་འཇུག་བྱས་ན་འགྲིག"
#. YFEgC
#: readme.xrm
diff --git a/source/bo/sc/messages.po b/source/bo/sc/messages.po
index 1bb298c1c9d..d3a38ea8a3f 100644
--- a/source/bo/sc/messages.po
+++ b/source/bo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25352,213 +25352,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30578,354 +30578,360 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "འདེམས་གཞི།(~O)..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "གྲངས་ཐང་ཆུང་ཤོས།(~M)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "གྲངས་ཐང་ཆེ་ཤོས་(~M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "values"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Integer "
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "གཉིས་གོང་འགྲིལ་ལུགས།"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "རྩིས་རྒྱག་རྟགས།(~P)"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Integer "
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "གཉིས་གོང་འགྲིལ་ལུགས།"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "རྩིས་རྒྱག་རྟགས།(~P)"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Integer "
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "གཉིས་གོང་འགྲིལ་ལུགས།"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "རྩིས་རྒྱག་རྟགས།(~P)"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Integer "
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "གཉིས་གོང་འགྲིལ་ལུགས།"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "རྩིས་རྒྱག་རྟགས།(~P)"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "values"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "values"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "values"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "values"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "བསུབ་པ།"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "བསུབ་པ།"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "བསུབ་པ།"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "བསུབ་པ།"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/bo/sd/messages.po b/source/bo/sd/messages.po
index a436905e0ee..1eeebce207a 100644
--- a/source/bo/sd/messages.po
+++ b/source/bo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3909,116 +3909,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4422,12 +4422,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6760,219 +6754,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7941,12 +7935,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ཡིག་འབྲུའི་སྤྱི་ཁོག"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/bo/starmath/messages.po b/source/bo/starmath/messages.po
index 1745707451e..41baf72a24a 100644
--- a/source/bo/starmath/messages.po
+++ b/source/bo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2210,9 +2210,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/bo/svx/messages.po b/source/bo/svx/messages.po
index 057ede32bff..3b8980f9147 100644
--- a/source/bo/svx/messages.po
+++ b/source/bo/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7321,10 +7321,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14216,13 +14216,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "སྣེ་སྟོན་ཚང་།"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14246,10 +14246,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/bo/sw/messages.po b/source/bo/sw/messages.po
index f4a40a7d86f..18996bff450 100644
--- a/source/bo/sw/messages.po
+++ b/source/bo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -21085,181 +21085,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22322,12 +22322,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ཡིག་འབྲུའི་སྤྱི་ཁོག"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/br/cui/messages.po b/source/br/cui/messages.po
index 27cd4c49718..85f86768ec2 100644
--- a/source/br/cui/messages.po
+++ b/source/br/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -20942,60 +20942,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
index 3a044f27b84..e5d7a381b44 100644
--- a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8077,15 +8077,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Skrammañ an ~dreyonenn"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Testenn..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25664,25 +25664,25 @@ msgctxt ""
msgid "~File"
msgstr "~Restr"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ste~udañ"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Steu~dañ"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31299,15 +31299,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Diuzañ betek dibenn ar rannbennad"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Diuzañ betek ar ger d'an tu dehou"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/br/sc/messages.po b/source/br/sc/messages.po
index b5ec63e62b9..cf4ee4eef8c 100644
--- a/source/br/sc/messages.po
+++ b/source/br/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24981,213 +24981,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30087,342 +30087,348 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Diskoulmer"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_Dibarzhioù..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Diskoulmañ"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Kellig vukenn"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Gwellekaat an disoc'h da"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Dre g_emmañ ar c'helligoù"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "_Izek"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Uc'hek"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Gwerzh eus"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Dave ar _gellig"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Niñvader"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "G_werzh"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Dave ar _gellig"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Dave ar _gellig"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Dave ar _gellig"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Dave ar _gellig"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Niver kevan"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Daoured"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Niñvader"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Niver kevan"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Daoured"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Niñvader"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Niver kevan"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Daoured"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Niñvader"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Niver kevan"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Daoured"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Niñvader"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Gwerzh"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Gwerzh"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Gwerzh"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Gwerzh"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Lemel kuit"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Lemel kuit"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Lemel kuit"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Lemel kuit"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Amplegadoù bevenniñ"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/br/sd/messages.po b/source/br/sd/messages.po
index 84593d6220f..072a3471c64 100644
--- a/source/br/sd/messages.po
+++ b/source/br/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3861,116 +3861,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4374,12 +4374,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6649,219 +6643,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7817,12 +7811,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Embann an drolinenn"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/br/starmath/messages.po b/source/br/starmath/messages.po
index 5beb3762573..66d8b162f02 100644
--- a/source/br/starmath/messages.po
+++ b/source/br/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/br/svx/messages.po b/source/br/svx/messages.po
index 7376318d189..e5a235df55b 100644
--- a/source/br/svx/messages.po
+++ b/source/br/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Breton <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/br/>\n"
@@ -7254,10 +7254,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Lakaat an dreyonenn da genglotañ gant ar prenestr oberiant."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14078,17 +14078,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barrenn verdeiñ"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Kaset eo bet an danevell sac'hadenn gant berzh.\n"
-"Kavet e vo an danevell a-benn nebeut e :\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -14114,10 +14111,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Kas danevell ar sac'hdenn"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/br/sw/messages.po b/source/br/sw/messages.po
index a011da69eec..857146f7218 100644
--- a/source/br/sw/messages.po
+++ b/source/br/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20497,181 +20497,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21727,12 +21727,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Embann an drolinenn"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/brx/cui/messages.po b/source/brx/cui/messages.po
index 4906f9b3cf0..0fdf9d1f98e 100644
--- a/source/brx/cui/messages.po
+++ b/source/brx/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21477,60 +21477,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
index 9f813af8541..792fc4ee87a 100644
--- a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8153,15 +8153,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~स्लाइड एरसोखोमा"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "फराय बिजाब..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25840,27 +25840,25 @@ msgctxt ""
msgid "~File"
msgstr "~फाइल"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "सारियाव लाबोनाय"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "सारियाव लाबोनाय"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31540,15 +31538,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "आनथोर जोबनाय सिम सायख"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "आगदा सोदोब सिम सायख"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/brx/sc/messages.po b/source/brx/sc/messages.po
index 7dcc780cdbf..eea49969c46 100644
--- a/source/brx/sc/messages.po
+++ b/source/brx/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25185,213 +25185,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30395,354 +30395,360 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "उफ्राफोर..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "~खम बिबां"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "~बांसिन बिबां"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "बेसेनफोर"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "आबुं अनजिमा"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "सालायग्राफोर"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "आबुं अनजिमा"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "सालायग्राफोर"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "आबुं अनजिमा"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "सालायग्राफोर"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "आबुं अनजिमा"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "सालायग्राफोर"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "बेसेनफोर"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "बेसेनफोर"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "बेसेनफोर"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "बेसेनफोर"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "गैया खालाम"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "गैया खालाम"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "गैया खालाम"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "गैया खालाम"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/brx/sd/messages.po b/source/brx/sd/messages.po
index 4127d6ddc1f..3c18c468602 100644
--- a/source/brx/sd/messages.po
+++ b/source/brx/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3909,116 +3909,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4422,12 +4422,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6758,219 +6752,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7934,12 +7928,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "फराय बिजाब सिमा हांखो"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/brx/starmath/messages.po b/source/brx/starmath/messages.po
index 6ae4afde17d..72c265c37d9 100644
--- a/source/brx/starmath/messages.po
+++ b/source/brx/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2207,9 +2207,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/brx/svx/messages.po b/source/brx/svx/messages.po
index a47879a1266..70f5052d6f2 100644
--- a/source/brx/svx/messages.po
+++ b/source/brx/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bodo <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/brx/>\n"
@@ -7345,10 +7345,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14187,13 +14187,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "नेभिगेसन बार"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14217,10 +14217,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/brx/sw/messages.po b/source/brx/sw/messages.po
index aed4a79a028..abfaacc05d1 100644
--- a/source/brx/sw/messages.po
+++ b/source/brx/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -99,10 +99,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -21046,181 +21046,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22280,12 +22280,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "फराय बिजाब सिमा हांखो"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/bs/cui/messages.po b/source/bs/cui/messages.po
index b7b71dcb7a2..4a761152edf 100644
--- a/source/bs/cui/messages.po
+++ b/source/bs/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21437,60 +21437,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/bs/helpcontent2/source/text/sbasic/shared.po b/source/bs/helpcontent2/source/text/sbasic/shared.po
index 96b8f8ddb85..2bb39e3e96c 100644
--- a/source/bs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bs/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Kreira novi direktorij na mediju za podatke."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
+msgid "Creates a new directory on a data medium."
+msgstr "Kreira novi direktorij na mediju za podatke."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir tekst kao string"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Tekst</emph>: Svaki izraz od niza karaktera koji specificira naziv i putanju direktorija koji će biti kreiran. Također možete koristiti <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notaciju</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Ako putanja nije određena, direktorij će biti kreiran unutar trenutačnog."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Briše postojeći direktorij sa medija za podatke."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "MkDir tekst kao string"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Ako putanja nije određena, <emph>RmDir izjava</emph> pretražuje za direktorij koji želite da izbrišete na trenutnoj putanji. Ako nije tu pronađen, poruka o grešci se pojavi."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Zaustavlja izvršenje Basic programa"
-#. FtjMt
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
-
-#. qrBWD
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Primjer:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Postavlja objekat kao defaultni objekat. Ukoliko je ime drugog objekta deklarisan, sve osobine i metode odgovaraju defaultnom objektu dok Zavrsna Izjava nije dosegnuta ."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Koristi: <emph>With</emph> i <emph>End With</emph> ukoliko imas nekoliko osobina ili metoda za jedan objekat."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Pokrece ton preko govornika racunara. Ton je sistemski ovisan i ne možete mijenjati jacinu."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Primjer:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/bs/helpcontent2/source/text/scalc/00.po b/source/bs/helpcontent2/source/text/scalc/00.po
index c9e072f1daa..b15589ce755 100644
--- a/source/bs/helpcontent2/source/text/scalc/00.po
+++ b/source/bs/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/bs/helpcontent2/source/text/scalc/guide.po b/source/bs/helpcontent2/source/text/scalc/guide.po
index 8ed3cfb1c3d..c89acfd7496 100644
--- a/source/bs/helpcontent2/source/text/scalc/guide.po
+++ b/source/bs/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr ""
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Ako želite štampati odredjeni redna svim stranicama dokumenta izaberite <emph>Oblik - Print ranges - Izmijeni</emph>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/bs/helpcontent2/source/text/sdraw/01.po b/source/bs/helpcontent2/source/text/sdraw/01.po
index 7b83f7c3457..eb016bb61c1 100644
--- a/source/bs/helpcontent2/source/text/sdraw/01.po
+++ b/source/bs/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 17:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/bs/helpcontent2/source/text/shared/01.po b/source/bs/helpcontent2/source/text/shared/01.po
index 261bcf8709a..e56da90dda5 100644
--- a/source/bs/helpcontent2/source/text/shared/01.po
+++ b/source/bs/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/bs/helpcontent2/source/text/shared/guide.po b/source/bs/helpcontent2/source/text/shared/guide.po
index d0c87c31a84..f38b9967efb 100644
--- a/source/bs/helpcontent2/source/text/shared/guide.po
+++ b/source/bs/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr ""
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,148 +10447,139 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Alatka za prijavu grešaka"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
+msgid "Starting the Crash Report Tool"
msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr ""
-
-#. vq6k8
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
msgstr ""
#. uD7Ga
@@ -22075,31 +21796,31 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr ""
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
msgstr ""
#. nWgSj
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr ""
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
+msgid "Creating a Default Template"
msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
msgstr ""
-#. GuEWL
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/bs/helpcontent2/source/text/shared/optionen.po b/source/bs/helpcontent2/source/text/shared/optionen.po
index 401136de1b5..dc817d66101 100644
--- a/source/bs/helpcontent2/source/text/shared/optionen.po
+++ b/source/bs/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "Pogled"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,49 +3517,67 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
+msgid "Visibility"
msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
msgstr ""
#. QWZyh
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,22 +3751,22 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
msgstr ""
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
msgstr ""
#. WzMq5
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr ""
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr ""
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr ""
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/swriter/guide.po b/source/bs/helpcontent2/source/text/swriter/guide.po
index af92d582c3d..cf6663d8b18 100644
--- a/source/bs/helpcontent2/source/text/swriter/guide.po
+++ b/source/bs/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,13 +16891,13 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr ""
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
msgstr ""
#. VFfAP
@@ -17269,13 +17251,13 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
msgstr ""
#. AmitQ
@@ -17287,31 +17269,31 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr ""
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
msgstr ""
#. EuMGF
diff --git a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
index caf716feb1e..c6930a5d03f 100644
--- a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8125,15 +8125,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Sakrij slajd"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~kst..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25813,27 +25813,25 @@ msgctxt ""
msgid "~File"
msgstr "~Datoteka"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Poravnavanje"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Poravnavanje"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31501,15 +31499,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Izaberi do kraja odlomka"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Izaberi do desne riječi"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/bs/sc/messages.po b/source/bs/sc/messages.po
index 0c2bd376992..78b2bcdeca6 100644
--- a/source/bs/sc/messages.po
+++ b/source/bs/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25089,213 +25089,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30307,343 +30307,349 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Sistem za rješavanje"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_pcije..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Riješi"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Ciljana ćelija"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimiziraj rezultat u"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Mijenjajući ćelije"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Vrijednost od"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Referenca ćelije"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "_Vrijednost"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "_Referenca ćelije"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "_Referenca ćelije"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "_Referenca ćelije"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "_Referenca ćelije"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Cijeli broj"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binarni"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Cijeli broj"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binarni"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Cijeli broj"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binarni"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Cijeli broj"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binarni"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Vrijednost"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Vrijednost"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Vrijednost"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Vrijednost"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Uklanjanje"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Ukloni"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Ukloni"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Ukloni"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Uslovi ograničavanja"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/bs/sd/messages.po b/source/bs/sd/messages.po
index 2d84683feaf..b6c6e98a7a6 100644
--- a/source/bs/sd/messages.po
+++ b/source/bs/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3883,116 +3883,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4396,12 +4396,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6710,219 +6704,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7885,12 +7879,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Kontura teksta"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/bs/starmath/messages.po b/source/bs/starmath/messages.po
index ecbfed5ea80..3c773c10a9e 100644
--- a/source/bs/starmath/messages.po
+++ b/source/bs/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2191,9 +2191,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/bs/svx/messages.po b/source/bs/svx/messages.po
index 839eeea298a..6579ba31984 100644
--- a/source/bs/svx/messages.po
+++ b/source/bs/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7297,10 +7297,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14177,13 +14177,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigacijska traka"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14207,10 +14207,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/bs/sw/messages.po b/source/bs/sw/messages.po
index 25f27ab325b..054355b6b78 100644
--- a/source/bs/sw/messages.po
+++ b/source/bs/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20831,181 +20831,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22068,12 +22068,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Kontura teksta"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/ca-valencia/cui/messages.po b/source/ca-valencia/cui/messages.po
index 0d3ff6817b1..e0783292e43 100644
--- a/source/ca-valencia/cui/messages.po
+++ b/source/ca-valencia/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/ca_VALENCIA/>\n"
@@ -20901,60 +20901,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
index 5c5665df274..fad62ea00aa 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-18 19:35+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/ca_VALENCIA/>\n"
@@ -12815,50 +12815,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Expressió MkDir\">Expressió MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Crea un directori nou en un suport de dades."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
+msgid "Creates a new directory on a data medium."
+msgstr "Crea un directori nou en un suport de dades."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Qualsevol expressió de cadena que especifica el nom i el camí del directori que es crearà. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12869,15 +12860,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Si el camí no s'ha especificat, el directori es crea al directori actual."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13139,14 +13121,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Suprimeix un directori existent d'un suport de dades."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13157,15 +13139,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13184,15 +13157,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Si el camí no s'ha determinat, l'<emph>expressió RmDir</emph> busca el directori que voleu suprimir al camí actual. Si no es troba, apareix un missatge d'error."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24605,23 +24569,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Atura l'execució del programa del Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemple:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24857,41 +24812,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Expressió With\">Expressió With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Estableix un objecte com l'objecte per defecte. A menys que es declari un altre nom d'objecte, totes les propietats i els mètodes fan referència a l'objecte per defecte fins que s'arriba a l'expressió End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Utilitzeu <emph>With</emph> i <emph>End With</emph> si teniu diverses propietats o mètodes per a un únic objecte."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34100,23 +34064,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Reprodueix un so a través de l'altaveu de l'ordinador. El so depèn del sistema i no podeu modificar-ne el to ni el volum."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemple:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/00.po b/source/ca-valencia/helpcontent2/source/text/scalc/00.po
index 0731dbd3d39..0ee961bcc56 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/ca_VALENCIA/>\n"
@@ -1187,14 +1187,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Trieu <item type=\"menuitem\">Finestra ▸ Divideix la finestra</item></variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Trieu <item type=\"menuitem\">Visualitza ▸ Congela les cel·les ▸ Congela files i columnes</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/guide.po b/source/ca-valencia/helpcontent2/source/text/scalc/guide.po
index dea28350095..7fda2567d46 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/guide.po
+++ b/source/ca-valencia/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-18 19:34+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/ca_VALENCIA/>\n"
@@ -7550,23 +7550,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Per a congelar de manera horitzontal i vertical, seleccioneu la <emph>cel·la</emph> que es troba a sota de la fila i a la dreta de la columna que voleu congelar."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Trieu <item type=\"menuitem\">Visualitza ▸ Congela les cel·les ▸ Congela files i columnes</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Per a desactivar la funció, trieu <item type=\"menuitem\">Visualitza ▸ Congela les cel·les ▸ Congela files i columnes</item> novament."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7586,14 +7586,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Si voleu imprimir una fila concreta a totes les pàgines d'un document, trieu <item type=\"menuitem\">Format ▸ Àrees d'impressió ▸ Edita</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Visualitza ▸ Congela les cel·les ▸ Congela files i columnes\">Visualitza ▸ Congela les cel·les ▸ Congela files i columnes</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/sdraw/01.po b/source/ca-valencia/helpcontent2/source/text/sdraw/01.po
index d48b551bc5b..a1929f1000d 100644
--- a/source/ca-valencia/helpcontent2/source/text/sdraw/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-18 19:34+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/ca_VALENCIA/>\n"
@@ -917,14 +917,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Defineix l'orientació, els marges de la pàgina, el fons i altres opcions de disposició.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Per a canviar el fons de totes les pàgines del fitxer actiu, seleccioneu un fons, feu clic a <emph>D'acord</emph> i després feu clic a <emph>Sí </emph> al diàleg <emph>Configuració de la pàgina</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index 2e08691f1c1..bcdfaf49b34 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-30 22:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/ca_VALENCIA/>\n"
@@ -8000,13 +8000,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/guide.po b/source/ca-valencia/helpcontent2/source/text/shared/guide.po
index d9c6406cd59..1b3c011a11c 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/guide.po
+++ b/source/ca-valencia/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-30 22:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/ca_VALENCIA/>\n"
@@ -98,6 +98,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Treballar amb el %PRODUCTNAME\">Treballar amb el <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3527,15 +3536,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Document HTML"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3779,24 +3779,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3806,24 +3788,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portàtil"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portàtil"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3878,24 +3842,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Text"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5165,15 +5111,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5201,15 +5138,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5219,15 +5147,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5237,15 +5156,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5255,24 +5165,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5291,24 +5183,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5318,15 +5192,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5345,15 +5210,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Mapa de bits portàtil"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5390,15 +5246,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5417,15 +5264,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Mapa de grisos portàtil"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5435,33 +5273,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Mapa de grisos portàtil"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portàtil"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portàtil"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portàtil"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5471,15 +5282,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Gràfic de xarxa portàtil"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Mapa de píxels portàtil"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5498,15 +5300,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5516,33 +5309,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5570,15 +5336,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5597,15 +5354,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5615,15 +5363,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Metafitxer del Windows"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5642,15 +5381,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XPM - Mapa de píxels X"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - Mapa de píxels X"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10718,149 +10448,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Eina d'informes d'error"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Eina d'informe d'errors</bookmark_value><bookmark_value>informes;informes d'error</bookmark_value><bookmark_value>informes d'error</bookmark_value><bookmark_value>activació;Eina d'informe d'errors</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Eina d'informe d'errors\">Eina d'informe d'errors</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "L'eina d'informes d'error s'inicia automàticament quan es produeix una fallada del programa."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "L'Eina d'informe d'errors recopila tota la informació necessària que pot ajudar els desenvolupadors del programa a millorar el codi, per tal que en versions posteriors, este error es puga evitar. Ajudeu-nos a millorar el programari i envieu l'informe d'error generat."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Inici de l'eina d'informes d'error"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "La majoria de vegades que es produïsca una fallada del programa, l'eina d'informes d'error s'iniciarà automàticament."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Com completar l'informe"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Al diàleg principal de l'Eina d'informe d'errors, podeu introduir informació addicional que pot ser d'ajuda per als desenvolupadors per localitzar l'error. Per exemple, si l'error només apareix després de fer canvis al vostre entorn de maquinari o de programari, o si heu fet clic a un botó, incloeu esta informació."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Enviament de l'informe d'error"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "L'Eina d'informe d'errors utilitza el protocol HTTP PUT / SOAP per enviar les dades de l'informe. Opcionalment, podeu introduir text descriptiu que ens ajudarà a identificar el context de l'error del programa. A continuació, feu clic al botó <emph>Envia</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "No rebreu cap resposta al vostre informe d'error. Si necessiteu ajuda, visiteu el <link href=\"text/shared/main0108.xhp\">fòrum d'ajuda</link> a Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Quines dades s'envien?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "L'informe d'error consta de diferents fitxers. El fitxer principal conté informació sobre el tipus d'error, el nom del sistema operatiu i la versió, l'ús de memòria i la descripció que heu introduït. Podeu fer clic al botó <emph>Mostra l'informe</emph> al diàleg principal de l'Eina d'informe d'errors per veure què s'enviarà al fitxer principal."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "A més, els continguts importants de la memòria i les traces de pila es generaran amb eines estàndard (\"dbhhelp.dll\" en sistemes Windows, \"'pstack\" a UNIX). Esta informació també s'enviarà."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22076,32 +21797,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Recordeu-vos de crear una tasca d'impressió diferent per a cada fax; si no ho feu, el primer destinatari rebrà tots els faxos. En el diàleg <emph>Eines - Combinació de correu</emph>, seleccioneu l'opció <emph>Impressora</emph> i activeu la casella de selecció <emph>Crea tasques d'impressió individuals</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Modificació de les plantilles per defecte"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modificació, vegeu canvi</bookmark_value><bookmark_value>canvi, vegeu també edició i reemplaçament</bookmark_value><bookmark_value>plantilles per defecte; canvi</bookmark_value><bookmark_value>valors per defecte;documents</bookmark_value><bookmark_value>plantilles personalitzades</bookmark_value><bookmark_value>actualització; plantilles</bookmark_value><bookmark_value>edició;plantilles</bookmark_value><bookmark_value>plantilles;edició i desament</bookmark_value><bookmark_value>desament;plantilles</bookmark_value><bookmark_value>reinici;plantilles</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Modificació de les plantilles per defecte\">Modificació de les plantilles per defecte</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22112,112 +21833,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Quan obriu un document nou a través del menú <emph>Fitxer ▸ Nou</emph>, apareix un document buit basat en una plantilla del $[officename]. Podeu editar la plantilla, modificar-la o reemplaçar-la perquè el document nou continga els vostres estils personalitzats o altres continguts."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modificació de les plantilles per defecte"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Primer, obriu una plantilla del $[officename] existent i modifiqueu-la, o bé obriu un document nou i editeu-lo per crear la plantilla que vulgueu."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
+
+#. bnC8i
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3145748\n"
+"help.text"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. 2pSHL
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3146901\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Podeu definir una plantilla de document per a cada mòdul del $[officename]. A la secció següent es descriu el procediment que heu de seguir per als documents de text."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
-#. dAATP
+#. MEA5R
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Trieu <emph>Fitxer ▸ Nou ▸ Plantilles</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
msgstr ""
-#. GuEWL
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Ús de plantilles personalitzades"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. Quf5G
+#. 3w93A
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id51605476162735\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Les plantilles personalitzades vos facilitaran la tasca de diverses maneres."
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. S8XFP
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Plantilles a la carpeta de plantilles"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24254,13 +24101,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
index 06755525258..543a2aecc37 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-30 22:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ca_VALENCIA/>\n"
@@ -3428,13 +3428,13 @@ msgctxt ""
msgid "View"
msgstr "Visualització"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3455,58 +3455,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Permet configurar paràmetres relatius a la visualització."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Interfície de l'usuari"
+msgid "Icon style"
+msgstr "Estil de les icones"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Mida de les icones de la barra d'eines"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Especifica la mida de visualització de les icones de la barra d'eines.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> L'opció <emph>Automàtic</emph> utilitza els paràmetres de mida de tipus de lletra del vostre sistema operatiu per als menús.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Mida de les icones de la barra lateral"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3518,50 +3518,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Estil de les icones"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Suavitza el tipus de lletra a la pantalla"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Seleccioneu aquesta opció per a suavitzar l'aparença en pantalla del text.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">Introduïu la mida del tipus de lletra més petit que cal suavitzar.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Mostra icones al costat dels elements de menú corresponents. Trieu entre «Automàtic», «Amaga» y «Mostra». L'opció «Automàtic» mostra les icones en funció dels paràmetres o del tema del sistema.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3572,14 +3590,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Ratolí"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Posicionament del ratolí"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3590,14 +3608,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Especifica si la busca del ratolí es col·locarà en els diàlegs que s'acaben d'obrir i com ho farà.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Botó central del ratolí"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3734,23 +3752,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "L'última selecció marcada és el contingut del porta-retalls de la selecció."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Eixida de gràfics"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Premeu Maj+Ctrl+R per restaurar o refrescar la visualització del document actual.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Premeu Maj+Ctrl+R per restaurar o refrescar la visualització del document actual.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3788,68 +3806,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\".\">Si és compatible, podeu habilitar i inhabilitar el suavitzat dels gràfics. Quan el suavitzat està activat, la majoria d'objectes tenen una aparença més suau i amb menys artefactes.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Usa l'OpenGL per a totes les renderitzacions (en reiniciar)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Força l'OpenGL fins i tot si és a la llista negra (en reiniciar)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Força l'ús de l'OpenGL fins i tot si el dispositiu gràfic és a la llista negra.</ahelp> S'inclou un dispositiu a la llista negra si és defectuós o si produeix gràfics de baixa qualitat."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menú"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Icones als menús"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Mostra icones al costat dels elements de menú corresponents. Trieu entre «Automàtic», «Amaga» y «Mostra». L'opció «Automàtic» mostra les icones en funció dels paràmetres o del tema del sistema.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3878,6 +3887,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Mostra els noms dels tipus de lletra que es poden seleccionar en el tipus de lletra corresponent, com ara els tipus de lletra del quadre Tipus de lletra que hi ha a la barra <emph>Formatació</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Suavitza el tipus de lletra a la pantalla"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Seleccioneu aquesta opció per a suavitzar l'aparença en pantalla del text.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">Introduïu la mida del tipus de lletra més petit que cal suavitzar.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
index 0385c9674eb..bafa3e96220 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-18 19:34+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/ca_VALENCIA/>\n"
@@ -12518,13 +12518,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12563,13 +12563,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12590,58 +12590,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12671,13 +12653,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16910,14 +16892,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Si no ho especifiqueu altrament, tots els nous documents text del $[officename] es basaran en la plantilla per defecte."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "El $[officename] disposa d'una sèrie de <link href=\"text/swriter/01/05130000.xhp\" name=\"plantilles predefinides\">plantilles predefinides</link> que podeu utilitzar per crear diferents tipus de documents de text, com ara cartes comercials."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17270,14 +17252,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Per a configurar el comportament del cursor directe, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME Writer ▸ Ajudes a la formatació</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "A la barra <item type=\"menuitem\">Eines</item>, feu clic a la icona <item type=\"menuitem\">Cursor directe</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icona</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17288,32 +17270,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Feu clic a un espai lliure del document de text. La busca del ratolí canviarà per reflectir l'alineació que s'aplicarà al text que escriviu:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icona</alt></image> Alinea a l'esquerra"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icona</alt></image> Centrat"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icona</alt></image> Alinea a la dreta"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
index 5cca65900b8..b6b0287b60d 100644
--- a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ca_VALENCIA/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "A~maga la diapositiva"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~xt..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Fitxer"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~Alinea"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~Alinea"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Selecciona fins al final del paràgraf"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Selecciona fins a la dreta de la paraula"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ca-valencia/sc/messages.po b/source/ca-valencia/sc/messages.po
index 29c334aa390..39e99024468 100644
--- a/source/ca-valencia/sc/messages.po
+++ b/source/ca-valencia/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/ca_VALENCIA/>\n"
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "~Fitxer"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Permet indicar les vores de les cel·les seleccionades."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Augmenta el sagnat"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Redueix el sagnat"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inici"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Camp"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alineació d'objectes"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposició"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Format"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "E_stadístiques"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dades"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dades"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisa"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisa"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualitza"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converteix"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objecte"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimeix"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimeix"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -29627,338 +29627,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solucionador"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_pcions..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Soluciona"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Cel·la objectiu"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimitza el resultat a"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Canviant les cel·les"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Mí_nim"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Màxim"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Valor de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Referència de la _cel·la"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operador"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_alor"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Referència de la cel·la"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Referència de cel·la"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Referència de la cel·la"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Referència de la cel·la"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Enter"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binari"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operador"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Enter"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binari"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operador"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Enter"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binari"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operador"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Enter"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binari"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operador"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valor"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valor"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valor"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valor"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Suprimeix"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Suprimeix"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Suprimeix"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Suprimeix"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Condicions límit"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ca-valencia/sd/messages.po b/source/ca-valencia/sd/messages.po
index 2d6efc59755..fa834c885ea 100644
--- a/source/ca-valencia/sd/messages.po
+++ b/source/ca-valencia/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-18 23:40+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/ca_VALENCIA/>\n"
@@ -3823,116 +3823,116 @@ msgstr "~Taula"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converteix"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objecte"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo_rmulari"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Mestra"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Mestra"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -4336,12 +4336,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menú"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensió"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6574,219 +6568,219 @@ msgid "~File"
msgstr "~Fitxer"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inici"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Camp"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Format"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposició"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Presentació de diapositives"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Presentació de diapositives"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisa"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisió"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualització"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converteix"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objecte"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Mestra"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Mestra"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Visualització"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Es~quema"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -7696,12 +7690,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Edita el contorn"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensió"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ca-valencia/starmath/messages.po b/source/ca-valencia/starmath/messages.po
index d16823e9012..c388d2a2b5a 100644
--- a/source/ca-valencia/starmath/messages.po
+++ b/source/ca-valencia/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-18 23:40+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/ca_VALENCIA/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ca-valencia/svx/messages.po b/source/ca-valencia/svx/messages.po
index 525e9932140..2dda3ebb68b 100644
--- a/source/ca-valencia/svx/messages.po
+++ b/source/ca-valencia/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-18 23:40+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ca_VALENCIA/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Ajusta la dispositiva a la finestra actual."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "No s'han pogut carregar tots els objectes de SmartArts. Este problema s'evita si guardeu en format del Microsoft Office 2010 o posterior."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barra de navegació"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"L'informe d'errors s'ha pujat correctament.\n"
-"Podreu trobar-lo prompte a:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Envia l'informe de fallada"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_No ho envies"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/ca-valencia/sw/messages.po b/source/ca-valencia/sw/messages.po
index c7f2b0c5648..123ad9d8606 100644
--- a/source/ca-valencia/sw/messages.po
+++ b/source/ca-valencia/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-10-19 15:35+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ca_VALENCIA/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20367,181 +20367,181 @@ msgid "~File"
msgstr "~Fitxer"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inici"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposició"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposició"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Referències"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referèncie~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisió"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisió"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualització"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objecte"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimeix"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimeix"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -21579,12 +21579,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Edita el contorn"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensió"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index e3e50fdca55..e8bc1738f31 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/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: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-20 14:48+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-11-25 12:35+0000\n"
"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564129929.000000\n"
#. GyY9M
@@ -2098,7 +2098,7 @@ msgstr "Aplica a %MODULE"
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME offers a variety of user interface options to make you feel at home"
-msgstr "%PRODUCTNAME ofereix una varietat d'interfícies d'usuari per fer-te sentir com a casa"
+msgstr "El %PRODUCTNAME ofereix una varietat d'interfícies d'usuari per a fer-vos sentir com a casa"
#. m8rYd
#: cui/inc/tipoftheday.hrc:49
@@ -3559,25 +3559,25 @@ msgstr "La variació amb pestanyes compactes té com a objectiu ser familiar amb
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar Compact variant provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The compact variant favors vertical size."
-msgstr ""
+msgstr "La variant \"Barra agrupada compacta\" proporciona accés a funcions agrupades, les més utilitzades com icones i les menys en un menú desplegable. La variant compacta afavoreix la mida vertical."
#. Exopn
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar interface provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The full variant favors functions and is slightly larger than other variants."
-msgstr ""
+msgstr "La interfície \"Barra agrupada\" proporciona accés a funcions agrupades, les més utilitzades com icones i les menys en un menú desplegable. La variant completa afavoreix les funcions i és lleugerament més gran que altres variants."
#. LNaMA
#: cui/inc/toolbarmode.hrc:29
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Single interface shows functions in a single line toolbar with contextual depending content."
-msgstr ""
+msgstr "La interfície \"Contextual única\" mostra les funcions en una barra d'eines d'una sola línia amb el contingut depenent del context."
#. xcPJ4
#: cui/inc/toolbarmode.hrc:30
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Groups interface focus on beginners. It exposes to the most frequently used functions on groups with the core action as large icon and a couple of small additional features. All functions have a label. Depending on the context an additional section provides access to those functions."
-msgstr ""
+msgstr "La interfície \"Grups contextuals\" se centra en els principiants. Exposa a les funcions més utilitzades agrupades, amb l'acció principal com a icona gran i un parell de petites funcions addicionals. Totes les funcions tenen una etiqueta. Depenent del context, una secció addicional proporciona accés a aquestes funcions."
#. Xnz8J
#: cui/inc/treeopt.hrc:33
@@ -4279,7 +4279,7 @@ msgstr "Lloc web"
#: cui/uiconfig/ui/aboutdialog.ui:383
msgctxt "aboutdialog|releasenotes"
msgid "Release Notes"
-msgstr ""
+msgstr "Notes de versió"
#. 5TUrF
#: cui/uiconfig/ui/aboutdialog.ui:411
@@ -4639,13 +4639,13 @@ msgstr "Comentaris"
#: cui/uiconfig/ui/additionsdialog.ui:71
msgctxt "menuassignpage|gear_iconAndText"
msgid "Detail view"
-msgstr ""
+msgstr "Vista detallada"
#. SoASj
#: cui/uiconfig/ui/additionsdialog.ui:82
msgctxt "menuassignpage|gear_iconAndText"
msgid "Condensed list"
-msgstr ""
+msgstr "Llista condensada"
#. MdFgz
#: cui/uiconfig/ui/additionsdialog.ui:98
@@ -4682,7 +4682,7 @@ msgstr "CercaEntrada"
#: cui/uiconfig/ui/additionsdialog.ui:211
msgctxt "additionsdialog|buttonGear"
msgid "Gear Menu"
-msgstr ""
+msgstr "Menú de configuració"
#. CbCbR
#: cui/uiconfig/ui/additionsdialog.ui:212
@@ -4712,19 +4712,19 @@ msgstr "Aquest botó mostra més extensions."
#: cui/uiconfig/ui/additionsfragment.ui:68
msgctxt "additionsEntry|votingLabel"
msgid "Voting:"
-msgstr ""
+msgstr "Vots"
#. iMQas
#: cui/uiconfig/ui/additionsfragment.ui:88
msgctxt "additionsEntry|labelLicense"
msgid "License:"
-msgstr ""
+msgstr "llicència:"
#. buPFe
#: cui/uiconfig/ui/additionsfragment.ui:106
msgctxt "additionsEntry|labelVersion"
msgid "Required version:"
-msgstr ""
+msgstr "Versió necessària:"
#. cFsEL
#: cui/uiconfig/ui/additionsfragment.ui:124
@@ -4736,19 +4736,19 @@ msgstr "Comentaris:"
#: cui/uiconfig/ui/additionsfragment.ui:142
msgctxt "additionsEntry|labelComments"
msgid "Downloads:"
-msgstr ""
+msgstr "Descàrregues:"
#. JRe5b
#: cui/uiconfig/ui/additionsfragment.ui:356
msgctxt "additionsEntry|buttonInstall"
msgid "Install"
-msgstr ""
+msgstr "Instal·la"
#. VEbVr
#: cui/uiconfig/ui/additionsfragment.ui:370
msgctxt "additionsEntry|buttonWebsite"
msgid "Website"
-msgstr ""
+msgstr "Lloc web"
#. BuMBh
#: cui/uiconfig/ui/agingdialog.ui:15
@@ -4778,7 +4778,7 @@ msgstr "Paràmetres"
#: cui/uiconfig/ui/agingdialog.ui:211
msgctxt "agingdialog|extended_tip|AgingDialog"
msgid "All pixels are set to their gray values, and then the green and blue color channels are reduced by the amount you specify. The red color channel is not changed."
-msgstr ""
+msgstr "Tots els píxels s’estableixen als seus valors de grisos i els canals de color verd i blau es redueixen en la quantitat especificada. El canal de color vermell no es canvia."
#. nxZTH
#: cui/uiconfig/ui/applyautofmtpage.ui:55
@@ -4896,10 +4896,9 @@ msgstr "Cometes simples predeterminades"
#. nHhRe
#: cui/uiconfig/ui/applylocalizedpage.ui:332
-#, fuzzy
msgctxt "applylocalizedpage|extended_tip|defaultsingle"
msgid "Resets the quotation marks to the default symbols."
-msgstr "Reinicialitza les cometes dels símbols per defecte."
+msgstr "Restableix les cometes als símbols predefinits."
#. GRDaT
#: cui/uiconfig/ui/applylocalizedpage.ui:346
@@ -4981,10 +4980,9 @@ msgstr "Cometes dobles predeterminades"
#. 8oRQv
#: cui/uiconfig/ui/applylocalizedpage.ui:528
-#, fuzzy
msgctxt "applylocalizedpage|extended_tip|defaultdouble"
msgid "Resets the quotation marks to the default symbols."
-msgstr "Reinicialitza les cometes dels símbols per defecte."
+msgstr "Restableix les cometes als símbols predefinits."
#. cDwwK
#: cui/uiconfig/ui/applylocalizedpage.ui:542
@@ -5074,7 +5072,7 @@ msgstr "Taula"
#: cui/uiconfig/ui/areatabpage.ui:39
msgctxt "areatabpage|extended_tip|tablelb"
msgid "Set the fill options for the selected drawing object or document element."
-msgstr ""
+msgstr "Definiu les opcions d'emplenament de l'objecte de dibuix o de l'element del document seleccionat."
#. 2kC9i
#: cui/uiconfig/ui/areatabpage.ui:51
@@ -20981,60 +20979,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Seleccioneu la vostra interfície preferida"
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared.po b/source/ca/helpcontent2/source/text/sbasic/shared.po
index ddb5d4b2ba0..cedc7b4185f 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-02 14:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1552290669.000000\n"
@@ -12815,50 +12815,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Expressió MkDir\">Expressió MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Crea un directori nou en un suport de dades."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
+msgid "Creates a new directory on a data medium."
+msgstr "Crea un directori nou en un suport de dades."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Qualsevol expressió de cadena que especifica el nom i el camí del directori que es crearà. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12869,15 +12860,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Si el camí no s'ha especificat, el directori es crea al directori actual."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13139,14 +13121,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Suprimeix un directori existent d'un suport de dades."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13157,15 +13139,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13184,15 +13157,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Si el camí no s'ha determinat, l'<emph>expressió RmDir</emph> cerca el directori que voleu suprimir al camí actual. Si no es troba, apareix un missatge d'error."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24605,23 +24569,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Atura l'execució del programa del Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemple:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24857,41 +24812,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Expressió With\">Expressió With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Estableix un objecte com l'objecte per defecte. A menys que es declari un altre nom d'objecte, totes les propietats i els mètodes fan referència a l'objecte per defecte fins que s'arriba a l'expressió End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Utilitzeu <emph>With</emph> i <emph>End With</emph> si teniu diverses propietats o mètodes per a un únic objecte."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34100,23 +34064,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Reprodueix un so a través de l'altaveu de l'ordinador. El so depèn del sistema i no podeu modificar-ne el to ni el volum."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemple:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/ca/helpcontent2/source/text/scalc/00.po b/source/ca/helpcontent2/source/text/scalc/00.po
index 73203a8bf0b..9e8ccabb992 100644
--- a/source/ca/helpcontent2/source/text/scalc/00.po
+++ b/source/ca/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-03 13:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/ca/>\n"
@@ -1187,14 +1187,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Trieu <item type=\"menuitem\">Finestra ▸ Divideix la finestra</item></variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Trieu <item type=\"menuitem\">Visualitza ▸ Congela les cel·les ▸ Congela files i columnes</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index 6acd0c927c0..4e6d152b526 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:33+0100\n"
-"PO-Revision-Date: 2020-08-30 19:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1560441763.000000\n"
@@ -1968,7 +1968,7 @@ msgctxt ""
"par_id2308201415431979367\n"
"help.text"
msgid "Binomial"
-msgstr "Binomial"
+msgstr "Binòmica"
#. KQ2ts
#: 02140700.xhp
@@ -2031,7 +2031,7 @@ msgctxt ""
"par_id230820141543197085\n"
"help.text"
msgid "Negative Binomial"
-msgstr "Binomial negativa"
+msgstr "Binòmica negativa"
#. esYgU
#: 02140700.xhp
@@ -32586,7 +32586,7 @@ msgctxt ""
"bm_id3150267\n"
"help.text"
msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
-msgstr "<bookmark_value>funció B</bookmark_value><bookmark_value>probabilitats de mostres amb una distribució binomial</bookmark_value>"
+msgstr "<bookmark_value>funció B</bookmark_value><bookmark_value>probabilitats de mostres amb una distribució binòmica</bookmark_value>"
#. NKDUL
#: 04060181.xhp
@@ -32604,7 +32604,7 @@ msgctxt ""
"par_id3156061\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_B\">Retorna la probabilitat d'una mostra amb una distribució binomial.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_B\">Retorna la probabilitat d'una mostra amb una distribució binòmica.</ahelp>"
#. tYKH6
#: 04060181.xhp
@@ -33144,7 +33144,7 @@ msgctxt ""
"par_id3146897\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BINOMVERT\">Retorna la probabilitat de distribució binomial per al termini individual.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BINOMVERT\">Retorna la probabilitat de distribució binòmica per al termini individual.</ahelp>"
#. JLBqH
#: 04060181.xhp
@@ -33234,7 +33234,7 @@ msgctxt ""
"par_id2946897\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BINOM_DIST_MS\">Returns the individual term binomial distribution probability.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BINOM_DIST_MS\">Retorna la probabilitat de distribució binomial discreta.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BINOM_DIST_MS\">Retorna la probabilitat de distribució binòmica discreta.</ahelp>"
#. ocFmp
#: 04060181.xhp
@@ -33324,7 +33324,7 @@ msgctxt ""
"par_id2846897\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BINOM_INV_MS\">Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BINOM_INV_MS\">Retorna el valor més petit la distribució binomial acumulada del qual és major o igual que un valor de criteri.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BINOM_INV_MS\">Retorna el valor més petit la distribució binòmica acumulada del qual és major o igual que un valor de criteri.</ahelp>"
#. AZmxs
#: 04060181.xhp
@@ -33369,7 +33369,7 @@ msgctxt ""
"par_id285666\n"
"help.text"
msgid "<item type=\"input\">=BINOM.INV(8;0.6;0.9)</item> returns 7, the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."
-msgstr "<item type=\"input\">=INV.BINOM(8;0.6;0.9)</item> retorna 7, el nombre més petit per al qual la distribució binomial acumulada és més gran o igual al criteri indicat."
+msgstr "<item type=\"input\">=INV.BINOM(8;0.6;0.9)</item> retorna 7, el nombre més petit per al qual la distribució binòmica acumulada és més gran o igual al criteri indicat."
#. BAV48
#: 04060181.xhp
@@ -37068,7 +37068,7 @@ msgctxt ""
"par_id3149254\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">Retorna el valor més petit la distribució binomial acumulada del qual és major o igual que un valor de criteri.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">Retorna el valor més petit la distribució binòmica acumulada del qual és major o igual que un valor de criteri.</ahelp>"
#. zr46x
#: 04060183.xhp
@@ -38112,7 +38112,7 @@ msgctxt ""
"bm_id3149879\n"
"help.text"
msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
-msgstr "<bookmark_value>funció DISTBINOMNEG</bookmark_value><bookmark_value>distribució binomial negativa</bookmark_value>"
+msgstr "<bookmark_value>funció DISTBINOMNEG</bookmark_value><bookmark_value>distribució binòmica negativa</bookmark_value>"
#. GVBDJ
#: 04060184.xhp
@@ -38130,7 +38130,7 @@ msgctxt ""
"par_id3155437\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Retorna la distribució binomial negativa.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Retorna la distribució binòmica negativa.</ahelp>"
#. EokAd
#: 04060184.xhp
@@ -38184,7 +38184,7 @@ msgctxt ""
"bm_id2949879\n"
"help.text"
msgid "<bookmark_value>NEGBINOM.DIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
-msgstr "<bookmark_value>funció DIST.BINOMNEG</bookmark_value><bookmark_value>distribució binomial negativa</bookmark_value>"
+msgstr "<bookmark_value>funció DIST.BINOMNEG</bookmark_value><bookmark_value>distribució binòmica negativa</bookmark_value>"
#. aenUw
#: 04060184.xhp
@@ -38202,7 +38202,7 @@ msgctxt ""
"par_id2955437\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Returns the negative binomial density or distribution function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Retorna la distribució de probabilitat binomial negativa.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Retorna la distribució de probabilitat binòmica negativa.</ahelp>"
#. p5vZX
#: 04060184.xhp
@@ -45969,7 +45969,7 @@ msgctxt ""
"hd_id3154657\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. phND5
#: 05110000.xhp
diff --git a/source/ca/helpcontent2/source/text/scalc/guide.po b/source/ca/helpcontent2/source/text/scalc/guide.po
index 74688a7d83c..cb477c351f0 100644
--- a/source/ca/helpcontent2/source/text/scalc/guide.po
+++ b/source/ca/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/ca/>\n"
@@ -7550,23 +7550,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Per a congelar de manera horitzontal i vertical, seleccioneu la <emph>cel·la</emph> que es troba a sota de la fila i a la dreta de la columna que voleu congelar."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Trieu <item type=\"menuitem\">Visualitza ▸ Congela les cel·les ▸ Congela files i columnes</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Per a desactivar la funció, trieu <item type=\"menuitem\">Visualitza ▸ Congela les cel·les ▸ Congela files i columnes</item> novament."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7586,14 +7586,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Si voleu imprimir una fila concreta a totes les pàgines d'un document, trieu <item type=\"menuitem\">Format ▸ Àrees d'impressió ▸ Edita</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Visualitza ▸ Congela les cel·les ▸ Congela files i columnes\">Visualitza ▸ Congela les cel·les ▸ Congela files i columnes</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
diff --git a/source/ca/helpcontent2/source/text/sdatabase.po b/source/ca/helpcontent2/source/text/sdatabase.po
index 08ad5cca5dc..546851c3b4f 100644
--- a/source/ca/helpcontent2/source/text/sdatabase.po
+++ b/source/ca/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-09-26 19:35+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
#. ugSgG
#: 02000000.xhp
@@ -517,7 +517,7 @@ msgctxt ""
"par_id8554338\n"
"help.text"
msgid "Preview"
-msgstr ""
+msgstr "Previsualitza"
#. YQhGF
#: 02010100.xhp
@@ -535,7 +535,7 @@ msgctxt ""
"par_id7636646\n"
"help.text"
msgid "Run Query"
-msgstr ""
+msgstr "Executa la consulta"
#. jdEeJ
#: 02010100.xhp
@@ -553,7 +553,7 @@ msgctxt ""
"par_id3227942\n"
"help.text"
msgid "Add Table or Query"
-msgstr ""
+msgstr "Afegeix la taula o consulta"
#. WN7wR
#: 02010100.xhp
@@ -562,7 +562,7 @@ msgctxt ""
"hd_id3154939\n"
"help.text"
msgid "Browse"
-msgstr ""
+msgstr "Navega"
#. 5y4VZ
#: 02010100.xhp
@@ -598,7 +598,7 @@ msgctxt ""
"hd_id3149562\n"
"help.text"
msgid "Remove tables"
-msgstr ""
+msgstr "Suprimeix les taules"
#. TbQzA
#: 02010100.xhp
@@ -616,7 +616,7 @@ msgctxt ""
"hd_id3150012\n"
"help.text"
msgid "Move table and modify table size"
-msgstr ""
+msgstr "Mou la taula i modifica'n la mida"
#. amBsQ
#: 02010100.xhp
@@ -697,7 +697,7 @@ msgctxt ""
"par_id3154791\n"
"help.text"
msgid "If you double-click on the line connecting two linked fields or call the menu command <emph>Insert - New Relation</emph>, you can specify the type of relation in the <link href=\"text/sdatabase/02010101.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr ""
+msgstr "Si feu un doble clic a la línia que connecta dos camps relacionats o executeu la comanda de menú <emph>Inserir - Nova Relació</emph>, podeu especificar el tipus de relació al diàleg <link href=\"text/sdatabase/02010101.xhp\" name=\"Relacions\"><emph>Relacions</emph></link>."
#. rAkmw
#: 02010100.xhp
@@ -859,7 +859,7 @@ msgctxt ""
"par_id3154964\n"
"help.text"
msgid "To filter data for the query, set the desired criteria in the lower area of the query design window. The following options are available:"
-msgstr ""
+msgstr "Per a filtrar les dades de la consulta, definiu els criteris desitjats a la zona inferior de la finestra de disseny de la consulta. Hi ha disponibles les següents opcions:"
#. xxoMA
#: 02010100.xhp
@@ -877,7 +877,7 @@ msgctxt ""
"par_id3156372\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FIELD\">Enter the name of the data field that is referred to in the Query. All settings made in the filter option rows refer to this field.</ahelp> If you activate a cell here with a mouse click you'll see an arrow button, which enables you to select a field. The \"Table name.*\" option selects all data fields with the effect that the specified criteria will be applied to all table fields."
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FIELD\">Introduïu el nom del camp de dades al qual es fa referència a la consulta. Tots els ajustos realitzats a l'opció de filtre de files fan referència a aquest camp. </ahelp> Si activeu una cel·la amb un clic del ratolí, veureu un botó fletxa que us permetrà seleccionar un camp. L'opció \"Nom de la taula. *\" selecciona tots els camps de dades amb resultat que els criteris especificats s'aplicaran a tots els camps de la taula."
#. Z3pwF
#: 02010100.xhp
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3145150\n"
"help.text"
msgid "Alias"
-msgstr ""
+msgstr "Àlies"
#. EDa3A
#: 02010100.xhp
@@ -895,7 +895,7 @@ msgctxt ""
"par_id3146315\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_ALIAS\">Specifies an alias. This alias will be listed in the query instead of the field name. This makes it possible to use user-defined column labels.</ahelp> For example, if the data field is named PtNo and, instead of that name, you would like to have PartNum appear in the query, enter PartNum as the alias."
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_ALIAS\">Especifica un àlies. Aquest àlies es mostrarà a la consulta en lloc del nom del camp. Això permet utilitzar etiquetes de columna definides per l'usuari.</ahelp> Per exemple, si el camp de dades es diu PtNo i, en lloc d'aquest nom, voleu que PartNum aparegui a la consulta, introduïu PartNum com a àlies."
#. vvWbt
#: 02010100.xhp
@@ -904,7 +904,7 @@ msgctxt ""
"par_id3155959\n"
"help.text"
msgid "In a SQL statement, aliases are defined as follows:"
-msgstr ""
+msgstr "En una declaració SQL, els àlies es defineixen segons:"
#. CGsBz
#: 02010100.xhp
@@ -913,7 +913,7 @@ msgctxt ""
"par_id3149922\n"
"help.text"
msgid "SELECT column AS alias FROM table."
-msgstr ""
+msgstr "SELECT columna AS àlies FROM taula"
#. TWexq
#: 02010100.xhp
@@ -922,7 +922,7 @@ msgctxt ""
"par_id3159335\n"
"help.text"
msgid "For example:"
-msgstr ""
+msgstr "Per exemple:"
#. ynSGq
#: 02010100.xhp
@@ -931,7 +931,7 @@ msgctxt ""
"par_id3148478\n"
"help.text"
msgid "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\""
-msgstr ""
+msgstr "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\""
#. roTzi
#: 02010100.xhp
@@ -940,7 +940,7 @@ msgctxt ""
"hd_id3148485\n"
"help.text"
msgid "Table"
-msgstr ""
+msgstr "Taula"
#. GM9Sp
#: 02010100.xhp
@@ -949,7 +949,7 @@ msgctxt ""
"par_id3163665\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_TABLE\">The corresponding database table of the selected data field is listed here.</ahelp> If you activate this cell with a mouse click, an arrow will appear which enables you to select a different table for the current query."
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_TABLE\">Mostra la taula de la base de dades corresponent al camp de dades seleccionat.</ahelp> Si activeu aquesta cel·la amb un clic del ratolí, apareixerà una fletxa que permet seleccionar una taula diferent per a la consulta actual."
#. JGcfa
#: 02010100.xhp
@@ -958,7 +958,7 @@ msgctxt ""
"hd_id3154207\n"
"help.text"
msgid "Sort"
-msgstr ""
+msgstr "Ordena"
#. uXuDt
#: 02010100.xhp
@@ -967,7 +967,7 @@ msgctxt ""
"par_id3150979\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_ORDER\">If you click on this cell, you can choose a sort option: ascending, descending and unsorted.</ahelp> Text fields will be sorted alphabetically and numerical fields numerically. For most databases, administrators can set the sorting options at the database level."
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_ORDER\">Fent clic a aquesta cel·la, podreu triar una opció d’ordenació: ascendent, descendent i sense classificar.</ahelp> Els camps de text s’ordenaran alfabèticament i els numèrics numèricament. En la major part de les bases de dades els administradors poden definir les opcions d’ordenació."
#. XsqW8
#: 02010100.xhp
@@ -976,7 +976,7 @@ msgctxt ""
"hd_id3150384\n"
"help.text"
msgid "Visible"
-msgstr ""
+msgstr "Visible"
#. AAZfA
#: 02010100.xhp
@@ -985,7 +985,7 @@ msgctxt ""
"par_id3146133\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_VISIBLE\">If you mark the <emph>Visible</emph> property for a data field, that field will be visibly displayed in the resulting query</ahelp>. If you are only using a data field to formulate a condition or make a calculation, you do not necessarily need to display it."
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_VISIBLE\">Si marqueu la propietat com a <emph>Visible</emph> pel camp de dades, aquest camp es visualitzarà a la consulta resultant</ahelp>. Si només utilitzeu un camp per formular una condició o fer un càlcul, no necessàriament cal que es mostri."
#. eQFRR
#: 02010100.xhp
@@ -994,7 +994,7 @@ msgctxt ""
"hd_id3154714\n"
"help.text"
msgid "Criteria"
-msgstr ""
+msgstr "Criteri"
#. f3DvJ
#: 02010100.xhp
@@ -1003,7 +1003,7 @@ msgctxt ""
"par_id3145134\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Specifies a first <link href=\"text/sdatabase/020010100.xhp\" name=\"criteria \">criteria </link>by which the content of the data field is to be filtered.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Especifica el primer <link href=\"text/sdatabase/020010100.xhp\" name=\"criteri \">criteri </link> mitjançant el qual s’ha de filtrar el contingut del camp de dades.</ahelp>"
#. qpADC
#: 02010100.xhp
@@ -1012,7 +1012,7 @@ msgctxt ""
"hd_id3152477\n"
"help.text"
msgid "or"
-msgstr ""
+msgstr "o"
#. KFVy8
#: 02010100.xhp
@@ -1021,7 +1021,7 @@ msgctxt ""
"par_id3154585\n"
"help.text"
msgid "Here you can enter one additional filter criterion for each line. Multiple criteria in a single column will be interpreted as boolean OR."
-msgstr ""
+msgstr "Podeu introduir un criteri de filtre addicional a cada fila. Diversos criteris en una sola columna s’interpretaran com a O booleà."
#. eXvp7
#: 02010100.xhp
@@ -1030,7 +1030,7 @@ msgctxt ""
"par_id3148800\n"
"help.text"
msgid "You can also use the context menu of the line headers in the lower area of the query design window to insert a filter based on a function:"
-msgstr ""
+msgstr "També podeu utilitzar el menú contextual de les capçaleres de fila, a la zona inferior de la finestra de disseny de la consulta, per inserir un filtre basat en una funció:"
#. 5x8LE
#: 02010100.xhp
@@ -1039,7 +1039,7 @@ msgctxt ""
"hd_id3148419\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Funcions"
#. Cxhjn
#: 02010100.xhp
@@ -1048,7 +1048,7 @@ msgctxt ""
"par_id3153233\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\" visibility=\"hidden\">Select a function to run in the query.</ahelp> The functions which are available here depend on those provided by the database engine."
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\" visibility=\"hidden\">Seleccioneu una funció per a executar a la consulta.</ahelp> Les funcions disponibles depenen de les proporcionades pel motor de base de dades."
#. qFuqw
#: 02010100.xhp
@@ -1057,7 +1057,7 @@ msgctxt ""
"par_id8760818\n"
"help.text"
msgid "If you are working with the embedded HSQL database, the list box in the <emph>Function</emph> row offers you the following options:"
-msgstr ""
+msgstr "Si treballeu amb una base de dades HSQL incrustada, el quadre de llista de la fila <emph>Funció</emph> ofereix les següents opcions:"
#. 9tdDn
#: 02010100.xhp
@@ -1066,7 +1066,7 @@ msgctxt ""
"par_id3150307\n"
"help.text"
msgid "Option"
-msgstr ""
+msgstr "Opció"
#. kBvXF
#: 02010100.xhp
@@ -1075,7 +1075,7 @@ msgctxt ""
"par_id3152993\n"
"help.text"
msgid "Effect"
-msgstr ""
+msgstr "Efecte"
#. zCunm
#: 02010100.xhp
@@ -1084,7 +1084,7 @@ msgctxt ""
"par_id3155377\n"
"help.text"
msgid "No function"
-msgstr ""
+msgstr "Cap funció"
#. kZMTN
#: 02010100.xhp
@@ -1093,7 +1093,7 @@ msgctxt ""
"par_id3155533\n"
"help.text"
msgid "No function will be executed."
-msgstr ""
+msgstr "No s'executarà cap funció."
#. 6dWZZ
#: 02010100.xhp
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3166420\n"
"help.text"
msgid "Average"
-msgstr ""
+msgstr "Mitjana"
#. NfRNs
#: 02010100.xhp
@@ -1111,7 +1111,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "Calculates the arithmetic mean of a field."
-msgstr ""
+msgstr "Calcula la mitjana aritmètica d'un camp."
#. 6z2Kj
#: 02010100.xhp
@@ -1120,7 +1120,7 @@ msgctxt ""
"par_id3149979\n"
"help.text"
msgid "Count"
-msgstr ""
+msgstr "Comptatge"
#. rvWA5
#: 02010100.xhp
@@ -1129,7 +1129,7 @@ msgctxt ""
"par_id3155810\n"
"help.text"
msgid "Determines the number of records in the table. Empty fields can either be counted (a) or excluded (b)."
-msgstr ""
+msgstr "Determina el nombre de registres d'una taula. Els camps buits es poden comptar (a) o excloure (b)."
#. UyAx2
#: 02010100.xhp
@@ -1138,7 +1138,7 @@ msgctxt ""
"par_id3151333\n"
"help.text"
msgid "a) COUNT(*): Passing an asterisk as the argument counts all records in the table."
-msgstr ""
+msgstr "a) COUNT(*): En passar un asterisc com a argument, es comptabilitzen tots els registres de la taula."
#. FNCC8
#: 02010100.xhp
@@ -1147,7 +1147,7 @@ msgctxt ""
"par_id3152889\n"
"help.text"
msgid "b) COUNT(column): Passing a field name as an argument counts only the records in which the specified field contains a value. Records in which the field has a Null value (i.e. contains no textual or numeric value) will not be counted."
-msgstr ""
+msgstr "b) COUNT(column): Passar el nom d'un camp com a argument només compta els registres en què el camp especificat conté un valor. Els registres en què el camp té un valor nul (és a dir, no conté cap valor textual o numèric) no es comptabilitzaran."
#. 2ubvb
#: 02010100.xhp
@@ -1156,7 +1156,7 @@ msgctxt ""
"par_id3153067\n"
"help.text"
msgid "Maximum"
-msgstr ""
+msgstr "Màxim"
#. ds4ey
#: 02010100.xhp
@@ -1165,7 +1165,7 @@ msgctxt ""
"par_id3159221\n"
"help.text"
msgid "Determines the highest value of a record for that field."
-msgstr ""
+msgstr "Determina el registre amb el valor més gran per a aquest camp."
#. EhSWy
#: 02010100.xhp
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3146866\n"
"help.text"
msgid "Minimum"
-msgstr ""
+msgstr "Mínim"
#. VxmeB
#: 02010100.xhp
@@ -1183,7 +1183,7 @@ msgctxt ""
"par_id3157982\n"
"help.text"
msgid "Determines the lowest value of a record for that field."
-msgstr ""
+msgstr "Determina el registre amb el valor menor per a aquest camp."
#. CvkuF
#: 02010100.xhp
@@ -1192,7 +1192,7 @@ msgctxt ""
"par_id3154828\n"
"help.text"
msgid "Sum"
-msgstr ""
+msgstr "Suma"
#. 82gAC
#: 02010100.xhp
@@ -1201,7 +1201,7 @@ msgctxt ""
"par_id3154536\n"
"help.text"
msgid "Calculates the sum of the values of records for the associated fields."
-msgstr ""
+msgstr "Calcula la suma dels valors dels registres per als camps associats."
#. zCzVC
#: 02010100.xhp
@@ -1210,7 +1210,7 @@ msgctxt ""
"par_id3148820\n"
"help.text"
msgid "Group"
-msgstr ""
+msgstr "Agrupa"
#. tSPNG
#: 02010100.xhp
@@ -1219,7 +1219,7 @@ msgctxt ""
"par_id3149438\n"
"help.text"
msgid "Groups query data according to the selected field name. Functions are executed according to the specified groups. In SQL, this option corresponds to the GROUP BY clause. If a criterion is added, this entry appears in the SQL HAVING sub-clause."
-msgstr ""
+msgstr "Agrupa les dades d'acord amb el nom del camp seleccionat. Les funcions s’executen segons els grups especificats. A SQL, aquesta opció correspon a la clàusula GROUP BY. Si s’afegeix un criteri, aquesta entrada apareix a la subclàusula SQL HAVING."
#. qHfpD
#: 02010100.xhp
@@ -1228,7 +1228,7 @@ msgctxt ""
"par_id3156038\n"
"help.text"
msgid "You can also enter function calls directly into the SQL statement. The syntax is:"
-msgstr ""
+msgstr "També es poden introduir crides a funcions directament a la sentència SQL."
#. Qg6Ue
#: 02010100.xhp
@@ -1237,7 +1237,7 @@ msgctxt ""
"par_id3156340\n"
"help.text"
msgid "SELECT FUNCTION(column) FROM table."
-msgstr ""
+msgstr "SELECT FUNCTION(columna) FROM taula."
#. qAAoF
#: 02010100.xhp
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_id3155075\n"
"help.text"
msgid "For example, the function call in SQL for calculating a sum is:"
-msgstr ""
+msgstr "Per exemple, la crida en SQL a la funció que calcula la suma és:"
#. VrHLf
#: 02010100.xhp
@@ -1255,7 +1255,7 @@ msgctxt ""
"par_id3154591\n"
"help.text"
msgid "SELECT SUM(\"Price\") FROM \"Article\"."
-msgstr ""
+msgstr "SELECT SUM(\"Preu\") FROM \"Article\"."
#. dABCo
#: 02010100.xhp
@@ -1264,7 +1264,7 @@ msgctxt ""
"par_id3159205\n"
"help.text"
msgid "Except for the <emph>Group</emph> function, the above functions are called Aggregate functions. These are functions that calculate data to create summaries from the results. Additional functions that are not listed in the list box might be also possible. These depend on the specific database engine in use and on the current functionality provided by the Base driver used to connect to that database engine."
-msgstr ""
+msgstr "Excepte per la funció <emph>Group</emph>, les anteriors funcions s’anomenen funcions agregades. Són funcions que calculen les dades per crear resums a partir dels resultats. És possible que hi hagi funcions addicionals que no apareixen al quadre de llista. Aquestes depenen del motor de base de dades específic que s’utilitzi i, de la funcionalitat proporcionada pel controlador utilitzat per connectar-se a aquest motor."
#. BVC6J
#: 02010100.xhp
@@ -1273,7 +1273,7 @@ msgctxt ""
"par_id3148651\n"
"help.text"
msgid "To use other functions not listed in the list box, you must enter them manually under <emph>Field</emph>."
-msgstr ""
+msgstr "Per a utilitzar aquestes funcions no enumerades, les heu d'introduir manualment a <emph>Camp</emph>."
#. WkboS
#: 02010100.xhp
@@ -1282,7 +1282,7 @@ msgctxt ""
"par_id3155098\n"
"help.text"
msgid "You can also assign aliases to function calls. If you do not want to display the query string in the column header, enter a desired substitute name under <emph>Alias</emph>."
-msgstr ""
+msgstr "També és possible assignar àlies a les crides de les funcions. Si no voleu que es mostri la cadena de la consulta a la capçalera de la columna, introduïu un nom substitut a <emph>Àlies</emph>."
#. 98GCC
#: 02010100.xhp
@@ -1291,7 +1291,7 @@ msgctxt ""
"par_id3155539\n"
"help.text"
msgid "The corresponding function in an SQL statement is:"
-msgstr ""
+msgstr "La funció corresponent a la declaració SQL és:"
#. WACG9
#: 02010100.xhp
@@ -1300,7 +1300,7 @@ msgctxt ""
"par_id3149425\n"
"help.text"
msgid "SELECT FUNCTION() AS alias FROM table"
-msgstr ""
+msgstr "SELECT FUNCTION() AS àlies FROM taula"
#. EjzuD
#: 02010100.xhp
@@ -1309,7 +1309,7 @@ msgctxt ""
"par_id3144431\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemple:"
#. G9URE
#: 02010100.xhp
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_id3154614\n"
"help.text"
msgid "SELECT COUNT(*) AS count FROM \"Item\""
-msgstr ""
+msgstr "SELECT COUNT(*) AS comptatge FROM \"article\""
#. xiNnR
#: 02010100.xhp
@@ -1327,7 +1327,7 @@ msgctxt ""
"par_id3154610\n"
"help.text"
msgid "If you run such a function, you cannot insert any additional columns for the query other than as an argument in a \"Group\" function."
-msgstr ""
+msgstr "Si executeu aquesta funció, a la consulta no podreu inserir cap columna addicional que no sigui un argument de la funció «Agrupa»."
#. EHACK
#: 02010100.xhp
@@ -1336,7 +1336,7 @@ msgctxt ""
"par_id3154644\n"
"help.text"
msgid "<emph>Examples</emph>"
-msgstr ""
+msgstr "<emph>Exemples</emph>"
#. N5CBE
#: 02010100.xhp
@@ -1345,7 +1345,7 @@ msgctxt ""
"par_id3151120\n"
"help.text"
msgid "In the following example, a query is run through two tables: an \"Item\" table with the \"Item_No\" field and a \"Suppliers\" table with the \"Supplier_Name\" field. In addition, both tables have a common field name \"Supplier_No.\""
-msgstr ""
+msgstr "A l'exemple següent, s'executa una consulta a través de dues taules: una taula «Article» amb el camp «Num_article» i una taula «Proveïdors» amb el camp «Nom_proveïdor». A més, les dues taules tenen un camp comú, «Num_proveïdor»."
#. P5hJD
#: 02010100.xhp
@@ -1354,7 +1354,7 @@ msgctxt ""
"par_id3155144\n"
"help.text"
msgid "The following steps are required to create a query containing all suppliers who deliver more than three items."
-msgstr ""
+msgstr "Els passos següents són necessaris per a crear una consulta que contingui tots els proveïdors que lliuren més de tres articles."
#. ZhRQD
#: 02010100.xhp
@@ -1363,7 +1363,7 @@ msgctxt ""
"par_id3153240\n"
"help.text"
msgid "Insert the \"Item\" and \"Suppliers\" tables into the query design."
-msgstr ""
+msgstr "Inseriu les taules «Article» i «Proveïdors» al disseny de la consulta."
#. LMRUV
#: 02010100.xhp
@@ -1372,7 +1372,7 @@ msgctxt ""
"par_id3148807\n"
"help.text"
msgid "Link the \"Supplier_No\" fields of the two tables if there is not already a relation of this type."
-msgstr ""
+msgstr "Enllaceu els camps «Num_proveïdor» de les dues taules si encara no hi ha cap relació d'aquest tipus."
#. qWhFA
#: 02010100.xhp
@@ -1381,7 +1381,7 @@ msgctxt ""
"par_id3161652\n"
"help.text"
msgid "Double-click on the \"Item_No\" field from the \"Item\" table. Display the <emph>Function</emph> line using the context menu and select the Count function."
-msgstr ""
+msgstr "Feu doble clic al camp «Num_article» de la taula «Article». Mostreu la fila <emph>Funció</emph> mitjançant el menú contextual i seleccioneu la funció Comptatge."
#. TgPA2
#: 02010100.xhp
@@ -1390,7 +1390,7 @@ msgctxt ""
"par_id3151009\n"
"help.text"
msgid "Enter >3 as a criterion and disable the Visible field."
-msgstr ""
+msgstr "Introduïu >3 com a criteri i desactiveu el camp Visible."
#. VwEhF
#: 02010100.xhp
@@ -1399,7 +1399,7 @@ msgctxt ""
"par_id3145601\n"
"help.text"
msgid "Double-click the \"Supplier_Name\" field in the \"Suppliers\" table and choose the Group function."
-msgstr ""
+msgstr "Feu doble clic al camp «Nom_proveidor» a la taula «Proveïdors» i seleccioneu la funció Grup."
#. zsjaa
#: 02010100.xhp
@@ -1408,7 +1408,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "Run the query."
-msgstr ""
+msgstr "Executeu la consulta."
#. EzQsj
#: 02010100.xhp
@@ -1417,7 +1417,7 @@ msgctxt ""
"par_id3148638\n"
"help.text"
msgid "If the \"price\" (for the individual price of an article) and \"Supplier_No\" (for the supplier of the article) fields exist in the \"Item\" table, you can obtain the average price of the item that a supplier provides with the following query:"
-msgstr ""
+msgstr "Si «preu» (preu individual d'un article) i «Num_proveïdor» (proveïdor de l'article) existeixen a la taula «Article», podreu obtenir el preu mitjà de l'article que proporciona un proveïdor amb la següent consulta:"
#. qAByp
#: 02010100.xhp
@@ -1426,7 +1426,7 @@ msgctxt ""
"par_id3153045\n"
"help.text"
msgid "Insert the \"Item\" table into the query design."
-msgstr ""
+msgstr "Inseriu la taula «Article» al disseny de la consulta."
#. tjfuE
#: 02010100.xhp
@@ -1435,7 +1435,7 @@ msgctxt ""
"par_id3149802\n"
"help.text"
msgid "Double-click the \"Price\" and \"Supplier_No\" fields."
-msgstr ""
+msgstr "Feu doble clic als camps «Preu» i «Num_proveïdor»."
#. 6dBkt
#: 02010100.xhp
@@ -1444,7 +1444,7 @@ msgctxt ""
"par_id3153554\n"
"help.text"
msgid "Enable the <emph>Function</emph> line and select the Average function from the \"Price\" field."
-msgstr ""
+msgstr "Activeu la fila <emph>Funció</emph> i seleccioneu la funció Mitjana del camp «Preu»."
#. x8JB3
#: 02010100.xhp
@@ -1453,7 +1453,7 @@ msgctxt ""
"par_id3155597\n"
"help.text"
msgid "You can also enter \"Average\" in the line for the alias name (without quotation marks)."
-msgstr ""
+msgstr "També podeu introduir «Mitjana» a la línia en l'àlies del nom (sense cometes)."
#. D4A9u
#: 02010100.xhp
@@ -1462,7 +1462,7 @@ msgctxt ""
"par_id3151191\n"
"help.text"
msgid "Choose Group for the \"Supplier_No\" field."
-msgstr ""
+msgstr "Seleccioneu Grup per al camp «Num_proveïdor»."
#. BUYS9
#: 02010100.xhp
@@ -1471,7 +1471,7 @@ msgctxt ""
"par_id3155547\n"
"help.text"
msgid "Run the query."
-msgstr ""
+msgstr "Executeu la consulta."
#. EkHzB
#: 02010100.xhp
@@ -1480,7 +1480,7 @@ msgctxt ""
"par_id3147549\n"
"help.text"
msgid "The following context menu commands and symbols are available:"
-msgstr ""
+msgstr "Al menú contextual hi ha disponibles les següents ordres i símbols:"
#. PesFs
#: 02010100.xhp
@@ -1489,7 +1489,7 @@ msgctxt ""
"hd_id3154172\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Funcions"
#. BchuJ
#: 02010100.xhp
@@ -1498,7 +1498,7 @@ msgctxt ""
"par_id3150414\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides a row for the selection of functions.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Mostra o amaga una fila segons la selecció de funcions.</ahelp>"
#. yx5XE
#: 02010100.xhp
@@ -1507,7 +1507,7 @@ msgctxt ""
"hd_id3149872\n"
"help.text"
msgid "Table Name"
-msgstr ""
+msgstr "Nom de la taula"
#. ELTGJ
#: 02010100.xhp
@@ -1516,7 +1516,7 @@ msgctxt ""
"par_id3147246\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the table name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Mostra o amaga la fila segons el nom de la taula.</ahelp>"
#. DDFEA
#: 02010100.xhp
@@ -1525,7 +1525,7 @@ msgctxt ""
"hd_id3145117\n"
"help.text"
msgid "Alias Name"
-msgstr ""
+msgstr "Àlies del nom"
#. LDFZB
#: 02010100.xhp
@@ -1534,7 +1534,7 @@ msgctxt ""
"par_id3155754\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the alias name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Mostra o amaga la fila segons l'àlies del nom.</ahelp>"
#. wnNhq
#: 02010100.xhp
@@ -1543,7 +1543,7 @@ msgctxt ""
"hd_id3153298\n"
"help.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Valors diferents"
#. 23sAF
#: 02010100.xhp
@@ -1579,7 +1579,7 @@ msgctxt ""
"par_id3149825\n"
"help.text"
msgid "In SQL, this command corresponds to the DISTINCT predicate."
-msgstr ""
+msgstr "En SQL, aquesta ordre es correspon al predicat DISTINCT"
#. GHsJd
#: 02010100.xhp
@@ -1588,7 +1588,7 @@ msgctxt ""
"hd_id3153290\n"
"help.text"
msgid "Limit"
-msgstr ""
+msgstr "Limit"
#. MijJg
#: 02010100.xhp
@@ -1597,7 +1597,7 @@ msgctxt ""
"par_id3147501\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Allows you to limit the maximum number of records returned by a query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Permet limitar el nombre màxim de registres retornats per una consulta.</ahelp>"
#. B6S5f
#: 02010100.xhp
@@ -1615,7 +1615,7 @@ msgctxt ""
"hd_id3148926\n"
"help.text"
msgid "Formulating filter conditions"
-msgstr ""
+msgstr "Formulació de les condicions del filtre"
#. iFSpm
#: 02010100.xhp
@@ -1633,7 +1633,7 @@ msgctxt ""
"par_id3149044\n"
"help.text"
msgid "Operator"
-msgstr ""
+msgstr "Operador"
#. mfdEx
#: 02010100.xhp
@@ -1642,7 +1642,7 @@ msgctxt ""
"par_id3152471\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significat"
#. mBZgC
#: 02010100.xhp
@@ -1651,7 +1651,7 @@ msgctxt ""
"par_id3147407\n"
"help.text"
msgid "Condition is satisfied if..."
-msgstr ""
+msgstr "La condició es compleix si..."
#. gqkRK
#: 02010100.xhp
@@ -1660,7 +1660,7 @@ msgctxt ""
"par_id3153026\n"
"help.text"
msgid "equal to"
-msgstr ""
+msgstr "igual a"
#. hw7KZ
#: 02010100.xhp
@@ -1777,7 +1777,7 @@ msgctxt ""
"par_id3154630\n"
"help.text"
msgid "$[officename] command"
-msgstr ""
+msgstr "Ordre del $[officename]"
#. Yo7MG
#: 02010100.xhp
@@ -1786,7 +1786,7 @@ msgctxt ""
"par_id3150484\n"
"help.text"
msgid "SQL command"
-msgstr ""
+msgstr "Ordre SQL"
#. pJay6
#: 02010100.xhp
@@ -1795,7 +1795,7 @@ msgctxt ""
"par_id3154158\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significat"
#. qmaX5
#: 02010100.xhp
@@ -1804,7 +1804,7 @@ msgctxt ""
"par_id3149433\n"
"help.text"
msgid "Condition is satisfied if..."
-msgstr ""
+msgstr "La condició es compleix si..."
#. do6XQ
#: 02010100.xhp
@@ -3118,7 +3118,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Toolbars"
-msgstr ""
+msgstr "Barres d'eines"
#. Tzgdb
#: toolbars.xhp
@@ -3127,7 +3127,7 @@ msgctxt ""
"par_idN10541\n"
"help.text"
msgid "<variable id=\"toolbars\"><link href=\"text/sdatabase/toolbars.xhp\">Toolbars</link></variable>"
-msgstr ""
+msgstr "<variable id=\"toolbars\"><link href=\"text/sdatabase/toolbars.xhp\">Barres d'eines</link></variable>"
#. B3mEW
#: toolbars.xhp
@@ -3145,7 +3145,7 @@ msgctxt ""
"par_idN10548\n"
"help.text"
msgid "Table"
-msgstr ""
+msgstr "Taula"
#. JWHfj
#: toolbars.xhp
@@ -3181,7 +3181,7 @@ msgctxt ""
"par_idN10573\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the selected table so you can change the structure.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Obre la taula seleccionada perquè podeu canviar-ne l'estructura.</ahelp>"
#. FEBzp
#: toolbars.xhp
@@ -3190,7 +3190,7 @@ msgctxt ""
"par_idN1058A\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Suprimeix"
#. PDZsk
#: toolbars.xhp
@@ -3199,7 +3199,7 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Suprimeix la taula seleccionada.</ahelp>"
#. m7BX3
#: toolbars.xhp
@@ -3208,7 +3208,7 @@ msgctxt ""
"par_idN105A5\n"
"help.text"
msgid "Rename"
-msgstr ""
+msgstr "Canvia el nom"
#. B596w
#: toolbars.xhp
@@ -3217,7 +3217,7 @@ msgctxt ""
"par_idN105A9\n"
"help.text"
msgid "<ahelp hid=\".\">Renames the selected table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Canvia el nom de la taula seleccionada.</ahelp>"
#. LEWCs
#: toolbars.xhp
diff --git a/source/ca/helpcontent2/source/text/sdraw/01.po b/source/ca/helpcontent2/source/text/sdraw/01.po
index a3f112965d6..e4bf1fc94ab 100644
--- a/source/ca/helpcontent2/source/text/sdraw/01.po
+++ b/source/ca/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-18 15:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/ca/>\n"
@@ -917,14 +917,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Defineix l'orientació, els marges de la pàgina, el fons i altres opcions de disposició.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Per a canviar el fons de totes les pàgines del fitxer actiu, seleccioneu un fons, feu clic a <emph>D'acord</emph> i després feu clic a <emph>Sí </emph> al diàleg <emph>Configuració de la pàgina</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index 3d173a7d661..b7a46caf2b7 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-20 06:55+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/ca/>\n"
"Language: ca\n"
@@ -8019,13 +8019,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
@@ -8242,7 +8242,7 @@ msgctxt ""
"par_id381559577400292\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significat"
#. ySBpJ
#: 02100001.xhp
@@ -8251,7 +8251,7 @@ msgctxt ""
"par_id621559577542068\n"
"help.text"
msgid "An empty paragraph."
-msgstr ""
+msgstr "Un paràgraf buit."
#. LhRmN
#: 02100001.xhp
@@ -8278,7 +8278,7 @@ msgctxt ""
"par_id771559577837101\n"
"help.text"
msgid "The first character of a paragraph."
-msgstr ""
+msgstr "El primer caràcter d'un paràgraf."
#. DwGtk
#: 02100001.xhp
@@ -8982,7 +8982,7 @@ msgctxt ""
"hd_id3159156\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. AGNBn
#: 02100200.xhp
@@ -14151,7 +14151,7 @@ msgctxt ""
"hd_id3151315\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. ArpMB
#: 04100000.xhp
@@ -14160,7 +14160,7 @@ msgctxt ""
"par_id3152924\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/specialcharacters/fontlb\">Select a font to display the special characters that are associated with it.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/specialcharacters/fontlb\">Seleccioneu un tipus de lletra per mostrar els caràcters especials associats.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/specialcharacters/fontlb\">Seleccioneu un tipus de lletra per a mostrar-ne els caràcters especials.</ahelp>"
#. BMd5F
#: 04100000.xhp
@@ -14848,7 +14848,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. 74PJD
#: 05020100.xhp
@@ -14947,7 +14947,7 @@ msgctxt ""
"hd_id3148686\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. 8uKGv
#: 05020100.xhp
@@ -24413,7 +24413,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. LQWxZ
#: 05090000.xhp
@@ -38564,7 +38564,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Position (List Styles)"
-msgstr ""
+msgstr "Posició (estils de llista)"
#. YCPm7
#: 06050600.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/02.po b/source/ca/helpcontent2/source/text/shared/02.po
index 5cc4282450b..b5143a5dac6 100644
--- a/source/ca/helpcontent2/source/text/shared/02.po
+++ b/source/ca/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: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-13 15:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1551343529.000000\n"
@@ -5038,7 +5038,7 @@ msgctxt ""
"hd_id3146762\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. DjtWR
#: 01170101.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/guide.po b/source/ca/helpcontent2/source/text/shared/guide.po
index 056e4fd9fa6..6c78ebe82f4 100644
--- a/source/ca/helpcontent2/source/text/shared/guide.po
+++ b/source/ca/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/ca/>\n"
"Language: ca\n"
@@ -98,6 +98,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Treballar amb el %PRODUCTNAME\">Treballar amb el <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3527,15 +3536,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Document HTML"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3779,24 +3779,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3806,24 +3788,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portàtil"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portàtil"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3878,24 +3842,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Text"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5165,15 +5111,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5201,15 +5138,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5219,15 +5147,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5237,15 +5156,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5255,24 +5165,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5291,24 +5183,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5318,15 +5192,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5345,15 +5210,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Mapa de bits portàtil"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5390,15 +5246,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5417,15 +5264,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Mapa de grisos portàtil"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5435,33 +5273,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Mapa de grisos portàtil"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portàtil"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portàtil"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portàtil"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5471,15 +5282,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Gràfic de xarxa portàtil"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Mapa de píxels portàtil"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5498,15 +5300,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5516,33 +5309,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5570,15 +5336,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5597,15 +5354,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5615,15 +5363,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Metafitxer del Windows"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5642,15 +5381,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XPM - Mapa de píxels X"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - Mapa de píxels X"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10718,149 +10448,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Eina d'informes d'error"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Eina d'informe d'errors</bookmark_value><bookmark_value>informes;informes d'error</bookmark_value><bookmark_value>informes d'error</bookmark_value><bookmark_value>activació;Eina d'informe d'errors</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Eina d'informe d'errors\">Eina d'informe d'errors</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "L'eina d'informes d'error s'inicia automàticament quan es produeix una fallada del programa."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "L'Eina d'informe d'errors recopila tota la informació necessària que pot ajudar els desenvolupadors del programa a millorar el codi, per tal que en versions posteriors, aquest error es pugui evitar. Ajudeu-nos a millorar el programari i envieu l'informe d'error generat."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Inici de l'eina d'informes d'error"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "La majoria de vegades que es produeixi una fallada del programa, l'eina d'informes d'error s'iniciarà automàticament."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Com completar l'informe"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Al diàleg principal de l'Eina d'informe d'errors, podeu introduir informació addicional que pot ser d'ajuda per als desenvolupadors per localitzar l'error. Per exemple, si l'error només apareix després de fer canvis al vostre entorn de maquinari o de programari, o si heu fet clic a un botó, incloeu aquesta informació."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Enviament de l'informe d'error"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "L'Eina d'informe d'errors utilitza el protocol HTTP PUT / SOAP per enviar les dades de l'informe. Opcionalment, podeu introduir text descriptiu que ens ajudarà a identificar el context de l'error del programa. A continuació, feu clic al botó <emph>Envia</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "No rebreu cap resposta al vostre informe d'error. Si necessiteu ajuda, visiteu el <link href=\"text/shared/main0108.xhp\">fòrum d'ajuda</link> a Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Quines dades s'envien?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "L'informe d'error consta de diferents fitxers. El fitxer principal conté informació sobre el tipus d'error, el nom del sistema operatiu i la versió, l'ús de memòria i la descripció que heu introduït. Podeu fer clic al botó <emph>Mostra l'informe</emph> al diàleg principal de l'Eina d'informe d'errors per veure què s'enviarà al fitxer principal."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "A més, els continguts importants de la memòria i les traces de pila es generaran amb eines estàndard (\"dbhhelp.dll\" en sistemes Windows, \"'pstack\" a UNIX). Aquesta informació també s'enviarà."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22076,32 +21797,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Recordeu-vos de crear una tasca d'impressió diferent per a cada fax; si no ho feu, el primer destinatari rebrà tots els faxos. En el diàleg <emph>Eines - Combinació de correu</emph>, seleccioneu l'opció <emph>Impressora</emph> i activeu la casella de selecció <emph>Crea tasques d'impressió individuals</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Modificació de les plantilles per defecte"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modificació, vegeu canvi</bookmark_value><bookmark_value>canvi, vegeu també edició i reemplaçament</bookmark_value><bookmark_value>plantilles per defecte; canvi</bookmark_value><bookmark_value>valors per defecte;documents</bookmark_value><bookmark_value>plantilles personalitzades</bookmark_value><bookmark_value>actualització; plantilles</bookmark_value><bookmark_value>edició;plantilles</bookmark_value><bookmark_value>plantilles;edició i desament</bookmark_value><bookmark_value>desament;plantilles</bookmark_value><bookmark_value>reinici;plantilles</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Modificació de les plantilles per defecte\">Modificació de les plantilles per defecte</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22112,112 +21833,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Quan obriu un document nou a través del menú <emph>Fitxer ▸ Nou</emph>, apareix un document buit basat en una plantilla del $[officename]. Podeu editar la plantilla, modificar-la o reemplaçar-la perquè el document nou contingui els vostres estils personalitzats o altres continguts."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modificació de les plantilles per defecte"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Primer, obriu una plantilla del $[officename] existent i modifiqueu-la, o bé obriu un document nou i editeu-lo per a crear la plantilla que vulgueu."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Podeu definir una plantilla de document per a cada mòdul del $[officename]. A la secció següent es descriu el procediment que heu de seguir per als documents de text."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Trieu <emph>Fitxer ▸ Nou ▸ Plantilles</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
msgstr ""
-#. GuEWL
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Ús de plantilles personalitzades"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. Quf5G
+#. 3w93A
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id51605476162735\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Les plantilles personalitzades us facilitaran la tasca de diverses maneres."
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. S8XFP
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Plantilles a la carpeta de plantilles"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -22767,7 +22614,7 @@ msgctxt ""
"par_id491571706970241\n"
"help.text"
msgid "Parameter"
-msgstr ""
+msgstr "Paràmetre"
#. fg9oE
#: start_parameters.xhp
@@ -22776,7 +22623,7 @@ msgctxt ""
"par_id11571706970242\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significat"
#. iAEUa
#: start_parameters.xhp
@@ -24254,13 +24101,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/ca/helpcontent2/source/text/shared/optionen.po b/source/ca/helpcontent2/source/text/shared/optionen.po
index b4217ca26b1..3a747de79ee 100644
--- a/source/ca/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-20 06:55+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ca/>\n"
"Language: ca\n"
@@ -3246,7 +3246,7 @@ msgctxt ""
"hd_id3154218\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. rDEAP
#: 01010700.xhp
@@ -3428,13 +3428,13 @@ msgctxt ""
msgid "View"
msgstr "Visualització"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3455,58 +3455,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Permet configurar paràmetres relatius a la visualització."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Interfície de l'usuari"
+msgid "Icon style"
+msgstr "Estil de les icones"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Mida de les icones de la barra d'eines"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Especifica la mida de visualització de les icones de la barra d'eines.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> L'opció <emph>Automàtic</emph> utilitza els paràmetres de mida de tipus de lletra del vostre sistema operatiu per als menús.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Mida de les icones de la barra lateral"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3518,50 +3518,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Estil de les icones"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Suavitza el tipus de lletra a la pantalla"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Seleccioneu aquesta opció per a suavitzar l'aparença en pantalla del text.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">Introduïu la mida del tipus de lletra més petit que cal suavitzar.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Mostra icones al costat dels elements de menú corresponents. Trieu entre «Automàtic», «Amaga» y «Mostra». L'opció «Automàtic» mostra les icones en funció dels paràmetres o del tema del sistema.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3572,14 +3590,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Ratolí"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Posicionament del ratolí"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3590,14 +3608,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Especifica si la busca del ratolí es col·locarà en els diàlegs que s'acaben d'obrir i com ho farà.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Botó central del ratolí"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3734,23 +3752,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "L'última selecció marcada és el contingut del porta-retalls de la selecció."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Sortida de gràfics"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Premeu Maj+Ctrl+R per restaurar o actualitzar la visualització del document actual.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Premeu Maj+Ctrl+R per restaurar o actualitzar la visualització del document actual.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3788,68 +3806,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\".\">Si és compatible, podeu habilitar i inhabilitar el suavitzat dels gràfics. Quan el suavitzat està activat, la majoria d'objectes tenen una aparença més suau i amb menys artefactes.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Usa l'OpenGL per a totes les renderitzacions (en reiniciar)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Força l'OpenGL fins i tot si és a la llista negra (en reiniciar)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Força l'ús de l'OpenGL fins i tot si el dispositiu gràfic és a la llista negra.</ahelp> S'inclou un dispositiu a la llista negra si és defectuós o si produeix gràfics de baixa qualitat."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menú"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Icones als menús"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Mostra icones al costat dels elements de menú corresponents. Trieu entre «Automàtic», «Amaga» y «Mostra». L'opció «Automàtic» mostra les icones en funció dels paràmetres o del tema del sistema.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3878,6 +3887,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Mostra els noms dels tipus de lletra que es poden seleccionar en el tipus de lletra corresponent, com ara els tipus de lletra del quadre Tipus de lletra que hi ha a la barra <emph>Formatació</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Suavitza el tipus de lletra a la pantalla"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Seleccioneu aquesta opció per a suavitzar l'aparença en pantalla del text.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">Introduïu la mida del tipus de lletra més petit que cal suavitzar.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/smath/01.po b/source/ca/helpcontent2/source/text/smath/01.po
index 79fd4631405..5115d85122b 100644
--- a/source/ca/helpcontent2/source/text/smath/01.po
+++ b/source/ca/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-09-30 15:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1550235258.000000\n"
@@ -12138,7 +12138,7 @@ msgctxt ""
"hd_id3149124\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. gGKuA
#: 05010100.xhp
@@ -13551,7 +13551,7 @@ msgctxt ""
"hd_id3153736\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. 9QKQ9
#: 06010100.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter/01.po b/source/ca/helpcontent2/source/text/swriter/01.po
index 78a2653adc0..4e9f88288fa 100644
--- a/source/ca/helpcontent2/source/text/swriter/01.po
+++ b/source/ca/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-04 00:16+0000\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1561340858.000000\n"
@@ -14100,7 +14100,7 @@ msgctxt ""
"par_id461599005949276\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significat"
#. e7Npc
#: 04120250.xhp
@@ -14109,7 +14109,7 @@ msgctxt ""
"par_id291599005949278\n"
"help.text"
msgid "Search term"
-msgstr ""
+msgstr "Terme de cerca"
#. zFwbQ
#: 04120250.xhp
@@ -16711,7 +16711,7 @@ msgctxt ""
"hd_id931604684769944\n"
"help.text"
msgid "Width"
-msgstr ""
+msgstr "Amplada"
#. H2vfk
#: 05040500.xhp
@@ -23540,7 +23540,7 @@ msgctxt ""
"hd_id3150350\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. gkUvB
#: 05150101.xhp
@@ -31109,7 +31109,7 @@ msgctxt ""
"hd_id171516900315575\n"
"help.text"
msgid "Font"
-msgstr "Tipus de lletra"
+msgstr "Lletra tipogràfica"
#. A95AE
#: watermark.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter/guide.po b/source/ca/helpcontent2/source/text/swriter/guide.po
index 24f9bf2de9f..216e88ae9d5 100644
--- a/source/ca/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/ca/>\n"
@@ -12521,13 +12521,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12566,13 +12566,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12593,58 +12593,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12674,13 +12656,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16933,14 +16915,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Si no ho especifiqueu altrament, tots els nous documents de text del $[officename] es basaran en la plantilla per defecte."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "El $[officename] disposa d'una sèrie de <link href=\"text/swriter/01/05130000.xhp\" name=\"plantilles predefinides\">plantilles predefinides</link> que podeu utilitzar per a crear diferents tipus de documents de text, com ara cartes comercials."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17293,14 +17275,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Per a configurar el comportament del cursor directe, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME Writer ▸ Ajudes a la formatació</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "A la barra <item type=\"menuitem\">Eines</item>, feu clic a la icona <item type=\"menuitem\">Cursor directe</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icona</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17311,32 +17293,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Feu clic a un espai lliure del document de text. La busca del ratolí canviarà per reflectir l'alineació que s'aplicarà al text que escriviu:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icona</alt></image> Alinea a l'esquerra"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icona</alt></image> Centrat"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icona</alt></image> Alinea a la dreta"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
index f98e1c9537f..d2ed7cd4e4b 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-20 14:48+0000\n"
"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562301193.000000\n"
#. W5ukN
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "A~maga la diapositiva"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~xt..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Fitxer"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~Alinea"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~Alinea"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Selecciona fins a la fi del paràgraf"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Selecciona fins a la dreta de la paraula"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ca/sc/messages.po b/source/ca/sc/messages.po
index cf1da164bfc..d2cd0d9c892 100644
--- a/source/ca/sc/messages.po
+++ b/source/ca/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-18 15:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-28 00:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/ca/>\n"
"Language: ca\n"
@@ -9642,7 +9642,7 @@ msgstr "Final de l'interval del valor on s'han de sumar les probabilitats."
#: sc/inc/scfuncs.hrc:2117
msgctxt "SC_OPCODE_B"
msgid "Returns the probability of a trial result using binomial distribution."
-msgstr "Retorna la probabilitat del resultat d'una avaluació amb una distribució binomial."
+msgstr "Retorna la probabilitat del resultat d'una avaluació amb una distribució binòmica."
#. DuCGC
#: sc/inc/scfuncs.hrc:2118
@@ -9768,7 +9768,7 @@ msgstr "Valor que s'ha de retornar a transformar."
#: sc/inc/scfuncs.hrc:2163
msgctxt "SC_OPCODE_BINOM_DIST"
msgid "Values of the binomial distribution."
-msgstr "Valors de la distribució binomial."
+msgstr "Valors de la distribució binòmica."
#. 35XRK
#: sc/inc/scfuncs.hrc:2164
@@ -9822,7 +9822,7 @@ msgstr "Acumulat. C=0 calcula la probabilitat individual; C=1, la probabilitat a
#: sc/inc/scfuncs.hrc:2177
msgctxt "SC_OPCODE_BINOM_DIST_MS"
msgid "Values of the binomial distribution."
-msgstr "Valors de la distribució binomial."
+msgstr "Valors de la distribució binòmica."
#. BrSwp
#: sc/inc/scfuncs.hrc:2178
@@ -9876,7 +9876,7 @@ msgstr "Acumulat. C=0 calcula la probabilitat individual; C=1, la probabilitat a
#: sc/inc/scfuncs.hrc:2191
msgctxt "SC_OPCODE_NEG_BINOM_VERT"
msgid "Values of the negative binomial distribution."
-msgstr "Valors de la distribució binomial negativa."
+msgstr "Valors de la distribució binòmica negativa."
#. tUTgu
#: sc/inc/scfuncs.hrc:2192
@@ -9918,7 +9918,7 @@ msgstr "La probabilitat d'èxit d'una avaluació."
#: sc/inc/scfuncs.hrc:2203
msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
msgid "Values of the negative binomial distribution."
-msgstr "Valors de la distribució binomial negativa."
+msgstr "Valors de la distribució binòmica negativa."
#. kcgW7
#: sc/inc/scfuncs.hrc:2204
@@ -9972,7 +9972,7 @@ msgstr "0 o FALS calcula la funció de densitat de probabilitat. Qualsevol altre
#: sc/inc/scfuncs.hrc:2217
msgctxt "SC_OPCODE_CRIT_BINOM"
msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."
-msgstr "Retorna el valor més petit la distribució binomial acumulada del qual és major o igual que un valor de criteri."
+msgstr "Retorna el valor més petit la distribució binòmica acumulada del qual és major o igual que un valor de criteri."
#. RNvff
#: sc/inc/scfuncs.hrc:2218
@@ -10014,7 +10014,7 @@ msgstr "La probabilitat llindar que s'aconsegueix o se supera."
#: sc/inc/scfuncs.hrc:2229
msgctxt "SC_OPCODE_BINOM_INV"
msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."
-msgstr "Retorna el valor més petit la distribució binomial acumulada del qual és més gran o igual que un valor de criteri."
+msgstr "Retorna el valor més petit la distribució binòmica acumulada del qual és més gran o igual que un valor de criteri."
#. 5HwPz
#: sc/inc/scfuncs.hrc:2230
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "~Fitxer"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Permet indicar les vores de les cel·les seleccionades."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Augmenta el sagnat"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Redueix el sagnat"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inici"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Camp"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alineació d'objectes"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposició"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Disposició"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "E_stadístiques"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dades"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dades"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisa"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisa"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualitza"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converteix"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objecte"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimeix"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimeix"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -29627,338 +29627,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solucionador"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_pcions..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Soluciona"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Cel·la objectiu"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimitza el resultat a"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Canviant les cel·les"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Mí_nim"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Màxim"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Valor de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Referència de la _cel·la"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operador"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_alor"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Referència de la cel·la"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Referència de cel·la"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Referència de la cel·la"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Referència de la cel·la"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Enter"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binari"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operador"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Enter"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binari"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operador"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Enter"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binari"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operador"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Enter"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binari"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operador"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valor"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valor"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valor"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valor"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Suprimeix"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Suprimeix"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Suprimeix"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Suprimeix"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Condicions límit"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ca/sd/messages.po b/source/ca/sd/messages.po
index d3a3d656fa6..727ce3f756c 100644
--- a/source/ca/sd/messages.po
+++ b/source/ca/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-20 07:13+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-25 12:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562916317.000000\n"
#. WDjkB
@@ -3819,116 +3819,116 @@ msgstr "~Taula"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converteix"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objecte"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo_rmulari"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Mestra"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Mestra"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menú"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensió"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -5705,7 +5699,7 @@ msgstr "Alinea les imatges de la seqüència d'animació."
#: sd/uiconfig/simpress/ui/dockinganimation.ui:410
msgctxt "dockinganimation|label1"
msgid "Animation Group"
-msgstr "Grup d’animació"
+msgstr "Grup d'animació"
#. Bu3De
#: sd/uiconfig/simpress/ui/dockinganimation.ui:454
@@ -6573,219 +6567,219 @@ msgid "~File"
msgstr "~Fitxer"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inici"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Camp"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Disposició"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposició"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Presentació de diapositives"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Presentació de diapositives"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisa"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisió"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualització"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converteix"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objecte"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Mestra"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Mestra"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Visualització"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Es~quema"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -7695,12 +7689,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Edita el contorn"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensió"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ca/sfx2/messages.po b/source/ca/sfx2/messages.po
index e770fcecdb5..6090479df85 100644
--- a/source/ca/sfx2/messages.po
+++ b/source/ca/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-20 14:48+0000\n"
+"PO-Revision-Date: 2020-12-03 21:40+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559651981.000000\n"
#. bHbFE
@@ -4132,37 +4132,37 @@ msgstr "Suprimeix..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Acobla"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Desacobla"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Tanca la barra lateral"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Personalització"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Restaura els valors per defecte"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Configuració de la barra lateral"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
@@ -4288,7 +4288,7 @@ msgstr "_Extensions"
#: sfx2/uiconfig/ui/templatedlg.ui:371
msgctxt "templatedlg|online_link|tooltip_text"
msgid "Add more templates via extension"
-msgstr "Afegir més plantilles mitjançant l'extensió"
+msgstr "Afegeix més plantilles mitjançant una extensió"
#. PXRa3
#: sfx2/uiconfig/ui/templatedlg.ui:386
diff --git a/source/ca/starmath/messages.po b/source/ca/starmath/messages.po
index eb223e36612..2db7e9ede67 100644
--- a/source/ca/starmath/messages.po
+++ b/source/ca/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-20 07:13+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/ca/>\n"
"Language: ca\n"
@@ -1401,7 +1401,7 @@ msgstr "Color vermell"
#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr "Color aiguamarina"
+msgstr "Color aigua"
#. 6zGQ2
#: starmath/inc/strings.hrc:196
@@ -2189,11 +2189,11 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Teorema fonamental del càlcul"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
-msgstr "Equació del caos"
+msgstr ""
#. afEQ8
#: starmath/inc/strings.hrc:329
@@ -2265,7 +2265,7 @@ msgstr "vermell"
#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr "aiguamarina"
+msgstr "aigua"
#. GLy7q
#: starmath/inc/strings.hrc:342
@@ -2481,7 +2481,7 @@ msgstr "ERROR: "
#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
-msgstr "Caràcter no esperat"
+msgstr "Caràcter inesperat"
#. CgyFQ
#: starmath/inc/strings.hrc:378
diff --git a/source/ca/svx/messages.po b/source/ca/svx/messages.po
index 96e664ed8e6..ab14e4f170c 100644
--- a/source/ca/svx/messages.po
+++ b/source/ca/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-09 15:36+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ca/>\n"
"Language: ca\n"
@@ -584,13 +584,13 @@ msgstr "EMF"
#: include/svx/strings.hrc:119
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#. tc3Jb
#: include/svx/strings.hrc:120
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
-msgstr ""
+msgstr "PDF"
#. b3os5
#: include/svx/strings.hrc:121
@@ -7231,10 +7231,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Ajusta la dispositiva a la finestra actual."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "No s'han pogut carregar tots els objectes SmartArt. Aquest problema s'evita si deseu en format del Microsoft Office 2010 o posterior."
#. Bc5Sg
@@ -10512,7 +10512,7 @@ msgstr "Camp fo~rmatat"
#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
-msgstr ""
+msgstr "Barra de desplaçament"
#. cGxjA
#: svx/inc/formnavi.hrc:47
@@ -13960,17 +13960,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barra de navegació"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"L'informe d'errors s'ha pujat correctament.\n"
-"Podreu trobar-lo aviat a:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13996,11 +13993,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Envia l'informe d'errada"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_No ho enviïs"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/ca/sw/messages.po b/source/ca/sw/messages.po
index 793444040ad..3ad4fea9335 100644
--- a/source/ca/sw/messages.po
+++ b/source/ca/sw/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-20 14:48+0000\n"
-"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -100,11 +100,11 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr "Manté ordenats els nivells d'encapçalament. El nivell d'encapçalament %LEVEL_CURRENT% no ha d'anar després de %LEVEL_PREV%."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr "Eviteu fontwork als vostres documents. Assegureu-vos que el feu servir per mostrar un exemple o un text no especialment significatiu."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr ""
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -627,7 +627,7 @@ msgstr "Format directe dels paràgrafs"
#: sw/inc/inspectorproperties.hrc:35
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Color"
-msgstr "Formata els noms"
+msgstr "Color"
#. 5Btdu
#: sw/inc/inspectorproperties.hrc:36
@@ -5786,13 +5786,13 @@ msgstr "Activa o desactiva"
#: sw/inc/strings.hrc:652
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
-msgstr ""
+msgstr "Mostra-ho tot"
#. ZUuCQ
#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
-msgstr ""
+msgstr "Amaga-ho tot"
#. 9Fipd
#: sw/inc/strings.hrc:655
@@ -20378,181 +20378,181 @@ msgid "~File"
msgstr "~Fitxer"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inici"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposició"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposició"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Referències"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referèncie~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisió"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisió"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualització"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objecte"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimeix"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimeix"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -21590,12 +21590,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Edita el contorn"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensió"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/ckb/cui/messages.po b/source/ckb/cui/messages.po
index 3474c4768d5..8a3b37e0a85 100644
--- a/source/ckb/cui/messages.po
+++ b/source/ckb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-17 07:35+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/ckb/>\n"
@@ -20867,60 +20867,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po
index b5efd68a3f1..4bed99dba94 100644
--- a/source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-04 14:35+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ckb/>\n"
@@ -8025,15 +8025,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~سڵاید بشارەوە"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "دە~ق…"
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~پەڕگە"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ڕێک~کردن"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ڕێک~کردن"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,14 +31098,14 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "دیاریبکە بۆ کۆتایهێنانی بەند"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
+msgid "Select to End of Word"
msgstr ""
#. bpBoC
diff --git a/source/ckb/sc/messages.po b/source/ckb/sc/messages.po
index 40a1a9498b5..e9b80598e38 100644
--- a/source/ckb/sc/messages.po
+++ b/source/ckb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-02 07:43+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/ckb/>\n"
@@ -24495,213 +24495,213 @@ msgid "~File"
msgstr "~پەڕگە"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "قەراخی خانەی دیاریکراو هەڵبژێرە."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "بۆشایی زیادبکە"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "بۆشایی کەم بکە"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ماڵەوە"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ماڵەوە"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "خان_ە"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_هێنان"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~هێنان"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "ڕێککردنی تەن"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_کڵێشە"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~کڵێشە"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_ئامارەکان"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_زانیاری"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~دراو"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_پێداچوونەوە"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~پێداچوونەوە"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_بینین"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~پیشاندان"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "وێ_نە"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "وێ~نە"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_کێشان"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~کێشان"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "گۆڕین"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_تەن"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~تەن"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_میدیا"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~میدیا"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_چاپکردن"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~چاپکردن"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "فۆ_رم"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "فۆ~رم"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "زیاد_کراو"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "زیادکر~او"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_ئامرازەکان"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~ئامرازەکان"
@@ -29530,338 +29530,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "چارەسەرکەر"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "هەڵب_ژاردەکان…"
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_چارەسەرکردن"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_خانەی بەئامانج کراو"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_بەپێی گۆڕینی خانەکان"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "نزم_ترین"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_بەرزترین"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_نرخی"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_ژێدەری خانە"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_کارپێکەر"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "ن_رخ"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "ژێدەری خانە"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "ژێدەری خانە"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "ژێدەری خانە"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "ژێدەری خانە"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "ژمارەی تەواو"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "دووانەیی"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "کارپێکەر"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "ژمارەی تەواو"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "دووانەیی"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "کارپێکەر"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "ژمارەی تەواو"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "دووانەیی"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "کارپێکەر"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "ژمارەی تەواو"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "دووانەیی"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "کارپێکەر"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "نرخ"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "نرخ"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "نرخ"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "نرخ"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "سڕینەوە"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "سڕینەوە"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "سڕینەوە"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "سڕینەوە"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "سنووردارکردنی مەرجەکان"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ckb/sd/messages.po b/source/ckb/sd/messages.po
index afa67d227cb..dd3a6c3914b 100644
--- a/source/ckb/sd/messages.po
+++ b/source/ckb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-12 10:34+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/ckb/>\n"
@@ -3806,116 +3806,116 @@ msgstr "~خشتە"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "گۆڕین"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "وێ_نە"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "وێ~نە"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_کێشان"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~کێشان"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_تەن"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~تەن"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_میدیا"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~میدیا"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "فۆ_رم"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "فۆ~رم"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "‫3_D"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "‫3~D"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_سەرەکی"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~سەرەکی"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "زیاد_کراو"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "زیادکر~او"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_ئامرازەکان"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~ئامرازەکان"
@@ -4319,12 +4319,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_پێڕست"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "زیاد_کراو"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6556,219 +6550,219 @@ msgid "~File"
msgstr "~پەڕگە"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ماڵەوە"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ماڵەوە"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "خان_ە"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_هێنان"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~هێنان"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_کڵێشە"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~کڵێشە"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_پێشاندانی سڵاید"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "سڵاید ~پیشان بدە"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_پێداچوونەوە"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~پێداچوونەوە"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_بینین"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~پیشاندان"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_خشتە"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~خشتە"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "گۆڕین"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "وێ_نە"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "وێ~نە"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_کێشان"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~کێشان"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_تەن"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~تەن"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_میدیا"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~میدیا"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "فۆ_رم"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "فۆ~رم"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_سەرەکی"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~سەرەکی"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_بینین"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "چێوەی دەرەوە"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "‫3_D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "‫3~D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "زیاد_کراو"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "زیادکر~او"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_ئامرازەکان"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~ئامرازەکان"
@@ -7678,12 +7672,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "زیاد_کراو"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ckb/starmath/messages.po b/source/ckb/starmath/messages.po
index 8f0ff566c2c..7853b17ec0a 100644
--- a/source/ckb/starmath/messages.po
+++ b/source/ckb/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-24 04:35+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/ckb/>\n"
@@ -2188,9 +2188,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ckb/svx/messages.po b/source/ckb/svx/messages.po
index ccb02c7b5bd..a0947f40b29 100644
--- a/source/ckb/svx/messages.po
+++ b/source/ckb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-04 14:35+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ckb/>\n"
@@ -7217,10 +7217,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -13937,13 +13937,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "شریتی ڕێدۆزی"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -13967,10 +13967,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/ckb/sw/messages.po b/source/ckb/sw/messages.po
index 91befd10fbe..496fb46578f 100644
--- a/source/ckb/sw/messages.po
+++ b/source/ckb/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: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 13:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-08 13:38+0100\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ckb/>\n"
"Language: ckb\n"
@@ -99,10 +99,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20334,181 +20334,181 @@ msgid "~File"
msgstr "~پەڕگە"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ماڵەوە"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ماڵەوە"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_هێنان"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~هێنان"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_کڵێشە"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~کڵێشە"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "ژێ_دەر"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "ژێ~دەر"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_پێداچوونەوە"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~پێداچوونەوە"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_بینین"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~پیشاندان"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_خشتە"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~خشتە"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "وێ_نە"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "وێ~نە"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_کێشان"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~کێشان"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_تەن"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~تەن"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_میدیا"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~میدیا"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_چاپکردن"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~چاپکردن"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "فۆ_رم"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "فۆ~رم"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "زیاد_کراو"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "زیادکر_او"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_ئامرازەکان"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~ئامرازەکان"
@@ -21546,12 +21546,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "زیاد_کراو"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/cs/cui/messages.po b/source/cs/cui/messages.po
index 24f3367ad89..d39f6ca65a8 100644
--- a/source/cs/cui/messages.po
+++ b/source/cs/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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565905500.000000\n"
#. GyY9M
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Vyberte upřednostňované uživatelské rozhraní"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Standardní nástrojové lišty"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Jediná nástrojová lišta"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Postranní lišta"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "Karty"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "Kompaktní karty"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Kompaktní skupiny"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Skupiny"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Kompaktní skupiny"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Kontextová lišta"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Kontextové skupiny"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Jediná nástrojová lišta"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Postranní lišta"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared.po b/source/cs/helpcontent2/source/text/sbasic/shared.po
index f951d7c9706..7eae83af172 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/cs/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542486017.000000\n"
#. yzYVt
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Příkaz MkDir\">Příkaz MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Vytvoří na datovém médiu nový adresář."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
+msgid "Creates a new directory on a data medium."
+msgstr "Vytvoří na datovém médiu nový adresář."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Řetězec určující název a cestu nového adresáře. Také je možné použít <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notaci\">URL notaci</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Pokud není určena cesta, adresář se vytvoří v aktuálním adresáři."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Příklad:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Odstraní stávající adresář z datového média."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Pokud není určena cesta, příkaz <emph>RmDir</emph> hledá určený adresář v aktuálním adresáři. Pokud zde není nalezen, zobrazí se chybová zpráva."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Příklad:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Zastaví provádění programu Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Příklad:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Příkaz With\">Příkaz With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Nastaví objekt jako výchozí objekt. Pokud není určen jiný název objektu, všechny vlastnosti a metody se odkazují k výchozímu objektu, dokud program nedosáhne příkaz End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "<emph>With</emph> a <emph>End With</emph> použijte, pokud máte pro jeden objekt několik vlastností nebo metod."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Zahraje tón na reproduktoru počítače. Tón závisí na systému. Není možné upravit jeho hlasitost nebo výšku."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Příklad:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/cs/helpcontent2/source/text/scalc/00.po b/source/cs/helpcontent2/source/text/scalc/00.po
index 28eb6b956f6..40de2944186 100644
--- a/source/cs/helpcontent2/source/text/scalc/00.po
+++ b/source/cs/helpcontent2/source/text/scalc/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-18 18:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/cs/>\n"
"Language: cs\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Zvolte <item type=\"menuitem\">Zobrazit - Rozdělit okno</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Zvolte <item type=\"menuitem\">Zobrazit - Ukotvit buňky - Ukotvit řádky a sloupce</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr "<variable id=\"fefix\">Zvolte <item type=\"menuitem\">Zobrazit - Ukotvit řádky a sloupce</item>.</variable>"
#. BkQfX
#: 00000412.xhp
diff --git a/source/cs/helpcontent2/source/text/scalc/guide.po b/source/cs/helpcontent2/source/text/scalc/guide.po
index 0e01788ea10..e77dccd4bb4 100644
--- a/source/cs/helpcontent2/source/text/scalc/guide.po
+++ b/source/cs/helpcontent2/source/text/scalc/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: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-11-13 12:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/cs/>\n"
"Language: cs\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Vodorovného a zároveň svislého ukotvení dosáhnete tím, že vyberete <emph>buňku</emph> ležící pod řádkem a napravo od sloupce, které chcete ukotvit."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr "Zvolte <item type=\"menuitem\">Zobrazit - Ukotvit řádky a sloupce</item>."
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr "Ukotvení zrušíte opětovným výběrem <item type=\"menuitem\">Zobrazit - Ukotvit řádky a sloupce</item>."
#. U7GBK
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Chcete-li určitý řádek vytisknout na každé stránce, vyberte <item type=\"menuitem\">Formát - Oblasti tisku - Upravit</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Zobrazit - Ukotvit řádky a sloupce</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Zobrazit - Ukotvit řádky a sloupce\">Zobrazit - Ukotvit řádky a sloupce</link>"
#. RbKLt
#: line_fix.xhp
diff --git a/source/cs/helpcontent2/source/text/sdraw/01.po b/source/cs/helpcontent2/source/text/sdraw/01.po
index 6e44092d0e1..b704ae5ee6c 100644
--- a/source/cs/helpcontent2/source/text/sdraw/01.po
+++ b/source/cs/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-28 09:30+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/cs/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Určí orientaci stránky, okraje, pozadí a další možnosti rozvržení.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Změna pozadí všech stránek v aktivním souboru - vyberte pozadí, potvrďte klepnutím na <emph>OK</emph> a klepněte na <emph>Ano</emph> v dialogu <emph>Nastavení stránky</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/00.po b/source/cs/helpcontent2/source/text/shared/00.po
index 1de29117992..aa0eb713b44 100644
--- a/source/cs/helpcontent2/source/text/shared/00.po
+++ b/source/cs/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-18 18:36+0000\n"
+"PO-Revision-Date: 2020-11-26 21:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1547112717.000000\n"
#. 3B8ZN
@@ -2120,7 +2120,7 @@ msgctxt ""
"par_id3151176\n"
"help.text"
msgid "Enable CTL support using <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>."
-msgstr ""
+msgstr "Podporu CTL povolíte pomocí <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Předvolby</emph></caseinline><defaultinline><emph>Nástroje - Možnosti</emph></defaultinline></switchinline><emph> - Jazyková nastavení - Jazyky</emph>."
#. AP8vJ
#: 00000005.xhp
@@ -2192,7 +2192,7 @@ msgctxt ""
"par_id3147287\n"
"help.text"
msgid "You can remove direct formatting from your document by selecting the entire text with the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode> and then choosing <menuitem>Format - Clear Direct Formatting</menuitem>."
-msgstr ""
+msgstr "Přímé formátování je možné z dokumentu odstranit tak, že vyberete celý text klávesovou zkratkou <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A a poté zvolíte <menuitem>Formát - Vymazat přímé formátování</menuitem>."
#. aUcVk
#: 00000005.xhp
@@ -2228,7 +2228,7 @@ msgctxt ""
"par_id3147233\n"
"help.text"
msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key.</variable>"
-msgstr ""
+msgstr "<variable id=\"andock2\">Pro uvolnění a ukotvení podržte klávesu <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> a poklepejte na prázdnou oblast v okně. V okně Styly můžete také poklepat na šedou část okna vedle ikon při současném stisku klávesy<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>.</variable>"
#. MCMsr
#: 00000005.xhp
@@ -2408,7 +2408,7 @@ msgctxt ""
"par_id3150092\n"
"help.text"
msgid "The <menuitem>Links to External Files</menuitem> command is found in the <menuitem>Edit</menuitem> menu. The command can only be activated when at least one link is contained in the current document. When you insert a picture, for example, you can either insert the picture directly into the document or insert the picture as a link."
-msgstr ""
+msgstr "Nabídka <menuitem>Úpravy</menuitem> obsahuje příkaz <menuitem>Odkazy</menuitem>, který je aktivní, pouze je-li v aktuálním dokumentu obsažen alespoň jeden odkaz. Jestliže chcete vložit objekt, například obrázek, je možné jej kopírovat přímo do dokumentu nebo vložit jako odkaz."
#. ePu6N
#: 00000005.xhp
@@ -2435,7 +2435,7 @@ msgctxt ""
"par_id3153334\n"
"help.text"
msgid "Use <menuitem>Edit - Links to External Files</menuitem> to see which files are inserted as links. The links can be removed if required. This will break the link and insert the object directly."
-msgstr ""
+msgstr "Chcete-li zobrazit soubory propojené s dokumentem, zvolte <menuitem>Úpravy - Odkazy</menuitem>. Odkazy je možné podle potřeby odebrat a objekt vložit přímo."
#. 6TLPo
#: 00000005.xhp
@@ -2525,7 +2525,7 @@ msgctxt ""
"par_id3153956\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The 32bit ODBC functions required here can be installed on your system at any time with the help of the setup program supplied with your database. You can then amend the properties through the Control Panel.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Potřebné 32bitové ODBC funkce je možné nainstalovat kdykoliv. Postačí instalační program dodaný s databází. Poté je možné upravit vlastnosti pomocí Ovládacích panelů.</caseinline></switchinline>"
#. fEdsV
#: 00000005.xhp
@@ -2678,7 +2678,7 @@ msgctxt ""
"hd_id551604189872115\n"
"help.text"
msgid "Page line-spacing (register-true)"
-msgstr ""
+msgstr "Řádkování stránky (řádkový rejstřík)"
#. yspD9
#: 00000005.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/01.po b/source/cs/helpcontent2/source/text/shared/01.po
index 1fcbb0cbee3..c12e5b64b1a 100644
--- a/source/cs/helpcontent2/source/text/shared/01.po
+++ b/source/cs/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-18 18:36+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/cs/>\n"
"Language: cs\n"
@@ -1949,7 +1949,7 @@ msgctxt ""
"par_id3150713\n"
"help.text"
msgid "If the file that you want to open contains styles, <link href=\"text/shared/01/01020000.xhp#templates\" name=\"special rules\">special rules</link> apply."
-msgstr ""
+msgstr "Pokud soubor, který chcete otevřít, obsahuje styly, platí <link href=\"text/shared/01/01020000.xhp#templates\" name=\"speciální pravidla\">speciální pravidla</link>."
#. CCRFi
#: 01020000.xhp
@@ -2552,7 +2552,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "The <emph>Close</emph> command closes all open windows of the current document."
-msgstr ""
+msgstr "Příkaz <emph>Zavřít</emph> zavře všechna otevřená okna aktuálního dokumentu."
#. jSMdE
#: 01050000.xhp
@@ -3173,7 +3173,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Vlastnosti"
#. CNQGc
#: 01100000.xhp
@@ -3182,7 +3182,7 @@ msgctxt ""
"hd_id3152876\n"
"help.text"
msgid "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Document Properties\">Properties</link></variable>"
-msgstr ""
+msgstr "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Vlastnosti dokumentu\">Vlastnosti</link></variable>"
#. W4uvS
#: 01100000.xhp
@@ -3218,7 +3218,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Description (File Properties)"
-msgstr ""
+msgstr "Popis (vlastnosti souboru)"
#. LaoBx
#: 01100100.xhp
@@ -3317,7 +3317,7 @@ msgctxt ""
"par_id581602083308804\n"
"help.text"
msgid "<emph>Title</emph>, <emph>Subject</emph>, and <emph>Keywords</emph> are exported to PDF files as PDF Document Properties. Entered values are exported and will appear in the corresponding fields in the PDF Document Properties Description."
-msgstr ""
+msgstr "<emph>Název</emph>, <emph>Předmět</emph> a <emph>Klíčová slova</emph> se do souborů PDF exportují jako vlastnosti dokumentu PDF. Zadané hodnoty se zobrazí v příslušných polích v popisu ve vlastnostech dokumentu PDF."
#. 63szi
#: 01100200.xhp
@@ -3326,7 +3326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "General (File properties)"
-msgstr ""
+msgstr "Obecné (vlastnosti souboru)"
#. 2UBSe
#: 01100200.xhp
@@ -3380,7 +3380,7 @@ msgctxt ""
"hd_id3156136\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Typ"
#. dfTZu
#: 01100200.xhp
@@ -3398,7 +3398,7 @@ msgctxt ""
"hd_id3145314\n"
"help.text"
msgid "Location"
-msgstr ""
+msgstr "Umístění"
#. sqRnK
#: 01100200.xhp
@@ -3416,7 +3416,7 @@ msgctxt ""
"hd_id3155892\n"
"help.text"
msgid "Size"
-msgstr ""
+msgstr "Velikost"
#. b5fx8
#: 01100200.xhp
@@ -3434,7 +3434,7 @@ msgctxt ""
"hd_id3149178\n"
"help.text"
msgid "Created"
-msgstr ""
+msgstr "Vytvořen"
#. AYhBx
#: 01100200.xhp
@@ -3452,7 +3452,7 @@ msgctxt ""
"hd_id3149182\n"
"help.text"
msgid "Modified"
-msgstr ""
+msgstr "Změněn"
#. g5sGH
#: 01100200.xhp
@@ -3470,7 +3470,7 @@ msgctxt ""
"hd_id3149576\n"
"help.text"
msgid "Template"
-msgstr ""
+msgstr "Šablona"
#. dKF56
#: 01100200.xhp
@@ -3488,7 +3488,7 @@ msgctxt ""
"par_idN106C5\n"
"help.text"
msgid "Digitally signed"
-msgstr ""
+msgstr "Elektronicky podepsán"
#. kLqNh
#: 01100200.xhp
@@ -3506,7 +3506,7 @@ msgctxt ""
"par_idN106CC\n"
"help.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "Elektronické podpisy"
#. EdEtn
#: 01100200.xhp
@@ -3524,7 +3524,7 @@ msgctxt ""
"hd_id3156346\n"
"help.text"
msgid "Last printed"
-msgstr ""
+msgstr "Vytištěn:"
#. BunTF
#: 01100200.xhp
@@ -3542,7 +3542,7 @@ msgctxt ""
"par_id211604484407570\n"
"help.text"
msgid "After printing, a document must be saved to preserve its <emph>Last printed</emph> data. No warning message is given about this, if an unsaved document is closed."
-msgstr ""
+msgstr "Aby se údaj <emph>Vytištěn</emph> zachoval, je nutné po tisku dokument uložit. Je-li takto neuložený dokument uzavřen, nezobrazí se žádné upozornění."
#. mD6yU
#: 01100200.xhp
@@ -3569,7 +3569,7 @@ msgctxt ""
"hd_id3153252\n"
"help.text"
msgid "Revision number"
-msgstr ""
+msgstr "Číslo revize"
#. FPbiF
#: 01100200.xhp
@@ -3623,7 +3623,7 @@ msgctxt ""
"hd_id101602069139228\n"
"help.text"
msgid "Save preview image with this document"
-msgstr ""
+msgstr "Uložit s tímto dokumentem obrázek náhledu"
#. ibdbD
#: 01100300.xhp
@@ -5387,7 +5387,7 @@ msgctxt ""
"hd_id3154398\n"
"help.text"
msgid "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as Email\">Email Document</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01160200.xhp\" name=\"Odeslat dokument e-mailem\">Odeslat dokument e-mailem</link>"
#. Q86XQ
#: 01160000.xhp
@@ -5414,7 +5414,7 @@ msgctxt ""
"hd_id8111514\n"
"help.text"
msgid "Email as OpenDocument Spreadsheet"
-msgstr ""
+msgstr "E-mailem jako sešit OpenDocument"
#. ewW2i
#: 01160000.xhp
@@ -5432,7 +5432,7 @@ msgctxt ""
"hd_id5112460\n"
"help.text"
msgid "Email as Microsoft Excel"
-msgstr ""
+msgstr "E-mailem jako Microsoft Excel"
#. pLjdc
#: 01160000.xhp
@@ -5450,7 +5450,7 @@ msgctxt ""
"hd_id6694540\n"
"help.text"
msgid "Email as OpenDocument Presentation"
-msgstr ""
+msgstr "E-mailem jako prezentaci OpenDocument"
#. Ai2i2
#: 01160000.xhp
@@ -5468,7 +5468,7 @@ msgctxt ""
"hd_id2099063\n"
"help.text"
msgid "Email as Microsoft PowerPoint Presentation"
-msgstr ""
+msgstr "E-mailem jako prezentaci Microsoft PowerPoint"
#. uDGxn
#: 01160000.xhp
@@ -5486,7 +5486,7 @@ msgctxt ""
"hd_id9657277\n"
"help.text"
msgid "Email as OpenDocument Text"
-msgstr ""
+msgstr "E-mailem jako textový dokument OpenDocument"
#. Aewp6
#: 01160000.xhp
@@ -5504,7 +5504,7 @@ msgctxt ""
"hd_id7941831\n"
"help.text"
msgid "Email as Microsoft Word"
-msgstr ""
+msgstr "E-mailem jako Microsoft Word"
#. dcXm5
#: 01160000.xhp
@@ -5549,7 +5549,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Email Document"
-msgstr ""
+msgstr "Dokument e-mailem"
#. cpCsu
#: 01160200.xhp
@@ -5558,7 +5558,7 @@ msgctxt ""
"hd_id3150702\n"
"help.text"
msgid "<link href=\"text/shared/01/01160200.xhp\">Email Document</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01160200.xhp\">Dokument e-mailem</link>"
#. 8prjP
#: 01160200.xhp
@@ -5576,7 +5576,7 @@ msgctxt ""
"par_id0807200809553672\n"
"help.text"
msgid "If the document is in HTML format, any embedded or linked images will <emph>not</emph> be sent with the email."
-msgstr ""
+msgstr "Pokud je formát souboru HTML, vložené nebo připojené obrázky <emph>nebudou</emph> e-mailem odeslány."
#. E5hZ4
#: 01160300.xhp
@@ -5684,7 +5684,7 @@ msgctxt ""
"hd_id3154545\n"
"help.text"
msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit\">Exit %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01170000.xhp\" name=\"Ukončit\">Ukončit %PRODUCTNAME</link>"
#. Dtb5G
#: 01170000.xhp
@@ -5693,7 +5693,7 @@ msgctxt ""
"par_id3151299\n"
"help.text"
msgid "<ahelp hid=\".\">Closes all %PRODUCTNAME programs and prompts you to save your changes.</ahelp> This command does not exist on macOS systems."
-msgstr ""
+msgstr "<ahelp hid=\".\">Ukončí všechny programy %PRODUCTNAME a nabídne možnost uložení změn.</ahelp> Tento příkaz neexistuje v systému macOS."
#. XYGgt
#: 01170000.xhp
@@ -6062,7 +6062,7 @@ msgctxt ""
"par_id3155338\n"
"help.text"
msgid "You can cancel the Undo command by choosing <menuitem>Edit - Redo</menuitem>."
-msgstr ""
+msgstr "Příkaz Zpět je možné zrušit příkazem <menuitem>Úpravy - Znovu</menuitem>."
#. seDVc
#: 02010000.xhp
@@ -6827,7 +6827,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/link\">Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/link\">Vloží oblast buněk jako odkaz, takže změny provedené ve zdrojovém souboru se aktualizují v cílovém souboru. Chcete-li zajistit, aby se v cílovém souboru aktualizovaly také změny provedené na prázdné buňky zdrojového souboru, zaškrtněte možnost „Vložit vše“.</ahelp>"
#. 5BxP6
#: 02070000.xhp
@@ -7682,7 +7682,7 @@ msgctxt ""
"hd_id3145650\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Komentáře</caseinline></switchinline>"
#. MTECk
#: 02100000.xhp
@@ -7999,14 +7999,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "Znak určený osmimístným šestnáctkovým kódem Unicode (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "Pro určitá symbolová písma může kód speciálního znaku záviset na použitém písmu. Kódy je možné zjistit v dialogovém okně <menuitem>Vložit - Speciální znak</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
@@ -8177,7 +8177,7 @@ msgctxt ""
"par_id5311440\n"
"help.text"
msgid "For a full list of supported metacharacters and syntax, see <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html\" name=\"ICU Regular Expressions documentation\">ICU Regular Expressions documentation</link>"
-msgstr ""
+msgstr "Úplný seznam dostupných speciálních znaků a syntaxe naleznete v <link href=\"https://github.com/LibreOffice/help/commits/master/source/text/shared/01/02100001.xhp\" name=\"dokumentace regulárních výrazů v projektu ICU\">dokumentaci regulárních výrazů v projektu ICU</link>."
#. HBqoH
#: 02100001.xhp
@@ -8501,7 +8501,7 @@ msgctxt ""
"par_id3145629\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/similaritybtn\" visibility=\"hidden\">Set the options for the similarity search.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/similaritybtn\" visibility=\"hidden\">Nastavení voleb pro hledání podobností.</ahelp>"
#. FLKW6
#: 02100100.xhp
@@ -27662,7 +27662,7 @@ msgctxt ""
"par_id3153626\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Fills the object with a simple two color pattern selected on this page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Vyplní objekt jednoduchým dvoubarevným vzorkem vybraným na této stránce.</ahelp>"
#. p5uGC
#: 05210800.xhp
@@ -27671,7 +27671,7 @@ msgctxt ""
"hd_id3159147\n"
"help.text"
msgid "Pattern"
-msgstr ""
+msgstr "Vzorek"
#. KW3Ah
#: 05210800.xhp
@@ -27680,7 +27680,7 @@ msgctxt ""
"par_id3149955\n"
"help.text"
msgid "Lists the available patterns. You can also modify or create your own pattern."
-msgstr ""
+msgstr "Seznam dostupných vzorků. Také je možné vzorek změnit nebo vytvořit vlastní."
#. rpQaV
#: 05210800.xhp
@@ -27689,7 +27689,7 @@ msgctxt ""
"par_id161584528499683\n"
"help.text"
msgid "To rename a pattern, select the pattern, right-click and choose <menuitem>Rename</menuitem>. To delete a pattern, select the pattern, right-click and choose <menuitem>Delete</menuitem>."
-msgstr ""
+msgstr "Chcete-li vzorek přejmenovat, vyberte jej, klepněte pravým tlačítkem myši a zvolte <menuitem>Přejmenovat</menuitem>. Chcete-li vzorek smazat, vyberte jej, klikněte pravým tlačítkem a zvolte <menuitem>Smazat</menuitem>."
#. VrE5t
#: 05210800.xhp
@@ -27698,7 +27698,7 @@ msgctxt ""
"hd_id3153823\n"
"help.text"
msgid "Add"
-msgstr ""
+msgstr "Přidat"
#. 8fyh4
#: 05210800.xhp
@@ -27707,7 +27707,7 @@ msgctxt ""
"par_id3148924\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_ADD\">Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/patterntabpage/BTN_ADD\">Přidá do aktuálního seznamu vlastní vzorek. Nastavte vlastnosti svého vzorku a pak klepněte na toto tlačítko.</ahelp>"
#. 5waZ4
#: 05210800.xhp
@@ -27716,7 +27716,7 @@ msgctxt ""
"hd_id3147620\n"
"help.text"
msgid "Modify"
-msgstr ""
+msgstr "Změnit"
#. BSeBy
#: 05210800.xhp
@@ -27725,7 +27725,7 @@ msgctxt ""
"par_id3156023\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_MODIFY\">Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/patterntabpage/BTN_MODIFY\">Použije aktuální nastavení vzorku na vybraný vzorek. Vzorek je možné uložit pod jiným názvem.</ahelp>"
#. WCFwi
#: 05210800.xhp
@@ -27734,7 +27734,7 @@ msgctxt ""
"hd_id3156042\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Možnosti"
#. CVD9L
#: 05210800.xhp
@@ -27743,7 +27743,7 @@ msgctxt ""
"par_id3147291\n"
"help.text"
msgid "Draw or modify a pattern."
-msgstr ""
+msgstr "Nakreslete nebo změňte vzorek."
#. ruCpD
#: 05210800.xhp
@@ -27752,7 +27752,7 @@ msgctxt ""
"hd_id3147834\n"
"help.text"
msgid "Pattern Editor"
-msgstr ""
+msgstr "Editor vzorků"
#. rFfJm
#: 05210800.xhp
@@ -27761,7 +27761,7 @@ msgctxt ""
"par_id3147010\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/patterntabpage/CTL_PIXEL\">Draw the pattern in the 8 x 8 pixel board. Click on a pattern pixel to activate it, click again to deactivate it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/patterntabpage/CTL_PIXEL\">Nakreslete vzorek do mřížky 8 × 8 pixelů. Klepnutím pixel vzoru nastavíte jako aktivní, opětovným klepnutím jako neaktivní.</ahelp>"
#. hNAPN
#: 05210800.xhp
@@ -27770,7 +27770,7 @@ msgctxt ""
"hd_id3155355\n"
"help.text"
msgid "Foreground Color"
-msgstr ""
+msgstr "Barva popředí"
#. sHjjw
#: 05210800.xhp
@@ -27779,7 +27779,7 @@ msgctxt ""
"par_id3156410\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/patterntabpage/LB_COLOR\">Set the color of the activated pattern pixels.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/patterntabpage/LB_COLOR\">Nastavte barvu aktivních pixelů vzorku.</ahelp>"
#. nh8wk
#: 05210800.xhp
@@ -27788,7 +27788,7 @@ msgctxt ""
"hd_id3155449\n"
"help.text"
msgid "Background Color"
-msgstr ""
+msgstr "Barva pozadí"
#. JqSDi
#: 05210800.xhp
@@ -27797,7 +27797,7 @@ msgctxt ""
"par_id3152909\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/patterntabpage/LB_BACKGROUND_COLOR\">Set the color of the deactivated pattern pixels.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/patterntabpage/LB_BACKGROUND_COLOR\">Nastavte barvu neaktivních pixelů vzorku.</ahelp>"
#. fZrDg
#: 05220000.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/guide.po b/source/cs/helpcontent2/source/text/shared/guide.po
index 477dfb79583..250fcd5f738 100644
--- a/source/cs/helpcontent2/source/text/shared/guide.po
+++ b/source/cs/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-18 18:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547113478.000000\n"
#. iharT
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Práce s %PRODUCTNAME\">Práce s <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "HTML dokument"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "Textový dokument OpenDocument (Flat XML)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Textový dokument OpenOffice.org 1.0"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Textový dokument OpenOffice.org 1.0"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Textový dokument OpenOffice.org 1.0"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "Dokument T602"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Text"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Text"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "Filtry pro obrázky"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD Interchange Format"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF - Enhanced Meta File"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF - Enhanced Meta File"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Encapsulated PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Encapsulated PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr "GIF - Graphics Interchange"
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr "GIF - Graphics Interchange"
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr "text/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET - OS/2 Metafile"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - formát souboru QuickTime"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr "PCD - Photo CD Base4"
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT - Mac Pict"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Portable Graymap"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network Graphic"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Portable Pixelmap"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Sun Raster Image"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Image"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - Scalable Vector Graphics pro Draw"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr "SVM - StarView Meta File"
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF - Tagged Image File Format"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Windows Metafile"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitmap"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr "V případě, že chcete poslat e-mail příjemci používajícímu pouze software, který neumí číst formát OpenDocument, můžete zvolený dokument poslat v často používaném proprietárním formátu.<br/>Pro textový dokument zvolte <item type=\"menuitem\">Soubor - Odeslat - E-mailem jako Microsoft Word</item>. Pro sešit zvolte <item type=\"menuitem\">Soubor - Odeslat - E-mailem jako Microsoft Excel</item>. A pro prezentaci zvolte <item type=\"menuitem\">Soubor - Odeslat - E-mailem jako Microsoft PowerPoint</item>. <br/> Přejete-li si poslat dokument pouze pro čtení, zvolte <item type=\"menuitem\">Soubor - Odeslat - E-mailem jako PDF</item>.<br/> Tyto příkazy nezmění aktuální dokument, pouze vytvoří a odešlou dočasnou kopii."
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Nástroj pro oznamování chyb"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>nástroj pro oznamování chyb</bookmark_value><bookmark_value>oznamování;zprávy o chybách</bookmark_value><bookmark_value>zprávy o pádu</bookmark_value><bookmark_value>aktivace;nástroj pro oznamování chyb</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Nástroj pro oznamování chyb\">Nástroj pro oznamování chyb</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Nástroj pro oznamovaní chyb se spustí automaticky, když dojde k pádu aplikace."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Nástroj pro oznamování chyb shromáždí všechny informace, které vývojářům pomohou opravit chybu, aby se v dalších verzích již nevyskytovala. Pomozte nám, prosím, vylepšovat software a pošlete vygenerovanou zprávu o chybě."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Spuštění Nástroje pro oznamování chyb"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Při většině pádů aplikace se nástroj pro oznamování chyb spustí automaticky."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Doplnění zprávy"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "V hlavním okně Nástroje pro oznamování chyb můžete zadat doplňující informace, které vývojářům pomohou odhalit chybu. Pokud chyba například nastala po změně v hardware či software, nebo po klepnutí na tlačítko, uveďte, prosím, tyto informace."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Odesílám oznámení o chybě"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Nástroj pro oznamování chyb používá k odeslání dat protokol HTTP PUT / SOAP. Můžete také zadat popis, který nám pomůže identifikovat, v jaké chvíli došlo k pádu programu. Pokud tento text zadáte v němčině nebo angličtině, urychlíte zpracování záznamu. Poté klepněte na tlačítko <emph>Odeslat</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Na oznámení o chybě nedostanete odpověď. Pokud potřebujete podporu, navštivte, prosím, <link href=\"text/shared/main0108.xhp\">fórum podpory</link> na Internetu."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
-msgstr "Budete-li chtít, můžete vývojářům zodpovědět případné dotazy ohledně chyby. Dovolíte-li nám kontaktovat vás e-mailem v případě potřeby doplňujících informací, zaškrtněte prosím toto pole. Standardně tato možnost není zvolena, takže od nás žádné e-maily nedostanete."
+msgid "What Data are Sent?"
+msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Jaká data se odesílají?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Oznámení o chybě se skládá z několika souborů. Hlavní soubor obsahuje informace o druhu chyby, název a verzi operačního systému, využití paměti a popis, který jste zadali. Po klepnutí na tlačítko <emph>Zobrazit zprávu</emph> v hlavním dialogu Nástroje se zobrazí odesílaný soubor."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Kromě toho se provede výpis odpovídajícího obsahu paměti pomocí standardních systémových nástrojů (\"dbhhelp.dll\" na systémech Windows, \"pstack\" na systémech UNIX). Tato informace se také odešle."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Poznámka: pro každé odeslání faxu tiskněte zvlášť, jinak první příjemce obdrží všechny faxy. V dialogu <emph>Nástroje - Průvodce hromadnou korespondencí</emph> zvolte <emph>Tiskárna</emph> a poté zaškrtněte pole <emph>Jednotlivé tiskové úlohy</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Úprava výchozí šablony"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modifikování, viz změna</bookmark_value><bookmark_value>změna, viz také úpravy a nahrazování</bookmark_value><bookmark_value>výchozí šablony; změna</bookmark_value><bookmark_value>výchozí nastavení;dokumenty</bookmark_value><bookmark_value>vlastní šablony</bookmark_value><bookmark_value>aktualizace; šablony</bookmark_value><bookmark_value>úpravy;šablony</bookmark_value><bookmark_value>šablony;úpravy a ukládání</bookmark_value><bookmark_value>ukládání;šablony</bookmark_value><bookmark_value>obnovení;šablony</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Úprava výchozí šablony\">Úprava výchozí šablony</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Když otevřete nový dokument příkazem <emph>Soubor - Nový</emph>, otevře se dokument založený na šabloně $[officename]. Tuto šablonu můžete upravit či nahradit, aby nové dokumenty obsahovaly vaše vlastní styly nebo obsah."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Změny výchozí šablony"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Nejprve buď otevřete existující šablonu $[officename] a upravte ji, nebo otevřete nový dokument a úpravami z něj vytvořte požadovanou šablonu."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Můžete určit šablonu pro každý modul $[officename]. Následující postup popisuje úpravu pro textové dokumenty."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Uložte dokument volbou <emph>Soubor - Šablony - Uložit jako šablonu</emph> a uložením dokumentu do kategorie <emph>Moje šablony</emph>."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Zvolte <emph>Soubor - Nový - Šablony</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "V seznamu poklepejte na <emph>Moje šablony</emph>. Zobrazí se uživatelem definované šablony z adresáře stanoveného pomocí <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Předvolby</emph></caseinline><defaultinline><emph>Nástroje - Možnosti</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Cesty</emph>. Vyberte právě uloženou šablonu."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Zvolte <emph>Nastavit jako výchozí</emph>. Když příště otevřete nový textový dokument, bude tento nový dokument založen na nové výchozí šabloně."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Použití vlastní šablony"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Existuje několik způsobů, jak si vytvořením vlastních šablon ušetřit práci."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Šablony umístěné ve složce šablon"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Novou šablonu můžete uložit pomocí <emph>Soubor - Šablony - Uložit jako šablonu</emph> nebo tím, že v jakémkoliv dialogu pro uložení vyberete typ souboru \"Šablona\". Uložte šablonu do uživatelského adresáře stanoveného v <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Předvolby</emph></caseinline><defaultinline><emph>Nástroje - Možnosti</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Cesty</emph>, abyste k ní měli přístup z dialogového okna <emph>Soubor - Nový - Šablony</emph>."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Pro otevření šablony pro úpravy zvolte <emph>Soubor - Nový - Šablony</emph>, vyberte šablonu a klepněte na tlačítko <emph>Upravit</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,14 +24100,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Související informace naleznete v části <link href=\"text/swriter/guide/templates_styles.xhp\">Šablony a styly</link>."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Související informace naleznete v části <link href=\"text/swriter/guide/template_create.xhp\">Vytvoření šablony dokumentu</link>."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/optionen.po b/source/cs/helpcontent2/source/text/shared/optionen.po
index 38eee097cea..d2e1f95b44c 100644
--- a/source/cs/helpcontent2/source/text/shared/optionen.po
+++ b/source/cs/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-21 15:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/cs/>\n"
"Language: cs\n"
@@ -3428,14 +3428,14 @@ msgctxt ""
msgid "View"
msgstr "Zobrazit"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>zobrazení; výchozí</bookmark_value><bookmark_value>výchozí; zobrazení</bookmark_value><bookmark_value>nastavení; pohledy</bookmark_value><bookmark_value>ikony; velikosti</bookmark_value><bookmark_value>ikony; styly</bookmark_value><bookmark_value>WYSIWYG v seznamu písem</bookmark_value><bookmark_value>náhledy; seznamy písem</bookmark_value><bookmark_value>seznamy písem</bookmark_value><bookmark_value>pole názvu písma</bookmark_value><bookmark_value>myš; umísťování</bookmark_value><bookmark_value>schránka; schránka pro výběr</bookmark_value><bookmark_value>schránka pro výběr</bookmark_value><bookmark_value>OpenGL;nastavení</bookmark_value><bookmark_value>OpenGL;seznam zakázaných</bookmark_value><bookmark_value>OpenGL;seznam povolených</bookmark_value><bookmark_value>OpenGL;grafický výstup</bookmark_value><bookmark_value>lišta karet;velikost ikon</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr "<bookmark_value>zobrazení; výchozí</bookmark_value><bookmark_value>výchozí; zobrazení</bookmark_value><bookmark_value>nastavení; zobrazení</bookmark_value><bookmark_value>ikony; velikosti</bookmark_value><bookmark_value>ikony; styly</bookmark_value><bookmark_value>WYSIWYG v seznamu písem</bookmark_value><bookmark_value>náhledy; seznamy písem</bookmark_value><bookmark_value>seznamy písem</bookmark_value><bookmark_value>pole názvu písma</bookmark_value><bookmark_value>myš; umísťování</bookmark_value><bookmark_value>myš; prostřední tlačítko</bookmark_value><bookmark_value>schránka; schránka pro výběr</bookmark_value><bookmark_value>schránka pro výběr</bookmark_value><bookmark_value>Skia;nastavení</bookmark_value><bookmark_value>Skia;grafický výstup</bookmark_value><bookmark_value>lišta karet;velikost ikon</bookmark_value>"
#. cGjPM
#: 01010800.xhp
@@ -3455,59 +3455,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Určuje možnosti zobrazení."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Uživatelské rozhraní"
+msgid "Icon style"
+msgstr "Styl ikon"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Velikost ikon nástrojové lišty"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Určuje styl ikon na nástrojových lištách a v dialogových oknech.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Určuje velikost zobrazení ikon pro nástrojové lišty.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">Možnost <emph>Automaticky</emph> určuje velikost ikon podle velikosti písma, která je pro zobrazení nabídek zvolena v systému.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr "Velikost ikon"
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Velikost ikon postranní lišty"
+msgid "Toolbar"
+msgstr "Nástrojová lišta"
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Určuje velikost ikon zobrazených v postranní liště.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Určuje velikost ikon zobrazených na nástrojových lištách.</ahelp>"
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Velikost ikon lišty karet"
+msgid "Notebookbar"
+msgstr "Lišta karet"
#. 29iV7
#: 01010800.xhp
@@ -3518,50 +3518,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Určuje velikost ikon zobrazených na <link href=\"text/shared/01/notebook_bar.xhp\">liště karet</link>.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Styl ikon"
+msgid "Sidebar"
+msgstr "Postranní lišta"
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Určuje styl ikon na nástrojových lištách a v dialogových oknech.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Určuje velikost ikon zobrazených v postranní liště.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Vyhlazování písem na obrazovce"
+msgid "Visibility"
+msgstr "Viditelnost"
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Zvolte, pokud chcete vyhlazovat písma na obrazovce.</ahelp>"
+msgid "Menu icons"
+msgstr "Ikony v nabídce"
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Zadejte nejmenší velikost písma pro vyhlazování.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Zobrazí v nabídkách ikony vedle odpovídajících položek nabídky. Dostupné volby jsou \"Automaticky\", \"Skrýt\" a \"Zobrazit\". Položka \"Automaticky\" zobrazí ikony v závislosti na nastavení systému a zvoleného motivu vzhledu.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr "Zkratky"
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr "Zobrazí klávesové zkratky vedle odpovídajících položek nabídky. Dostupné volby jsou \"Automaticky\", \"Skrýt\" a \"Zobrazit\". Položka \"Automaticky\" zobrazí ikony v závislosti na nastavení systému."
#. QWZyh
#: 01010800.xhp
@@ -3572,14 +3590,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Myš"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Umístění myši"
+msgid "Positioning"
+msgstr "Umístění"
#. aYKpK
#: 01010800.xhp
@@ -3590,14 +3608,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Určuje, zda a jak se do nově otevřených dialogových oken umisťuje ukazatel myši.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Prostřední tlačítko myši"
+msgid "Middle button"
+msgstr "Prostřední tlačítko"
#. 6Qe9V
#: 01010800.xhp
@@ -3734,23 +3752,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "Obsahem schránky výběru je poslední vybraná část dokumentu."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Grafický výstup"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Zobrazení aktuálního dokumentu obnovíte klávesovou zkratkou Shift+Ctrl+R.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Zobrazení aktuálního dokumentu obnovíte klávesovou zkratkou Shift+Ctrl+R.</ahelp>"
+msgid "Graphics Output"
+msgstr "Grafický výstup"
#. WzMq5
#: 01010800.xhp
@@ -3788,68 +3806,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Pokud je podporováno, můžete použít vyhlazení grafiky. Při zapnutém vyhlazování má většina grafických objektů méně artefaktů.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Použít OpenGL pro veškeré vykreslování (vyžaduje restart)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr "Použít pro veškeré vykreslování knihovnu Skia (vyžaduje restart)"
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Veškeré vizuální prvky aplikace jako okna, nabídky, nástrojové lišty a ikony budou vykreslovány pomocí výkonné knihovny Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>.</ahelp> OpenGL využívá grafické zařízení počítače a vykreslování grafiky je díky tomu rychlejší. Jestliže je zařízení na seznamu zakázaných (viz dále), tato možnost nebude účinná."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Veškeré vizuální prvky aplikace jako okna, nabídky, nástrojové lišty a ikony budou vykreslovány pomocí výkonné knihovny Skia.</ahelp> OpenGL využívá grafické zařízení počítače a vykreslování grafiky je díky tomu rychlejší."
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Vynutit OpenGL, i když je zakázáno (vyžaduje restart)"
+msgid "Force Skia software rendering (on restart)"
+msgstr "Vynutit softwarové vykreslování knihovnou Skia"
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Vynutí použití OpenGL, i když je grafické zařízení v seznamu zakázaných.</ahelp> Zařízení je uvedeno v seznamu zakázaných tehdy, pokud způsobuje chyby nebo vykresluje grafiku nekvalitně."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Výběrem zakážete knihovně Skia využívat grafické zařízení počítače.</ahelp>"
-#. CTQcx
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Nabídky"
-
-#. WnNCQ
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Ikony v nabídkách"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr "Vhodné nastavení grafické knihovny Skia je zvoleno při instalaci. Je-li knihovna Skia povolena, za běžných okolností není nutné toto výchozí nastavení měnit."
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Zobrazí v nabídkách ikony vedle odpovídajících položek nabídky. Dostupné volby jsou \"Automaticky\", \"Skrýt\" a \"Zobrazit\". Položka \"Automaticky\" zobrazí ikony v závislosti na nastavení systému a zvoleného motivu vzhledu.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr "Je-li knihovna Skia povolena a dochází k potížím se zobrazením (např. se vzhledem objektů kresby nebo ikon na nástrojových lištách), můžete zkusit volbu <emph>Vynutit softwarové vykreslování knihovnou Skia</emph> nebo tuto knihovnu zcela zakázat."
#. wPnrb
#: 01010800.xhp
@@ -3878,6 +3887,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Při výběru písma se název písma zobrazí daným písmem, např. v seznamu písem v poli Písmo na liště <emph>Formátování</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Vyhlazování písem na obrazovce"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Zvolte, pokud chcete vyhlazovat písma na obrazovce.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr "od"
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Zadejte nejmenší velikost písma pro vyhlazování.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/swriter/01.po b/source/cs/helpcontent2/source/text/swriter/01.po
index 32df9462389..e8242c8aedf 100644
--- a/source/cs/helpcontent2/source/text/swriter/01.po
+++ b/source/cs/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-15 09:48+0000\n"
+"PO-Revision-Date: 2020-11-29 12:41+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565687607.000000\n"
#. sZfWF
@@ -689,7 +689,7 @@ msgctxt ""
"hd_id3151177\n"
"help.text"
msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
-msgstr ""
+msgstr "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigátor\">Navigátor</link></variable>"
#. uXgCi
#: 02110000.xhp
@@ -716,7 +716,7 @@ msgctxt ""
"par_id3149490\n"
"help.text"
msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
-msgstr ""
+msgstr "Chcete-li zobrazit položky kategorie, klepněte na plus (<widget>+</widget>) nebo šipku vedle kategorie v Navigátoru. Počet položek v kategorii se zobrazí, jestliže najedete ukazatelem myši nad kategorii a chvilku posečkáte. Na položku v dokumentu přejdete pomocí, když na ni v Navigátoru poklepete."
#. WD2Zz
#: 02110000.xhp
@@ -725,7 +725,7 @@ msgctxt ""
"par_id3149106\n"
"help.text"
msgid "To jump to the next or previous item in a document, use the <emph>Navigate by</emph> box to select the item category, and then click the up or down arrows."
-msgstr ""
+msgstr "Chcete-li přejít na následující nebo předchozí položku v dokumentu, vyberte kategorii v poli <emph>Navigovat podle</emph> a poté klepněte na šipku nahoru nebo dolů."
#. 87cKG
#: 02110000.xhp
@@ -770,7 +770,7 @@ msgctxt ""
"par_id3154616\n"
"help.text"
msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Ikona Předchozí objekt</alt></image>"
#. z3HC5
#: 02110000.xhp
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Ikona Další objekt</alt></image>"
#. xyGWM
#: 02110000.xhp
@@ -887,7 +887,7 @@ msgctxt ""
"par_id531603287134620\n"
"help.text"
msgid "Icon"
-msgstr ""
+msgstr "Ikona"
#. FpEuq
#: 02110000.xhp
@@ -896,7 +896,7 @@ msgctxt ""
"par_id911603287134620\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Kategorie"
#. Ja23j
#: 02110000.xhp
@@ -905,7 +905,7 @@ msgctxt ""
"par_id31603287134620\n"
"help.text"
msgid "Context Menu"
-msgstr ""
+msgstr "Místní nabídka"
#. JiJpY
#: 02110000.xhp
@@ -914,7 +914,7 @@ msgctxt ""
"par_id721603290925895\n"
"help.text"
msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Ikona Nadpisy</alt></image>"
#. KF8gH
#: 02110000.xhp
@@ -923,7 +923,7 @@ msgctxt ""
"par_id581603287134620\n"
"help.text"
msgid "Headings"
-msgstr ""
+msgstr "Nadpisy"
#. xFGwj
#: 02110000.xhp
@@ -932,7 +932,7 @@ msgctxt ""
"par_id431603287134620\n"
"help.text"
msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
-msgstr ""
+msgstr "Sbalit/Rozbalit vše, <link href=\"text/swriter/01/01160200.xhp\" name=\"schránka\">Odeslat osnovu do schránky</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"obsah osnovy\">Viditelnost obsahu osnovy</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"sledování osnovy\">Sledování osnovy</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"úroveň osnovy\">Úroveň osnovy</link>"
#. uH7Av
#: 02110000.xhp
@@ -941,7 +941,7 @@ msgctxt ""
"par_id151603291732283\n"
"help.text"
msgid "Heading item"
-msgstr ""
+msgstr "Položka nadpisů"
#. fVaAR
#: 02110000.xhp
@@ -950,7 +950,7 @@ msgctxt ""
"par_id611603291783875\n"
"help.text"
msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
-msgstr ""
+msgstr "Sbalit/Rozbalit vše, Přejít na, Vybrat, Smazat, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"kapitolu o úroveň výše\">Kapitolu o úroveň výše</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"kapitolu o úroveň níže\">Kapitolu o úroveň níže</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"o úroveň výše\">O úroveň výše</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"o úroveň níže\">O úroveň níže</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"viditelnost obsahu osnovy\">Viditelnost obsahu osnovy</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"sledování osnovy\">Sledování osnovy</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"úroveň osnovy\">Úroveň osnovy</link>"
#. bdbZB
#: 02110000.xhp
@@ -959,7 +959,7 @@ msgctxt ""
"par_id721603287623090\n"
"help.text"
msgid "<image src=\"cmd/sc_inserttable.svg\" id=\"img_id301603287623090\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603287623090\">Tables Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_inserttable.svg\" id=\"img_id301603287623090\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603287623090\">Ikona Tabulky</alt></image>"
#. jAnQW
#: 02110000.xhp
@@ -968,7 +968,7 @@ msgctxt ""
"par_id611603290378376\n"
"help.text"
msgid "Tables"
-msgstr ""
+msgstr "Tabulky"
#. hiFCt
#: 02110000.xhp
@@ -977,7 +977,7 @@ msgctxt ""
"par_id531603530756147\n"
"help.text"
msgid "Table items"
-msgstr ""
+msgstr "Položky tabulek"
#. Kj4pw
#: 02110000.xhp
@@ -986,7 +986,7 @@ msgctxt ""
"par_id291603290382271\n"
"help.text"
msgid "Go to, Select, Edit, Delete, Rename"
-msgstr ""
+msgstr "Přejít na, Vybrat, Upravit, Smazat, Přejmenovat"
#. raARd
#: 02110000.xhp
@@ -995,7 +995,7 @@ msgctxt ""
"par_id771603291076318\n"
"help.text"
msgid "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Frames icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Ikona Rámce</alt></image>"
#. HakR3
#: 02110000.xhp
@@ -1004,7 +1004,7 @@ msgctxt ""
"par_id191603290368002\n"
"help.text"
msgid "Frames"
-msgstr ""
+msgstr "Rámce"
#. qDEB2
#: 02110000.xhp
@@ -1013,7 +1013,7 @@ msgctxt ""
"par_id801603532799021\n"
"help.text"
msgid "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Images Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Ikona Obrázky</alt></image>"
#. 4Zuo5
#: 02110000.xhp
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id581603532733359\n"
"help.text"
msgid "Images"
-msgstr ""
+msgstr "Obrázky"
#. s8NFi
#: 02110000.xhp
@@ -1031,7 +1031,7 @@ msgctxt ""
"par_id8016035394621021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">OLE Objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Ikona Objekty OLE</alt></image>"
#. DF7be
#: 02110000.xhp
@@ -1040,7 +1040,7 @@ msgctxt ""
"par_id581603532723769\n"
"help.text"
msgid "OLE Objects"
-msgstr ""
+msgstr "Objekty OLE"
#. gY9hD
#: 02110000.xhp
@@ -1049,7 +1049,7 @@ msgctxt ""
"par_id801636822799021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Bookmarks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Ikona Záložky</alt></image>"
#. FABsh
#: 02110000.xhp
@@ -1058,7 +1058,7 @@ msgctxt ""
"par_id581603532733956\n"
"help.text"
msgid "Bookmarks"
-msgstr ""
+msgstr "Záložky"
#. Vk58Q
#: 02110000.xhp
@@ -1067,7 +1067,7 @@ msgctxt ""
"par_id411603531074035\n"
"help.text"
msgid "Frame, Image, OLE Objects, Bookmark items"
-msgstr ""
+msgstr "Položky rámců, obrázků, objektů OLE, záložek"
#. ZqgVB
#: 02110000.xhp
@@ -1076,7 +1076,7 @@ msgctxt ""
"par_id611603290373033\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Přejít na, Upravit, Smazat, Přejmenovat"
#. wRDwv
#: 02110000.xhp
@@ -1085,7 +1085,7 @@ msgctxt ""
"par_id741603570764762\n"
"help.text"
msgid "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Sections Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Ikona Sekce</alt></image>"
#. SLmBP
#: 02110000.xhp
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id621603570764762\n"
"help.text"
msgid "Sections"
-msgstr ""
+msgstr "Sekce"
#. EQFyT
#: 02110000.xhp
@@ -1103,7 +1103,7 @@ msgctxt ""
"par_id111603570764762\n"
"help.text"
msgid "Section items"
-msgstr ""
+msgstr "Položky sekcí"
#. ZFCBK
#: 02110000.xhp
@@ -1112,7 +1112,7 @@ msgctxt ""
"par_id291694280382271\n"
"help.text"
msgid "Go to, Select, Edit, Rename"
-msgstr ""
+msgstr "Přejít na, Vybrat, Upravit, Přejmenovat"
#. RTDr9
#: 02110000.xhp
@@ -1121,7 +1121,7 @@ msgctxt ""
"par_id461603570542532\n"
"help.text"
msgid "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Hyperlinks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Ikona Hypertextové odkazy</alt></image>"
#. yve5A
#: 02110000.xhp
@@ -1130,7 +1130,7 @@ msgctxt ""
"par_id801603570516284\n"
"help.text"
msgid "Hyperlinks"
-msgstr ""
+msgstr "Hypertextové odkazy"
#. YCGxB
#: 02110000.xhp
@@ -1139,7 +1139,7 @@ msgctxt ""
"par_id81603570505590\n"
"help.text"
msgid "Hyperlink items"
-msgstr ""
+msgstr "Položky hypertextových odkazů"
#. RT7Pi
#: 02110000.xhp
@@ -1148,7 +1148,7 @@ msgctxt ""
"par_id961603570483539\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Přejít na, Upravit, Smazat, Přejmenovat"
#. MmCsC
#: 02110000.xhp
@@ -1157,7 +1157,7 @@ msgctxt ""
"par_id901603571492300\n"
"help.text"
msgid "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">References Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">Ikona Odkazy</alt></image>"
#. iDyLx
#: 02110000.xhp
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id91603571492300\n"
"help.text"
msgid "References"
-msgstr ""
+msgstr "Odkazy"
#. AdAzM
#: 02110000.xhp
@@ -1175,7 +1175,7 @@ msgctxt ""
"par_id121603573019324\n"
"help.text"
msgid "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Indexes Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Ikona Rejstříky</alt></image>"
#. DJW2V
#: 02110000.xhp
@@ -1184,7 +1184,7 @@ msgctxt ""
"par_id591603573019324\n"
"help.text"
msgid "Indexes"
-msgstr ""
+msgstr "Rejstříky"
#. SpEBB
#: 02110000.xhp
@@ -1193,7 +1193,7 @@ msgctxt ""
"par_id911603571492300\n"
"help.text"
msgid "References, Indexes items"
-msgstr ""
+msgstr "Položky odkazů, rejstříků"
#. JJh5o
#: 02110000.xhp
@@ -1202,7 +1202,7 @@ msgctxt ""
"par_id29160996782271\n"
"help.text"
msgid "Go to"
-msgstr ""
+msgstr "Přejít na"
#. DY5cm
#: 02110000.xhp
@@ -1211,7 +1211,7 @@ msgctxt ""
"par_id741603572161942\n"
"help.text"
msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Comments Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Ikona Komentáře</alt></image>"
#. BRGDd
#: 02110000.xhp
@@ -1220,7 +1220,7 @@ msgctxt ""
"par_id41603572161942\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Komentáře"
#. XJRCd
#: 02110000.xhp
@@ -1229,7 +1229,7 @@ msgctxt ""
"par_id711603572473016\n"
"help.text"
msgid "Show All, Hide All, Delete All"
-msgstr ""
+msgstr "Zobrazit vše, Skrýt vše, Smazat vše"
#. WMdde
#: 02110000.xhp
@@ -1238,7 +1238,7 @@ msgctxt ""
"par_id751603572161943\n"
"help.text"
msgid "Comments items"
-msgstr ""
+msgstr "Položky komentářů"
#. VzhmF
#: 02110000.xhp
@@ -1247,7 +1247,7 @@ msgctxt ""
"par_id291604453382271\n"
"help.text"
msgid "Go to, Edit, Delete"
-msgstr ""
+msgstr "Přejít na, Upravit, Smazat"
#. E5dpv
#: 02110000.xhp
@@ -1256,7 +1256,7 @@ msgctxt ""
"par_id951603571856944\n"
"help.text"
msgid "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Drawing objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Ikona Objekty kresby</alt></image>"
#. apAFN
#: 02110000.xhp
@@ -1265,7 +1265,7 @@ msgctxt ""
"par_id351603571856944\n"
"help.text"
msgid "Drawing objects"
-msgstr ""
+msgstr "Objekty kresby"
#. PnfNJ
#: 02110000.xhp
@@ -1274,7 +1274,7 @@ msgctxt ""
"par_id461603571856945\n"
"help.text"
msgid "Drawing objects items"
-msgstr ""
+msgstr "Položky objektů kresby"
#. DDAda
#: 02110000.xhp
@@ -1283,7 +1283,7 @@ msgctxt ""
"par_id291603347382271\n"
"help.text"
msgid "Go to, Delete, Rename"
-msgstr ""
+msgstr "Přejít na, Smazat, Přejmenovat"
#. vGwzZ
#: 02110000.xhp
@@ -1292,7 +1292,7 @@ msgctxt ""
"par_id781603291428300\n"
"help.text"
msgid "All"
-msgstr ""
+msgstr "Vše"
#. AChDj
#: 02110000.xhp
@@ -1301,7 +1301,7 @@ msgctxt ""
"par_id711603291482148\n"
"help.text"
msgid "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Drag Mode\">Drag Mode</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"display\">Display</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Způsob přetáhnutí\">Způsob přetáhnutí</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"Zobrazení\">Zobrazení</link>"
#. SMFgG
#: 02110000.xhp
@@ -1508,7 +1508,7 @@ msgctxt ""
"hd_id3150507\n"
"help.text"
msgid "<variable id=\"outlinelvl\">Outline Level</variable>"
-msgstr ""
+msgstr "<variable id=\"outlinelvl\">Úroveň osnovy</variable>"
#. rjaS7
#: 02110000.xhp
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id3151338\n"
"help.text"
msgid "<variable id=\"promotelevel\">Promote Level</variable>"
-msgstr ""
+msgstr "<variable id=\"promotelevel\">O úroveň výše</variable>"
#. KzmQ5
#: 02110000.xhp
@@ -1634,7 +1634,7 @@ msgctxt ""
"hd_id3153714\n"
"help.text"
msgid "<variable id=\"demotelevel\">Demote Level</variable>"
-msgstr ""
+msgstr "<variable id=\"demotelevel\">O úroveň níže</variable>"
#. LKaFU
#: 02110000.xhp
@@ -1670,7 +1670,7 @@ msgctxt ""
"hd_id3145571\n"
"help.text"
msgid "<variable id=\"promotechap\">Promote Chapter</variable>"
-msgstr ""
+msgstr "<variable id=\"promotechap\">Kapitolu o úroveň výše</variable>"
#. CXMjY
#: 02110000.xhp
@@ -1706,7 +1706,7 @@ msgctxt ""
"hd_id3154424\n"
"help.text"
msgid "<variable id=\"demotechap\">Demote Chapter</variable>"
-msgstr ""
+msgstr "<variable id=\"demotechap\">Kapitolu o úroveň níže</variable>"
#. GFDsR
#: 02110000.xhp
@@ -1751,7 +1751,7 @@ msgctxt ""
"hd_id3154292\n"
"help.text"
msgid "<variable id=\"dragmode\">Drag Mode</variable>"
-msgstr ""
+msgstr "<variable id=\"dragmode\">Způsob přetáhnutí</variable>"
#. G5FvJ
#: 02110000.xhp
@@ -1841,7 +1841,7 @@ msgctxt ""
"hd_id3147340\n"
"help.text"
msgid "<variable id=\"display\">Open Documents</variable>"
-msgstr ""
+msgstr "<variable id=\"display\">Otevřené dokumenty</variable>"
#. rZmAa
#: 02110000.xhp
@@ -1868,7 +1868,7 @@ msgctxt ""
"hd_id541603882412689\n"
"help.text"
msgid "<variable id=\"outlinetracking\">Outline Tracking</variable>"
-msgstr ""
+msgstr "<variable id=\"outlinetracking\">Sledování osnovy</variable>"
#. nrCtR
#: 02110000.xhp
@@ -1877,7 +1877,7 @@ msgctxt ""
"par_id501603882441409\n"
"help.text"
msgid "Set Navigator’s mode of outline tracking. This feature applies only to outline entries under <menuitem>Headings</menuitem> in the Content View frame of Navigator. To see, enable, or change the mode, right-click on <menuitem>Headings</menuitem> or an item under Headings and choose <menuitem>Outline Tracking</menuitem>. The selected mode is applied to the entire document."
-msgstr ""
+msgstr "Nastaví v Navigátoru režim sledování osnovy. Tato vlastnost se uplatňuje pouze pro položky osnovy uvedené v pohledu na obsah v části <menuitem>Nadpisy</menuitem>. Chcete-li tento režim zapnout nebo změnit, klepněte pravým tlačítkem na <menuitem>Nadpisy</menuitem> nebo na položku v této části a zvolte <menuitem>Sledování osnovy</menuitem>. Vybraný režim se použije na celý dokument."
#. XxJB2
#: 02110000.xhp
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id161603966072360\n"
"help.text"
msgid "In <menuitem>Default</menuitem> and <menuitem>Focus</menuitem> mode, Navigator will automatically select the nearest heading before the current cursor position in the document."
-msgstr ""
+msgstr "V režimech <menuitem>Výchozí</menuitem> a <menuitem>Zaměřené</menuitem> se v Navigátoru automaticky vybere nejbližší nadpis před aktuální pozicí kurzoru v dokumentu."
#. 85sNR
#: 02110000.xhp
@@ -1895,7 +1895,7 @@ msgctxt ""
"par_id571603887044019\n"
"help.text"
msgid "In <menuitem>Default</menuitem> mode, the display of outline entries in Navigator is never changed, only an outline entry is selected."
-msgstr ""
+msgstr "V režimu <menuitem>Výchozí</menuitem> se nemění, které položky osnovy jsou v Navigátory zobrazeny, pouze jsou vybírány."
#. GoL6Y
#: 02110000.xhp
@@ -1904,7 +1904,7 @@ msgctxt ""
"par_id201603965501777\n"
"help.text"
msgid "In <menuitem>Focus</menuitem> mode, Navigator shows only the headings for the selected outline level, relative to the next higher outline level. For example, if a level 2 heading is selected, then all level 2 headings under the same level 1 heading are shown, while any level 3-10 headings (under the same level 1 heading) are collapsed. Other headings, not under the same level 1 heading, are also collapsed."
-msgstr ""
+msgstr "V režimu <menuitem>Zaměřený</menuitem> se v Navigátoru zobrazují pouze nadpisy pro vybranou úroveň osnovy, a to relativně vzhledem k nejbližší vyšší úrovni. Jestliže je například vybrán nadpis úrovně 2, zobrazí se všechny nadpisy úrovně 2 pod stejným nadpisem úrovně 1, zatímco všechny nadpisy úrovní 3–10 (pod stejným nadpisem úrovně 1) budou sbaleny. Sbaleny budou také ostatní nadpisy, nacházející se pod jinými nadpisy úrovně 1."
#. aehES
#: 02110000.xhp
@@ -1913,7 +1913,7 @@ msgctxt ""
"par_id81603965538425\n"
"help.text"
msgid "Choose <menuitem>Off</menuitem> to disable Outline Tracking."
-msgstr ""
+msgstr "Volbou <menuitem>Vypnuto</menuitem> sledování osnovy zakážete."
#. zV9BS
#: 02110000.xhp
@@ -1922,7 +1922,7 @@ msgctxt ""
"par_id1001603575103843\n"
"help.text"
msgid "<link href=\"text/swriter/guide/arrange_chapters.xhp\" name=\"chapnavigation\">Using Navigator to Arrange Headings</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/arrange_chapters.xhp\" name=\"kapitoly v Navigátoru\">Použití Navigátoru k uspořádání nadpisů</link>"
#. QGQEs
#: 02110100.xhp
@@ -5081,7 +5081,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Indents (Sections)"
-msgstr ""
+msgstr "Odsazení (sekce)"
#. ZHUTB
#: 04020200.xhp
@@ -6980,7 +6980,7 @@ msgctxt ""
"par_id3150138\n"
"help.text"
msgid "<variable id=\"datetimeformat\">When you click \"Additional formats\", the <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph>Number Format</emph></link> dialog opens, where you can define a custom format. </variable>"
-msgstr ""
+msgstr "<variable id=\"datetimeformat\">Klepnutím na „Další formáty“ otevřete dialogové okno <link href=\"text/shared/01/05020300.xhp\" name=\"Formát čísla\"><emph>Formát čísla</emph></link>, kde můžete vytvořit vlastní formát.</variable>"
#. ECQSr
#: 04090001.xhp
@@ -7034,7 +7034,7 @@ msgctxt ""
"par_id3154580\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/level\">Enter outline level of the chapter to be displayed. The inserted field will display the value taken from last paragraph with the specified outline level placed before the inserted field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/level\">Zadejte úroveň osnovy kapitoly, která se má zobrazit. Vložené pole zobrazí hodnotu převzatou z nejbližšího odstavce před vloženým polem, který má úroveň osnovy určenu.</ahelp>"
#. GtaP3
#: 04090001.xhp
@@ -16403,7 +16403,7 @@ msgctxt ""
"hd_id3155625\n"
"help.text"
msgid "Settings"
-msgstr ""
+msgstr "Nastavení"
#. eEhFJ
#: 05040500.xhp
@@ -16448,7 +16448,7 @@ msgctxt ""
"par_id971604735234085\n"
"help.text"
msgid "Tooltips describe each predefined selection."
-msgstr ""
+msgstr "Předdefinované výběry jsou popsány v tipech nápovědy."
#. 2Dr2B
#: 05040500.xhp
@@ -16475,7 +16475,7 @@ msgctxt ""
"par_id321604744698332\n"
"help.text"
msgid "The following two options are only available when formatting sections."
-msgstr ""
+msgstr "Následující dvě možnosti jsou k dispozici pouze pro formátování sekcí."
#. znZph
#: 05040500.xhp
@@ -16538,7 +16538,7 @@ msgctxt ""
"par_id3147176\n"
"help.text"
msgid "If the <emph>AutoWidth</emph> check box is not selected, enter the width and spacing options for the columns."
-msgstr ""
+msgstr "Pokud není zaškrtnuto pole <emph>Automatická šířka</emph>, určete nastavení šířky a vzdáleností sloupců."
#. WKBWJ
#: 05040500.xhp
@@ -16547,7 +16547,7 @@ msgctxt ""
"hd_id3147562\n"
"help.text"
msgid "Column"
-msgstr ""
+msgstr "Sloupec"
#. EQzit
#: 05040500.xhp
@@ -16583,7 +16583,7 @@ msgctxt ""
"par_id3149287\n"
"help.text"
msgid "<image id=\"img_id3149750\" src=\"res/sc06301.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149750\">Left Arrow Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149750\" src=\"res/sc06301.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149750\">Ikona šipky doleva</alt></image>"
#. xFUCF
#: 05040500.xhp
@@ -16619,7 +16619,7 @@ msgctxt ""
"par_id3152938\n"
"help.text"
msgid "<image id=\"img_id3152948\" src=\"res/sc06300.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152948\">Right Arrow Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152948\" src=\"res/sc06300.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152948\">Ikona šipky doprava</alt></image>"
#. EFqg6
#: 05040500.xhp
@@ -16691,7 +16691,7 @@ msgctxt ""
"hd_id3155775\n"
"help.text"
msgid "Style"
-msgstr ""
+msgstr "Styl"
#. yYDqn
#: 05040500.xhp
@@ -16709,7 +16709,7 @@ msgctxt ""
"hd_id931604684769944\n"
"help.text"
msgid "Width"
-msgstr ""
+msgstr "Šířka"
#. H2vfk
#: 05040500.xhp
@@ -16718,7 +16718,7 @@ msgctxt ""
"par_id931604684783303\n"
"help.text"
msgid "Enter width of the separator line."
-msgstr ""
+msgstr "Zadejte šířku oddělovací čáry."
#. jT4PA
#: 05040500.xhp
@@ -16727,7 +16727,7 @@ msgctxt ""
"hd_id421604684687071\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Barva"
#. CuuBH
#: 05040500.xhp
@@ -16736,7 +16736,7 @@ msgctxt ""
"par_id601604684699407\n"
"help.text"
msgid "Select a color for the separator line."
-msgstr ""
+msgstr "Vyberte barvu oddělovací čáry."
#. u3jAb
#: 05040500.xhp
@@ -20336,7 +20336,7 @@ msgctxt ""
"par_id3149352\n"
"help.text"
msgid "<variable id=\"objekttext\"><ahelp hid=\".uno:FrameDialog\">Opens a dialog where you can modify the properties of the selected object, for example, its size and name.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"objekttext\"><ahelp hid=\".uno:FrameDialog\">Otevře dialogové okno, ve kterém můžete změnit vlastnosti vybraného objektu, např. velikost a název.</ahelp></variable>"
#. F8EcE
#: 05080000.xhp
@@ -23036,7 +23036,7 @@ msgctxt ""
"par_id3147490\n"
"help.text"
msgid "Style actions menu"
-msgstr ""
+msgstr "Nabídka Akce stylů"
#. KFB5g
#: 05140000.xhp
@@ -23090,7 +23090,7 @@ msgctxt ""
"par_idN10A31\n"
"help.text"
msgid "<link href=\"text/swriter/01/05170000.xhp\" name=\"loadstyles\"><menuitem>Load Styles</menuitem></link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05170000.xhp\" name=\"načíst styly\"><menuitem>Načíst styly</menuitem></link>"
#. TSnrm
#: 05140000.xhp
@@ -23270,7 +23270,7 @@ msgctxt ""
"par_id3154017\n"
"help.text"
msgid "<ahelp hid=\".uno:OnlineAutoFormat\">Automatically formats the document while you type. To set the formatting options, choose <menuitem>Tools - AutoCorrect - Options</menuitem>, and then click the <emph>Options</emph> tab.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:OnlineAutoFormat\">Automaticky formátuje dokument, když píšete. Možnosti formátování nastavíte volbou <menuitem>Nástroje - Nastavení automatických oprav</menuitem> a klepnutím na kartu <emph>Možnosti</emph>.</ahelp>"
#. Ddr5r
#: 05150100.xhp
@@ -24053,7 +24053,7 @@ msgctxt ""
"par_id3147514\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/overwrite\">Replaces styles in the current document that have the same name as the styles you are loading. No warning message is given.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/overwrite\">Nahradí styly v aktuálním dokumentu, které mají stejný název jako načítané styly. Před nahrazením se nezobrazí žádné upozornění.</ahelp>"
#. EqEyd
#: 05170000.xhp
@@ -24062,7 +24062,7 @@ msgctxt ""
"par_id3150358\n"
"help.text"
msgid "Only applied styles and modified styles are loaded from a document or template. The styles shown in the sidebar cannot be used as a guide."
-msgstr ""
+msgstr "Z dokumentu či šablony se načtou pouze použité nebo změněné styly. Za tyto styly nelze považovat seznam, který se zobrazuje na postranní liště."
#. ivfvH
#: 05170000.xhp
@@ -24521,7 +24521,7 @@ msgctxt ""
"par_idN1062D\n"
"help.text"
msgid "<link href=\"text/shared/01/01100400.xhp\" name=\"File - Properties - Statistics\"><menuitem>File - Properties - Statistics</menuitem> </link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01100400.xhp\" name=\"Soubor - Vlastnosti - Statistika\"><menuitem>Soubor - Vlastnosti - Statistika</menuitem></link>"
#. qinJr
#: 06060000.xhp
@@ -27005,7 +27005,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Reference (Edit)"
-msgstr ""
+msgstr "Odkaz (Úpravy)"
#. 5sECM
#: edit_reference_submenu.xhp
@@ -27014,7 +27014,7 @@ msgctxt ""
"hd_id1001603128268578\n"
"help.text"
msgid "<link href=\"swriter/01/edit_reference_submenu.xhp\" name=\"editreference\">Reference</link>"
-msgstr ""
+msgstr "<link href=\"swriter/01/edit_reference_submenu.xhp\" name=\"Upravit odkaz\">Odkaz</link>"
#. 6LFFX
#: edit_reference_submenu.xhp
@@ -27023,7 +27023,7 @@ msgctxt ""
"par_id411603128291771\n"
"help.text"
msgid "A submenu that offers possibilities to edit footnotes, endnotes, index entries, and bibliography entries."
-msgstr ""
+msgstr "Podnabídka nabízející možnosti úprav poznámek pod čarou, vysvětlivek a položek rejstříku a použité literatury."
#. vfaCD
#: edit_reference_submenu.xhp
@@ -27032,7 +27032,7 @@ msgctxt ""
"hd_id3147302\n"
"help.text"
msgid "<link href=\"text/swriter/01/02150000.xhp\" name=\"Footnotes\">Footnote or Endnote</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02150000.xhp\" name=\"Poznámky pod čarou\">Poznámka pod čarou nebo vysvětlivka</link>"
#. RKfyJ
#: edit_reference_submenu.xhp
@@ -27041,7 +27041,7 @@ msgctxt ""
"hd_id3147327\n"
"help.text"
msgid "<link href=\"text/swriter/01/02160000.xhp\" name=\"Index Entry\">Index Entry</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02160000.xhp\" name=\"Položka rejstříku\">Položka rejstříku</link>"
#. cH3QF
#: edit_reference_submenu.xhp
@@ -27050,7 +27050,7 @@ msgctxt ""
"hd_id3147352\n"
"help.text"
msgid "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Bibliography Entry</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02130000.xhp\" name=\"Položka použité literatury\">Položka použité literatury</link>"
#. 4qVPZ
#: format_object.xhp
@@ -27284,7 +27284,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters or send email messages to many recipients.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spustí průvodce hromadnou korespondencí pro vytvoření hromadného dopisu nebo odeslání e-mailových zpráv více příjemcům.</ahelp>"
#. bXSUB
#: mailmerge00.xhp
@@ -27545,7 +27545,7 @@ msgctxt ""
"hd_id6954863\n"
"help.text"
msgid "Email message"
-msgstr ""
+msgstr "E-mailová zpráva"
#. YA54f
#: mailmerge02.xhp
@@ -27554,7 +27554,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "<ahelp hid=\".\">Creates mail merge documents that you can send as an email message or an email attachment.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vytvoří dokumenty hromadné korespondence, které můžete odeslat jako e-mailové zprávy nebo jako přílohy e-mailu.</ahelp>"
#. 8sABv
#: mailmerge02.xhp
@@ -27617,7 +27617,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "The title of this page is <emph>Insert address block</emph> for letters and <emph>Select address list</emph> for email messages."
-msgstr ""
+msgstr "Název této strany je <emph>Blok s adresou</emph> pro dopisy a <emph>Seznam adres</emph> pro e-mailové zprávy."
#. GEW7x
#: mailmerge03.xhp
@@ -28292,7 +28292,7 @@ msgctxt ""
"par_idN1053D\n"
"help.text"
msgid "Specify additional email recipients for the <link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">mail merge</link> document."
-msgstr ""
+msgstr "Určete další příjemce e-mailu pro dokument <link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">hromadné korespondence</link>."
#. fg2kJ
#: mm_copyto.xhp
@@ -28310,7 +28310,7 @@ msgctxt ""
"par_idN10552\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the recipients of email copies, separated by a semicolon (;).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zadejte příjemce kopie e-mailu, jména oddělte středníkem (;).</ahelp>"
#. wUHkK
#: mm_copyto.xhp
@@ -28328,7 +28328,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the recipients of email blind copies, separated by a semicolon (;).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zadejte příjemce skryté kopie e-mailu, jména oddělte středníkem (;).</ahelp>"
#. FHSJ5
#: mm_cusaddlis.xhp
@@ -28454,7 +28454,7 @@ msgctxt ""
"par_idN10540\n"
"help.text"
msgid "Specify the salutation layout for <link href=\"text/swriter/01/mailmerge04.xhp\">mail merge</link> or <link href=\"text/swriter/01/mm_emabod.xhp\">email merge</link> documents. The name of this dialog is different for female recipients and male recipients."
-msgstr ""
+msgstr "Určete vzhled oslovení pro dokumenty <link href=\"text/swriter/01/mailmerge04.xhp\">dopisů hromadné korespondence</link> nebo <link href=\"text/swriter/01/mm_emabod.xhp\">hromadnou korespondenci zpráv elektronické pošty</link>. Název tohoto dialogového okna se liší pro mužské a ženské příjemce."
#. 2wy4R
#: mm_cusgrelin.xhp
@@ -28607,7 +28607,7 @@ msgctxt ""
"par_idN10540\n"
"help.text"
msgid "<ahelp hid=\".\">Type the message and the salutation for files that you send as <link href=\"text/swriter/01/mailmerge08.xhp\">email</link> attachments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zadejte zprávu a oslovení pro soubory, které posíláte jako <link href=\"text/swriter/01/mailmerge08.xhp\">e-mailové</link> přílohy.</ahelp>"
#. 5SMA7
#: mm_emabod.xhp
@@ -28616,7 +28616,7 @@ msgctxt ""
"par_idN10554\n"
"help.text"
msgid "This email should contain a salutation"
-msgstr ""
+msgstr "Tento e-mail by měl obsahovat oslovení"
#. rmBz6
#: mm_emabod.xhp
@@ -28625,7 +28625,7 @@ msgctxt ""
"par_idN10558\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a salutation to the email.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Přidá do e-mailu oslovení.</ahelp>"
#. GFHN4
#: mm_emabod.xhp
@@ -28787,7 +28787,7 @@ msgctxt ""
"par_idN105B3\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the main text of the email.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zadejte hlavní text e-mailu.</ahelp>"
#. A5QMX
#: mm_emailmergeddoc.xhp
@@ -28796,7 +28796,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Send merged document as email"
-msgstr ""
+msgstr "Odeslat vygenerovaný dokument e-mailem"
#. ZEELF
#: mm_emailmergeddoc.xhp
@@ -28805,7 +28805,7 @@ msgctxt ""
"hd_id201703192214041173\n"
"help.text"
msgid "<link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">Send merged document as email</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">Odeslat vygenerovaný dokument e-mailem</link>"
#. TmBHD
#: mm_emailmergeddoc.xhp
@@ -28814,7 +28814,7 @@ msgctxt ""
"par_id201703192214161498\n"
"help.text"
msgid "<ahelp hid=\".\">Sends the mail merge output as email messages to all or some recipients.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Odešle výstup hromadné korespondence jako e-mailové zprávy všem nebo některým příjemcům.</ahelp>"
#. z8DLS
#: mm_emailmergeddoc.xhp
@@ -28823,7 +28823,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "Email options"
-msgstr ""
+msgstr "Možnosti e-mailu"
#. P3AsV
#: mm_emailmergeddoc.xhp
@@ -28841,7 +28841,7 @@ msgctxt ""
"par_idN105EC\n"
"help.text"
msgid "<ahelp hid=\".\">Select the database field that contains the email address of the recipient.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vyberte pole databáze, které obsahuje e-mailovou adresu příjemce.</ahelp>"
#. AERBW
#: mm_emailmergeddoc.xhp
@@ -28877,7 +28877,7 @@ msgctxt ""
"par_idN10604\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the subject line for the email messages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zadejte předmět e-mailových zpráv.</ahelp>"
#. FY8Cr
#: mm_emailmergeddoc.xhp
@@ -28895,7 +28895,7 @@ msgctxt ""
"par_idN1060B\n"
"help.text"
msgid "<ahelp hid=\".\">Select the mail format for the email messages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vyberte formát e-mailových zpráv.</ahelp>"
#. vtgFn
#: mm_emailmergeddoc.xhp
@@ -28922,7 +28922,7 @@ msgctxt ""
"par_idN10615\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Otevře dialogové okno <link href=\"text/swriter/01/mm_emabod.xhp\">E-mailová zpráva</link>, kde můžete zadat e-mailovou zprávu pro soubory hromadné korespondence, které se pošlou jako přílohy.</ahelp>"
#. bARe2
#: mm_emailmergeddoc.xhp
@@ -28967,7 +28967,7 @@ msgctxt ""
"par_idN10631\n"
"help.text"
msgid "<ahelp hid=\".\">Select to send emails to all recipients.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zvolte, pokud chcete odeslat e-maily všem příjemcům.</ahelp>"
#. TLnNz
#: mm_emailmergeddoc.xhp
@@ -29039,7 +29039,7 @@ msgctxt ""
"par_idN10646\n"
"help.text"
msgid "<ahelp hid=\".\">Click to start sending emails.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klepnutím spustíte odesílání e-mailů.</ahelp>"
#. udnuD
#: mm_finent.xhp
@@ -30110,7 +30110,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Outline Content Visibility"
-msgstr ""
+msgstr "Viditelnost obsahu osnovy"
#. vE4fu
#: outlinecontent_visibility.xhp
@@ -30119,7 +30119,7 @@ msgctxt ""
"bm_id141603814665942\n"
"help.text"
msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>viditelnost obsahu osnovy;povolení</bookmark_value>"
#. JDacS
#: outlinecontent_visibility.xhp
@@ -30128,7 +30128,7 @@ msgctxt ""
"hd_id311603588857975\n"
"help.text"
msgid "Outline Content Visibility"
-msgstr ""
+msgstr "Viditelnost obsahu osnovy"
#. iBBcY
#: outlinecontent_visibility.xhp
@@ -30137,7 +30137,7 @@ msgctxt ""
"par_id781603591328239\n"
"help.text"
msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
-msgstr ""
+msgstr "Skryje nebo zobrazí veškerý obsah příslušný k nadpisům, a to včetně textu, obrázků, tabulek, rámců, tvarů a textových polí."
#. 9uBsE
#: outlinecontent_visibility.xhp
@@ -30146,7 +30146,7 @@ msgctxt ""
"par_id941603713070812\n"
"help.text"
msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
-msgstr ""
+msgstr "Tato vlastnost je experimentální. Měla by být stabilní, avšak může se zachovat nečekaně nebo nespolehlivě.<br/><br/>Chcete-li ji povolit, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, poté (stále v okně <menuitem>Možnosti</menuitem> zvolte <emph>%PRODUCTNAME Writer (nebo %PRODUCTNAME Writer/Web) - View</emph> a zaškrtněte pole <menuitem>Zobrazit viditelnost obsahu osnovy</menuitem>."
#. WeiZ3
#: outlinecontent_visibility.xhp
@@ -30155,7 +30155,7 @@ msgctxt ""
"par_id431603592299868\n"
"help.text"
msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
-msgstr ""
+msgstr "v Navigátoru (<keycode>F5</keycode>) (pro <emph>Nadpisy</emph> v pohledu na obsah)"
#. uqAng
#: outlinecontent_visibility.xhp
@@ -30164,7 +30164,7 @@ msgctxt ""
"par_id801603592797580\n"
"help.text"
msgid "With mouse (on a heading)"
-msgstr ""
+msgstr "pomocí myši (u nadpisu)"
#. DKDnc
#: outlinecontent_visibility.xhp
@@ -30173,7 +30173,7 @@ msgctxt ""
"par_id401603902789914\n"
"help.text"
msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
-msgstr ""
+msgstr "Pomocí této vlastnosti můžete skrývat a zobrazovat obsah jednotlivých odstavců, které mají nenulovou úroveň osnovy (takové se obecně označují jako nadpisy a podnadpisy). V %PRODUCTNAME je nadpisem odstavec s úrovní osnovy 1 až 10, kde 1 značí nejvyšší úroveň a 10 nejnižší. Například odstavec s úrovní osnovy 3 je podpodnadpisem odstavce úrovně 1. Skrývat a zobrazovat lze jak obsah pro jediný nadpis, tak obsah pro podnadpisy relativně k určité úrovni."
#. ZnHHW
#: outlinecontent_visibility.xhp
@@ -30182,7 +30182,7 @@ msgctxt ""
"bm_id711604659189386\n"
"help.text"
msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Navigátor;viditelnost obsahu osnovy</bookmark_value><bookmark_value>viditelnost obsahu osnovy;pomocí Navigátoru</bookmark_value>"
#. xVBGd
#: outlinecontent_visibility.xhp
@@ -30191,7 +30191,7 @@ msgctxt ""
"hd_id931603593824856\n"
"help.text"
msgid "Using Outline Content Visibility with Navigator"
-msgstr ""
+msgstr "Použití viditelnosti obsahu osnovy pomocí Navigátoru"
#. iHEx5
#: outlinecontent_visibility.xhp
@@ -30200,7 +30200,7 @@ msgctxt ""
"par_id161603902590811\n"
"help.text"
msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
-msgstr ""
+msgstr "V Navigátoru se všechny příkazy pro viditelnost osnovy zobrazují v místní nabídce pro kategorii <emph>Nadpisy</emph> a pro její položky. Klepnutím pravým tlačítkem kamkoliv do okna s pohledem na obsah otevřete místní nabídku pro vybranou položku (platí to i pro ikonu Nadpisy) a poté zvolte <menuitem>Viditelnost obsahu osnovy</menuitem> a jeden z následujících příkazů (dostupných podle toho, co je vybráno):"
#. XymTC
#: outlinecontent_visibility.xhp
@@ -30209,7 +30209,7 @@ msgctxt ""
"hd_id111603594832364\n"
"help.text"
msgid "Hide content for all headings"
-msgstr ""
+msgstr "Skrýt obsah pro všechny nadpisy"
#. Ya9AD
#: outlinecontent_visibility.xhp
@@ -30218,7 +30218,7 @@ msgctxt ""
"par_id171603594868435\n"
"help.text"
msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
-msgstr ""
+msgstr "Je vybrána ikona Nadpisy. Klepněte pravým tlačítkem a zvolte <menuitem>Viditelnost obsahu osnovy - Skrýt vše</menuitem>."
#. qAiBQ
#: outlinecontent_visibility.xhp
@@ -30227,7 +30227,7 @@ msgctxt ""
"par_id201603902018701\n"
"help.text"
msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Ikona Nadpisy</alt></image>"
#. yTGK2
#: outlinecontent_visibility.xhp
@@ -30236,7 +30236,7 @@ msgctxt ""
"par_id111603902018701\n"
"help.text"
msgid "Headings icon"
-msgstr ""
+msgstr "Ikona Nadpisy"
#. YzYYt
#: outlinecontent_visibility.xhp
@@ -30245,7 +30245,7 @@ msgctxt ""
"hd_id381603902284237\n"
"help.text"
msgid "Show content for all headings"
-msgstr ""
+msgstr "Zobrazit obsah pro všechny nadpisy"
#. uHoJa
#: outlinecontent_visibility.xhp
@@ -30254,7 +30254,7 @@ msgctxt ""
"par_id431603902342365\n"
"help.text"
msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
-msgstr ""
+msgstr "Je vybrána ikona Nadpisy. Klepněte pravým tlačítkem a zvolte <menuitem>Viditelnost obsahu osnovy - Zobrazit vše</menuitem>."
#. mRE8s
#: outlinecontent_visibility.xhp
@@ -30263,7 +30263,7 @@ msgctxt ""
"hd_id991603595158130\n"
"help.text"
msgid "Hide content for all subheadings, relative to an outline level"
-msgstr ""
+msgstr "Skrýt obsah pro všechny podnadpisy relativní k úrovni osnovy"
#. q8qzv
#: outlinecontent_visibility.xhp
@@ -30272,7 +30272,7 @@ msgctxt ""
"par_id871603595297049\n"
"help.text"
msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
-msgstr ""
+msgstr "Je vybrán nadpis s podnadpisy. Klepnutím pravým tlačítkem a volbou <menuitem>Viditelnost obsahu osnovy - Skrýt vše</menuitem> skryjete veškerý obsah až po další nadpis se stejnou úrovní osnovy."
#. ZidnP
#: outlinecontent_visibility.xhp
@@ -30281,7 +30281,7 @@ msgctxt ""
"hd_id131603923006495\n"
"help.text"
msgid "Show content for all subheadings, relative to an outline level"
-msgstr ""
+msgstr "Zobrazit obsah pro všechny podnadpisy relativní k úrovni osnovy"
#. PBKaL
#: outlinecontent_visibility.xhp
@@ -30290,7 +30290,7 @@ msgctxt ""
"par_id501603923049090\n"
"help.text"
msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
-msgstr ""
+msgstr "Je vybrán nadpis s podnadpisy. Klepnutím pravým tlačítkem a volbou <menuitem>Viditelnost obsahu osnovy - Zobrazit vše</menuitem> zobrazíte veškerý obsah až po další nadpis se stejnou úrovní osnovy."
#. TEbxh
#: outlinecontent_visibility.xhp
@@ -30299,7 +30299,7 @@ msgctxt ""
"par_id111604356830363\n"
"help.text"
msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
-msgstr ""
+msgstr "Pokud je pro obsah skrytý pro jeden či více podnadpisů (ale ne pro všechny), v místní nabídce pro nadpis vyšší úrovně se zobrazí jak příkaz <menuitem>Zobrazit vše</menuitem>, tak <menuitem>Skrýt vše</menuitem>."
#. YZWyc
#: outlinecontent_visibility.xhp
@@ -30308,7 +30308,7 @@ msgctxt ""
"hd_id431603594946909\n"
"help.text"
msgid "Hide or show content under a single heading"
-msgstr ""
+msgstr "Skrýt nebo zobrazit obsah pro jediný nadpis"
#. t26Hb
#: outlinecontent_visibility.xhp
@@ -30317,7 +30317,7 @@ msgctxt ""
"par_id441603594965562\n"
"help.text"
msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
-msgstr ""
+msgstr "S vybraným nadpisem klepněte pravým tlačítkem a zvolte <menuitem>Viditelnost obsahu osnovy - Přepnout</menuitem>."
#. DFcCW
#: outlinecontent_visibility.xhp
@@ -30326,7 +30326,7 @@ msgctxt ""
"par_id961604566488300\n"
"help.text"
msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
-msgstr ""
+msgstr "Tyto příkazy určují, co se zobrazuje v dokumentu, nikoliv to, co se zobrazuje v Navigátoru. Pro tento účel použijte znaménka <widget>-</widget> a <widget>+</widget> (či šipku) nebo příkazy <menuitem>Sbalit vše / Rozbalit vše</menuitem> v <link href=\"text/shared/guide/contextmenu.xhp\" name=\"místní nabídka\">místní nabídce</link> pro nadpisy."
#. jCcW3
#: outlinecontent_visibility.xhp
@@ -30335,7 +30335,7 @@ msgctxt ""
"bm_id861604659229058\n"
"help.text"
msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>viditelnost obsahu osnovy;pomocí myši</bookmark_value>"
#. FKecH
#: outlinecontent_visibility.xhp
@@ -30344,7 +30344,7 @@ msgctxt ""
"hd_id961603593527184\n"
"help.text"
msgid "Using Outline Content Visibility with Mouse"
-msgstr ""
+msgstr "Použití viditelnosti obsahu osnovy pomocí myši"
#. trciq
#: outlinecontent_visibility.xhp
@@ -30353,7 +30353,7 @@ msgctxt ""
"hd_id641604365236177\n"
"help.text"
msgid "Over a heading"
-msgstr ""
+msgstr "Najetí nad nadpis"
#. zBdgM
#: outlinecontent_visibility.xhp
@@ -30362,7 +30362,7 @@ msgctxt ""
"par_id331603591793655\n"
"help.text"
msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
-msgstr ""
+msgstr "Stiskněte klávesu <keycode>Ctrl</keycode>. Najeďte ukazatelem myši nad nadpis (nebo poblíž řádku s nadpisem).<br/>(Zobrazí se při tom šipka v levém okraji.)"
#. FRtMg
#: outlinecontent_visibility.xhp
@@ -30371,7 +30371,7 @@ msgctxt ""
"par_id681604492926867\n"
"help.text"
msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
-msgstr ""
+msgstr "Jakmile se ukazatel změní na symbol ruky, jsou k dispozici následující příkazy:"
#. BnPmu
#: outlinecontent_visibility.xhp
@@ -30380,7 +30380,7 @@ msgctxt ""
"par_id451603594434731\n"
"help.text"
msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
-msgstr ""
+msgstr "<variable id=\"click-toggle\">Klepnutím přepnete <variable id=\"visibility\">viditelnost obsahu od vybraného odstavce až po následující</variable>.</variable>"
#. CwqVy
#: outlinecontent_visibility.xhp
@@ -30389,7 +30389,7 @@ msgctxt ""
"par_id71603594448708\n"
"help.text"
msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
-msgstr ""
+msgstr "<variable id=\"rightclick\">Klepnutím pravým tlačítkem zobrazíte nebo skryjete veškerý obsah od vybraného nadpisu (a všech jeho podnadpisů) až po následující nadpis stejné úrovně osnovy.</variable>"
#. bhurB
#: outlinecontent_visibility.xhp
@@ -30398,7 +30398,7 @@ msgctxt ""
"hd_id101604365425000\n"
"help.text"
msgid "Arrows in left margin"
-msgstr ""
+msgstr "Šipky v levém okraji"
#. CVGFc
#: outlinecontent_visibility.xhp
@@ -30407,7 +30407,7 @@ msgctxt ""
"par_id541604366257774\n"
"help.text"
msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
-msgstr ""
+msgstr "Umístěte ukazatel myši do levého okraje poblíž nadpisu. (Je-li obsah zobrazen, objeví se šipka.)"
#. pyDjy
#: outlinecontent_visibility.xhp
@@ -30416,7 +30416,7 @@ msgctxt ""
"par_id451603594341994\n"
"help.text"
msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
-msgstr ""
+msgstr "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
#. AwFxg
#: outlinecontent_visibility.xhp
@@ -30425,7 +30425,7 @@ msgctxt ""
"par_id71603594662394\n"
"help.text"
msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
-msgstr ""
+msgstr "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
#. UkamL
#: outlinecontent_visibility.xhp
@@ -30434,7 +30434,7 @@ msgctxt ""
"hd_id681603875505853\n"
"help.text"
msgid "Customized Control"
-msgstr ""
+msgstr "Přizpůsobené ovládání"
#. GEyFk
#: outlinecontent_visibility.xhp
@@ -30443,7 +30443,7 @@ msgctxt ""
"par_id661603875533124\n"
"help.text"
msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
-msgstr ""
+msgstr "Následující příkazy je možné přidat jako tlačítko na nástrojovou lištu, jako položku do nabídky či místní nabídky nebo jako klávesovou zkratku."
#. DZDTC
#: outlinecontent_visibility.xhp
@@ -30452,7 +30452,7 @@ msgctxt ""
"par_id541603875590171\n"
"help.text"
msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
-msgstr ""
+msgstr "<emph>Zobrazit viditelnost obsahu osnovy</emph> tuto vlastnost povolí, nebo zakáže (v Navigátoru i při použití myši)."
#. XeqHN
#: outlinecontent_visibility.xhp
@@ -30461,7 +30461,7 @@ msgctxt ""
"par_id791603875551155\n"
"help.text"
msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
-msgstr ""
+msgstr "<emph>Přepnout viditelnost obsahu osnovy</emph> přepne <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
#. DKBZq
#: outlinecontent_visibility.xhp
@@ -30470,7 +30470,7 @@ msgctxt ""
"par_id481604366466503\n"
"help.text"
msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
-msgstr ""
+msgstr "Umístěte kurzor do dokumentu. Příkazem <menuitem>Přepnout</menuitem> skryjete obsah vztahující se k prvnímu nadpisu nad pozicí kurzoru."
#. wqMek
#: outlinecontent_visibility.xhp
@@ -30479,7 +30479,7 @@ msgctxt ""
"par_id861604494831275\n"
"help.text"
msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
-msgstr ""
+msgstr "V závislosti na přizpůsobení může být tento příkaz <menuitem>Přepnout</menuitem> k dispozici jako tlačítko na nástrojové liště, jako položka nabídky či místní nabídky (doporučený Cíl je \"Text\") nebo jako klávesová zkratka."
#. PPkhx
#: outlinecontent_visibility.xhp
@@ -30488,7 +30488,7 @@ msgctxt ""
"hd_id81604416400633\n"
"help.text"
msgid "Saving Your Configuration"
-msgstr ""
+msgstr "Ukládání nastavení"
#. VbFMU
#: outlinecontent_visibility.xhp
@@ -30497,7 +30497,7 @@ msgctxt ""
"par_id101604416417417\n"
"help.text"
msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
-msgstr ""
+msgstr "V dokumentech uložených ve formátu .odt se zachová aktuální nastavení skrytého a zobrazeného obsahu. Změna viditelnosti obsahu nezmění dokument. Pokud proto viditelnost změníte poté, co jste dokument uložili, je nutné jej uložit znovu, aby se změny viditelnosti zachovaly."
#. RQvTc
#: outlinecontent_visibility.xhp
@@ -30506,7 +30506,7 @@ msgctxt ""
"par_id981604412273516\n"
"help.text"
msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05030800.xhp\" name=\"úroveň osnovy\">Nastavení úrovně osnovy odstavce</link>"
#. By4tx
#: outlinecontent_visibility.xhp
@@ -30515,7 +30515,7 @@ msgctxt ""
"par_id31604412603892\n"
"help.text"
msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/06060100.xhp\" name=\"číslování kapitol\">Změna úrovně osnovy pro nadpisy</link>"
#. GFNAq
#: outlinecontent_visibility.xhp
@@ -30524,7 +30524,7 @@ msgctxt ""
"par_id401603926410184\n"
"help.text"
msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/edit_symbolbar\" name=\"přidat tlačítko\">Přidání tlačítka na nástrojovou lištu</link>"
#. UEKDH
#: outlinecontent_visibility.xhp
@@ -30533,7 +30533,7 @@ msgctxt ""
"par_id271604411886782\n"
"help.text"
msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140300.xhp\" name=\"upravit nabídku\">Přizpůsobení místní nabídky</link>"
#. ucbYZ
#: outlinecontent_visibility.xhp
@@ -30542,7 +30542,7 @@ msgctxt ""
"par_id251603931664784\n"
"help.text"
msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140200.xhp\" name=\"vytvoření klávesové zkratky\">Vytvoření klávesové zkratky</link>"
#. KadxR
#: selection_mode.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter/guide.po b/source/cs/helpcontent2/source/text/swriter/guide.po
index ceeb88da1e4..d302c4b19df 100644
--- a/source/cs/helpcontent2/source/text/swriter/guide.po
+++ b/source/cs/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-21 15:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/cs/>\n"
"Language: cs\n"
@@ -10301,7 +10301,7 @@ msgctxt ""
"bm_id3156383\n"
"help.text"
msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>čísla; automatické rozpoznávání v tabulkách v textu</bookmark_value><bookmark_value>tabulky; automatické rozpoznávání</bookmark_value><bookmark_value>tabulky;formátování data</bookmark_value><bookmark_value>data;automatické formátování v tabulkách</bookmark_value><bookmark_value>rozpoznávání;čísla</bookmark_value>"
#. aahB7
#: number_date_conv.xhp
@@ -10337,7 +10337,7 @@ msgctxt ""
"par_id3155919\n"
"help.text"
msgid "Choose <menuitem>Table > Number recognition</menuitem>."
-msgstr ""
+msgstr "Zvolte <menuitem>Tabulka - Rozpoznávání čísel</menuitem>."
#. en4GC
#: number_date_conv.xhp
@@ -10346,7 +10346,7 @@ msgctxt ""
"par_id531605970858214\n"
"help.text"
msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
-msgstr ""
+msgstr "Je-li tato vlastnost zapnuta, před příkazem <menuitem>Rozpoznávání čísel</menuitem> se zobrazuje značka zaškrtnutí."
#. hDANA
#: number_date_conv.xhp
@@ -10364,7 +10364,7 @@ msgctxt ""
"par_id781605970689063\n"
"help.text"
msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
-msgstr ""
+msgstr "Tato vlastnost se používá globálně, ve všech tabulkách a dokumentech. Je-li zapnuta a napíšete-li do buňky tabulky datum, automaticky bude zformátováno. Pokud ji zapnete či vypnete, stávájící formátování dat se tím nezmění."
#. gsMre
#: number_date_conv.xhp
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr "Tisk jedné stránky"
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr "Volbou <menuitem>Soubor - Tisk</menuitem> otevřete dialogové okno <emph>Tisk</emph>."
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr "Tisk rozsahu stránek"
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr "Volbou <menuitem>Soubor - Tisk</menuitem> otevřete dialogové okno <emph>Tisk</emph>."
#. hWBFk
@@ -12589,59 +12589,41 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr "Zadejte čísla stránek, které chcete vytisknout."
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
-msgstr "Pro rozsah stránek použijte znak <literal>-</literal> (například <input>1-4</input> vytiskne všechny stránky od 1 do 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
+msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
-msgstr "Lze použít také částečný rozsah."
-
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr "<input>-5</input> vytiskne všechny stránky do čísla 5."
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr "<input>10-</input> vytiskne stránky od 10 do konce dokumentu."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
+msgstr ""
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
-msgstr "Pro seznam stránek použijte znak <literal>,</literal> nebo <literal>;</literal> (například <input>1,3;7</input> vytiskne stránky 1, 3 a 7, volitelně lze doplnit mezery, fungovat bude také 1, 3, 7)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
+msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
-msgstr "Možné jsou také kombinace, například <input>1, 3, 5-10, 15-</input> vytiskne stránky 1, 3, od 5 do 10 a od 15 do konce dokumentu."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
+msgstr ""
#. FRjsx
#: print_selection.xhp
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr "Vyberte obsah, který chcete vytisknout."
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr "Volbou <menuitem>Soubor - Tisk</menuitem> otevřete dialogové okno <emph>Tisk</emph>."
#. iaYKz
@@ -13721,7 +13703,7 @@ msgctxt ""
"par_id391604248923423\n"
"help.text"
msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
-msgstr ""
+msgstr "Tisk s <link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"řádkování stránky\"><emph>řádkováním stránky</emph></link> je užitečné u dokumentů, které mají dvojice vedle sebe umístěných stránek (například kniha nebo příručka), při vícesloupcovém rozvržení nebo u dokumentů, které se mají tisknout oboustranně."
#. XHAM3
#: registertrue.xhp
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Pokud neurčíte jinak, každý nový textový dokument $[officename] bude založen na výchozí šabloně."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] obsahuje <link href=\"text/swriter/01/05130000.xhp\" name=\"předdefinované šablony\">předdefinované šablony</link>, které je možné využít pro tvorbu různých druhů textových dokumentů, jako je například obchodní korespondence."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Chování přímého kurzoru nastavíte volbou <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Předvolby</emph></caseinline><defaultinline><emph>Nástroje - Možnosti</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Pomůcky pro formátování</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Na liště <item type=\"menuitem\">Nástroje</item> klepněte na ikonu <item type=\"menuitem\">Přímý kurzor</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Ikona</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Klepněte do volného místa v dokumentu. Změna ukazatele myši bude odpovídat zarovnání použitého na text, který napíšete:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Ikona</alt></image> Zarovnání vlevo"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Ikona</alt></image> Zarovnání na střed"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Ikona</alt></image> Zarovnání vpravo"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
index 341125e4987..8a87f41ab47 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-17 20:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/cs/>\n"
"Language: cs\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Skrýt snímek"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Text..."
+msgid "Te~xt Attributes..."
+msgstr "Atributy te~xtu..."
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Soubor"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Zarov~nání"
+msgid "Alig~n Objects"
+msgstr "Zarov~nání objektů"
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Z~arovnání"
+msgid "Align Tex~t"
+msgstr "Z~arovnání textu"
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Vybrat do konce odstavce"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Vybrat do slova vpravo"
+msgid "Select to End of Word"
+msgstr "Vybrat do konce slova"
#. bpBoC
#: WriterCommands.xcu
@@ -33946,7 +33946,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~OpenDocument Text..."
-msgstr "E-mailem jako formát OpenDocument ~Text..."
+msgstr "E-mailem jako ~textový dokument OpenDocument..."
#. wnFCt
#: WriterCommands.xcu
diff --git a/source/cs/sc/messages.po b/source/cs/sc/messages.po
index 7cd019ba594..2f4962ee58c 100644
--- a/source/cs/sc/messages.po
+++ b/source/cs/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/cs/>\n"
"Language: cs\n"
@@ -24595,213 +24595,213 @@ msgid "~File"
msgstr "~Soubor"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Určete ohraničení vybraných buněk."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Zvětšit odsazení"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Zmenšit odsazení"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Domů"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Domů"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Pole"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Vložit"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Vložit"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Zarovnání objektu"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Roz_vržení"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Roz~vržení"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistika"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revize"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revize"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Zobrazit"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Zobrazit"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "O_brázek"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresba"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresba"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Převést"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Tisk"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Tisk"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formulář"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Rozšíření"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Rozšíření"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nástroj~e"
@@ -29630,338 +29630,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Řešitel"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr "O_bnovit vše"
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_Možnosti..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Otevře dialogové okno Možnosti řešitele."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "Ř_ešit"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Cílová buňka"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimalizovat výsledek na"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Změnou _buněk"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Zadejte oblast buněk, která se může měnit."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Ma_ximum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Zadejte oblast buněk, která se může měnit."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Zadejte oblast buněk, která se může měnit."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Zadejte odkaz na buňku nebo na cílovou buňku klepněte. Toto pole obsahuje buňku, jejíž hodnota bude optimalizována."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Hodnota"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Zadejte oblast buněk, která se může měnit."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Zadejte oblast buněk, která se může měnit."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Odkaz na buňku"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "O_perátor"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Ho_dnota"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "_Odkaz na buňku"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Odkaz na buňku"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Odkaz na buňku"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Odkaz na buňku"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Celé číslo"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binární"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "O_perátor"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Celé číslo"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binární"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operátor"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Celé číslo"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binární"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operátor"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Celé číslo"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binární"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operátor"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Ho_dnota"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Hodnota"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Hodnota"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Hodnota"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Odstranit"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Odstranit"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Odstranit"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Odstranit"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Omezující podmínky"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Otevře dialogové okno Řešitel. Řešitel umožňuje řešit matematické problémy s více neznámými proměnnými a omezujícími podmínkami, a to pomocí metod hledání řešení (goal seeking)."
diff --git a/source/cs/sd/messages.po b/source/cs/sd/messages.po
index 2a0be65c476..3dd721a572f 100644
--- a/source/cs/sd/messages.po
+++ b/source/cs/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-10 19:35+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/cs/>\n"
@@ -3820,116 +3820,116 @@ msgstr "T~abulka"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Převést"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "O_brázek"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresba"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresba"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formulář"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Pře_dloha"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Předlo~ha"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Rozšíření"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Rozšíření"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nástroje"
@@ -4333,12 +4333,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "N_abídka"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Rozšíření"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6570,219 +6564,219 @@ msgid "~File"
msgstr "~Soubor"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Domů"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Domů"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Pole"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Vložit"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Vložit"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "Rozvrž_ení"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Rozvrž~ení"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pr_ezentace"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Pr~ezentace"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revize"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revize"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Zobrazit"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Zobrazit"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "T_abulka"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "T~abulka"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Převést"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "O_brázek"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresba"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresba"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formulář"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Předlo_ha"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Předlo~ha"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Zobrazit"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Os~nova"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Rozšíření"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Rozšíření"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nástroje"
@@ -7692,12 +7686,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Upravit obrys"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Rozšíření"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/cs/sfx2/messages.po b/source/cs/sfx2/messages.po
index 3fa791f2953..82eda58f0c9 100644
--- a/source/cs/sfx2/messages.po
+++ b/source/cs/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-28 12:00+0000\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562619018.000000\n"
#. bHbFE
@@ -1527,7 +1527,7 @@ msgstr "Přispět"
#: include/sfx2/strings.hrc:274
msgctxt "STR_WHATSNEW"
msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
-msgstr "Poprvé jste spustili %PRODUCTVERSION verze %PRODUCTNAME. Chcete se dozvědět, co je v této verzi nového?"
+msgstr "Poprvé jste spustili %PRODUCTNAME verze %PRODUCTVERSION. Chcete se dozvědět, co je v této verzi nového?"
#. J5UkB
#: include/sfx2/strings.hrc:275
@@ -4133,37 +4133,37 @@ msgstr "Smazat..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Uchytit"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Uvolnit"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Zavřít postranní lištu"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Přizpůsobení"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Obnovit výchozí"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Nastavení postranní lišty"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/cs/starmath/messages.po b/source/cs/starmath/messages.po
index 9b459b3aae3..dae1e286323 100644
--- a/source/cs/starmath/messages.po
+++ b/source/cs/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559835236.000000\n"
#. GrDhX
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Základní věta integrálního počtu"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr "Rovnice chaosu"
diff --git a/source/cs/svx/messages.po b/source/cs/svx/messages.po
index e95f49c5114..84c3502b3d9 100644
--- a/source/cs/svx/messages.po
+++ b/source/cs/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559834188.000000\n"
#. 3GkZj
@@ -7231,10 +7231,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Přizpůsobit snímek aktuálnímu oknu."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "Nelze načíst všechny obrázky SmartArt. K tomuto problému nedojde při uložení dokumentu v Microsoft Office 2010 nebo novější verzi."
#. Bc5Sg
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Lišta navigace"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Zpráva o pádu byla úspěšně nahrána.\n"
-"Zakrátko ji bude možné nalézt na:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Odeslat zprávu o pádu"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Neodesílat"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/cs/sw/messages.po b/source/cs/sw/messages.po
index faf3e9b0367..243ce5746e9 100644
--- a/source/cs/sw/messages.po
+++ b/source/cs/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563223676.000000\n"
#. v3oJv
@@ -100,11 +100,11 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr "Zachovejte správné řazení úrovní nadpisů. Úroveň %LEVEL_CURRENT% nemůže následovat po úrovni %LEVEL_PREV%."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr "Nepoužívejte v dokumentech písmomalbu. Případně se ujistěte, že se používá pouze pro zobrazení příkladu či jiného textu bez významu."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr "Nepoužívejte v dokumentech objekty písmomalby. Případně se ujistěte, že se používá pouze pro zobrazení příkladu či jiného textu bez významu."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -20368,181 +20368,181 @@ msgid "~File"
msgstr "~Soubor"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Domů"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Domů"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Vložit"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "V~ložit"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Rozvrž~ení"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Rozvrž~ení"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "O_dkazy"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "O~dkazy"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revize"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revize"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Zobrazit"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Zobrazit"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "T_abulka"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "T~abulka"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "O_brázek"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresba"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresba"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Tisk"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Tisk"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formulář"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Rozšíření"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Rozšíření"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nástro~je"
@@ -21580,12 +21580,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Upravit obrys"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Rozšíření"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/cy/cui/messages.po b/source/cy/cui/messages.po
index 8ac4c8a592a..f46039ab4a6 100644
--- a/source/cy/cui/messages.po
+++ b/source/cy/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/cy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565800847.000000\n"
#. GyY9M
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Dewiswch Eich Hoff Ryngwyneb Defnyddiwr"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Bar Offer Safonol"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Un Bar Offer"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Bar Ochr"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "Tabiwyd"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "Tabedig Cryno"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Bar Grŵp Cryno"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Bar Grŵp"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Bar Grŵp Cryno"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Sengl Cyd-destunol"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Grwpiau Cyd-destunol"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Un Bar Offer"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Bar Ochr"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
index 6c8db623c5a..3deceef4b29 100644
--- a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-17 20:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/cy/>\n"
"Language: cy\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Cuddio Sleidiau"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Testun..."
+msgid "Te~xt Attributes..."
+msgstr "Priodoleddau ~Testun..."
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Ffeil"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~Alinio"
+msgid "Alig~n Objects"
+msgstr "Alinio ~Gwrthrychau"
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "A~linio"
+msgid "Align Tex~t"
+msgstr "Alinio T~estun"
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Dewis i Ddiwedd Paragraff"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Dewis i'r Gair i'r Dde"
+msgid "Select to End of Word"
+msgstr "Dewis i Ddiwedd Gair"
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/cy/sc/messages.po b/source/cy/sc/messages.po
index 31611e1c6d7..d809a4c096c 100644
--- a/source/cy/sc/messages.po
+++ b/source/cy/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-19 20:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/cy/>\n"
"Language: cy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565695958.000000\n"
#. kBovX
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "~Ffeil"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Pennu borderi'r celloedd hyn."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Cynyddu'r Mewnoliad"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Lleihau'r Mewnoliad"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Cartref"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Cartref"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Maes"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Mewnosod"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Mewnosod"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alinio Gwrthrych"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Cynllun"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Cynllun"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Ystadegau"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Adolygu"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Adolygu"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Golwg"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Golwg"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Ystadegau"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "~Lluniadu"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Lluniadu"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Trosi"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Gwrthrych"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Gwrthrych"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Cyfrwng"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Argraffu"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Argraffu"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "-Ffurflen"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Estyniad"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~styniad"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Offer"
@@ -28628,7 +28628,7 @@ msgstr "Yn nodi, pan fyddwch chi'n gludo celloedd o'r clipfwrdd i ystod celloedd
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
msgctxt "scgeneralpage|enter_paste_mode_cb"
msgid "Press Enter to paste and clear clipboard"
-msgstr ""
+msgstr "Pwyswch Enter i ludo a chlirio'r clipfwrdd"
#. LFenu
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
@@ -29626,338 +29626,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Datrysydd"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr "_Ailosod Popeth"
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_Dewisiadau..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Yn agor y dialog Dewisiadau Datryswr."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Datrys"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Cell _targed"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimeiddio'r canlyniad i"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Drwy newid celloedd"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "_Lleiafswm"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Rhowch yr ystod celloedd y mae modd ei newid."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Mwyaf"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Rhowch yr ystod celloedd y mae modd ei newid."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Rhowch yr ystod celloedd y mae modd ei newid."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Rhowch neu gliciwch gyfeirnod cell y gell darged. Mae'r maes hwn yn cymryd cyfeiriad y gell y mae ei gwerth i'w optimeiddio."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Gwerth"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Rhowch yr ystod celloedd y mae modd ei newid."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Rhowch yr ystod celloedd y mae modd ei newid."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Cyfeirnod cell"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Gweithredydd"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "G_werth"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Cyfeirnod cell"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Cyfeirnod cell"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Cyfeirnod cell"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Cyfeirnod cell"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Cyfanrif"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Deuaidd"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Gweithredwr"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Cyfanrif"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Deuaidd"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Gweithredwr"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Cyfanrif"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Deuaidd"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Gweithredwr"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Cyfanrif"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Deuaidd"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Gweithredwr"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Gwerth"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Gwerth"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Gwerth"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Gwerth"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Tynnu"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Tynnu"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Tynnu"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Tynnu"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Cyfyngu Cyflyrau"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Yn agor y dialog Datryswr. Mae datryswr yn caniatáu i chi ddatrys problemau mathemategol gyda newidynnau anhysbys lluosog a set o gyfyngiadau ar y newidynnau trwy ddulliau ceisio nodau."
diff --git a/source/cy/sd/messages.po b/source/cy/sd/messages.po
index 21997666284..73612abfa1e 100644
--- a/source/cy/sd/messages.po
+++ b/source/cy/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/cy/>\n"
@@ -3819,116 +3819,116 @@ msgstr "~Tabl"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Trosi"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "~Delwedd"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "~Lluniadu"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Lluniadu"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "~Gwrthrych"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Gwrthrych"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Cyfrwng"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Ffurflen"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Meistr"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Prif"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_styniad"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~styniad"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Offer"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "­_Dewislen"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_styniad"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "~Ffeil"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Cartref"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Cartref"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Maes"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Mewnosod"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Mewnosod"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Cynllun"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Cynllun"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Sioe Sleidiau"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Sioe Sleidiau"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Adolygu"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Adolugu"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Golwg"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Golwg"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabl"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabl"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Trosi"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "~Delwedd"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "~Lluniadu"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Lluniadu"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Gwrthrych"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Gwrthrych"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Cyfrwng"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "-Ffurflen"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "~Prif"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Prif"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Golwg"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "A~mlinell"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_styniad"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~styniad"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Offer"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Golygu'r Amlinell"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_styniad"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/cy/sfx2/messages.po b/source/cy/sfx2/messages.po
index 144a10123b7..a02a7aa77d1 100644
--- a/source/cy/sfx2/messages.po
+++ b/source/cy/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-03 11:56+0000\n"
+"PO-Revision-Date: 2020-11-23 20:35+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/cy/>\n"
"Language: cy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565703626.000000\n"
#. bHbFE
@@ -4131,37 +4131,37 @@ msgstr "Dileu..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Doc"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Dad-ddocio"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Cau'r Bar Ochr"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Cyfaddasu"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Adfer y Rhagosodiad"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Gosodiadau'r Bar Ochr"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/cy/starmath/messages.po b/source/cy/starmath/messages.po
index 6ae223e102a..f8b406a3622 100644
--- a/source/cy/starmath/messages.po
+++ b/source/cy/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-17 20:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/cy/>\n"
"Language: cy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563633588.000000\n"
#. GrDhX
@@ -1485,67 +1485,67 @@ msgstr "Hecsadegol lliw"
#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
-msgstr ""
+msgstr "Lliw Cwrel"
#. gPCCe
#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
-msgstr ""
+msgstr "Lliw Rhuddgoch"
#. oDRbR
#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
-msgstr ""
+msgstr "Lliw Glas ganol nos"
#. 4aCMu
#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
-msgstr ""
+msgstr "Lliw Fioled"
#. Qivdb
#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
-msgstr ""
+msgstr "Lliw Oren"
#. CVygm
#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
-msgstr ""
+msgstr "Lliw Orenedig"
#. LbfRK
#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
-msgstr ""
+msgstr "Lliw Gwyrdd y môr"
#. DKivY
#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
-msgstr ""
+msgstr "Lliw Indigo"
#. TZQzN
#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
-msgstr ""
+msgstr "Lliw Pinc poeth"
#. GHgTB
#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
-msgstr ""
+msgstr "Lliw Lafant"
#. HQmw7
#: starmath/inc/strings.hrc:219
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
-msgstr ""
+msgstr "Lliw Eira"
#. A2GQ4
#: starmath/inc/strings.hrc:220
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Theorem calcwlws sylfaenol"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr "Hafaliad caos"
@@ -2331,67 +2331,67 @@ msgstr "melyn"
#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
-msgstr ""
+msgstr "cwrel"
#. RZSh6
#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
-msgstr ""
+msgstr "rhuddgoch"
#. QGibF
#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
-msgstr ""
+msgstr "ganol nos"
#. NKAkW
#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
-msgstr ""
+msgstr "fioled"
#. sF9zc
#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
-msgstr ""
+msgstr "oren"
#. CXMyK
#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
-msgstr ""
+msgstr "orenedig"
#. Ak3yd
#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
-msgstr ""
+msgstr "lafant"
#. DLUaV
#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
-msgstr ""
+msgstr "eira"
#. QDTEU
#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
-msgstr ""
+msgstr "gwyrdd y môr"
#. PNveS
#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
-msgstr ""
+msgstr "indigo"
#. r5S8P
#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
-msgstr ""
+msgstr "pinc poeth"
#. NNmRT
#: starmath/inc/strings.hrc:363
diff --git a/source/cy/svx/messages.po b/source/cy/svx/messages.po
index 27ce8be2bf5..7d5ab1bbf25 100644
--- a/source/cy/svx/messages.po
+++ b/source/cy/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/cy/>\n"
"Language: cy\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Addasu'r sleid i'r ffenestr gyfredol."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Methu llwytho'r holl SmartArts. Bydd cadw yn Microsoft Office 2010 neu hwyrach yn osgoi'r mater yma."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Methu llwytho'r holl wrthrychau SmartArt. Byddai cadw yn Microsoft Office 2010 neu hwyrach yn osgoi hyn."
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Bar Dewis"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Cafodd yr adroddiad chwalu ei lwytho'n llwyddiannus.\n"
-"Bydd yr adroddiad ar gael yn:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Anfon Adroddiad Chwalu"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Peidio ag Anfon"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -16336,7 +16333,7 @@ msgstr "Cardiau _Gwyllt"
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
msgid "Comme_nts"
-msgstr ""
+msgstr "_Sylwadau"
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/cy/sw/messages.po b/source/cy/sw/messages.po
index 7d07fd98351..0576951245d 100644
--- a/source/cy/sw/messages.po
+++ b/source/cy/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-19 20:36+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/cy/>\n"
"Language: cy\n"
@@ -100,11 +100,11 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr "Cadw lefleau penawdau mewn trefn. Dylai lefel pennawd %LEVEL_CURRENT% ddim mynd ar ôl %LEVEL_PREV%."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr "Osgowch fontworks yn eich dogfen. Gwnewch yn siŵr eich bod yn ei ddefnyddio er mwyn dangos sampl neu ddarn o destun diystyr."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr "Osgowch wrthrychau Fontwork yn eich dogfennau. Gwnewch yn siŵr eich bod yn ei ddefnyddio fel samplau neu destunau diystyr eraill."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -17442,7 +17442,7 @@ msgstr "Rhowch nifer y rhesi rydych eu heisiau yn y tabl."
#: sw/uiconfig/swriter/ui/inserttable.ui:245
msgctxt "inserttable|lbwarning"
msgid "Warning : Large tables may adversely affect performance and compatibility"
-msgstr ""
+msgstr "Rhybudd: Gall tablau mawr effeithio'n negyddol ar berfformiad a chydnawsedd"
#. M2tGB
#: sw/uiconfig/swriter/ui/inserttable.ui:261
@@ -20361,181 +20361,181 @@ msgid "~File"
msgstr "~Ffeil"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Cartref"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Cartref"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Mewnosod"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Mewnosod"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Cynllun"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Cynllun"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "C_yfeirnodau"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "~Cyfeiriadau"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Adolygu"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Adolygu"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Golwg"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Golwg"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabl"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabl"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "~Delwedd"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "~Lluniadu"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Lluniadu"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Gwrthrych"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Gwrthrych"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Cyfrwng"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Argraffu"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Argraffu"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "-Ffurflen"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Estyniad"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Estyniad"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Offer"
@@ -21573,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Golygu Amlinell"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Estyniadau"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/da/basctl/messages.po b/source/da/basctl/messages.po
index 1da4fbbfb08..a254852b352 100644
--- a/source/da/basctl/messages.po
+++ b/source/da/basctl/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-04-26 06:20+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/basctlmessages/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1555775013.000000\n"
#. fniWp
@@ -1299,4 +1299,4 @@ msgstr ""
#: basctl/uiconfig/basicide/ui/sortmenu.ui:32
msgctxt "sortmenu|properorder"
msgid "_Proper order"
-msgstr ""
+msgstr "Rigtig rækkefølge"
diff --git a/source/da/cui/messages.po b/source/da/cui/messages.po
index f39cbf72749..cafc8dfc95a 100644
--- a/source/da/cui/messages.po
+++ b/source/da/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-10-03 06:09+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/da/>\n"
"Language: da\n"
@@ -3504,7 +3504,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_CMD"
msgid "⌘ Cmd"
-msgstr "⌘ Cmd"
+msgstr "⌘  Kommando"
#. RpVWs
#. use narrow no-break space U+202F here
@@ -3523,7 +3523,7 @@ msgstr "Alt"
#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "⌥ Opt"
-msgstr "⌥ Opt"
+msgstr "⌥  Alt"
#. DKCuY
#: cui/inc/toolbarmode.hrc:22
@@ -3655,7 +3655,7 @@ msgstr "Avanceret"
#: cui/inc/treeopt.hrc:45
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Basic IDE"
-msgstr "Basic IDE"
+msgstr "Basic-IDE"
#. ZS4Sx
#: cui/inc/treeopt.hrc:46
@@ -4627,7 +4627,7 @@ msgstr "Bedømmelse"
#: cui/uiconfig/ui/additionsdialog.ui:43
msgctxt "menuassignpage|gear_textOnly"
msgid "Downloads"
-msgstr ""
+msgstr "Downloads"
#. A4zUt
#: cui/uiconfig/ui/additionsdialog.ui:52
@@ -12663,13 +12663,13 @@ msgstr "Vælg, hvordan du vil have vist de valgte felters indhold."
#: cui/uiconfig/ui/numberingformatpage.ui:616
msgctxt "numberingformatpage|formatft"
msgid "Fo_rmat"
-msgstr "Fo_rmat"
+msgstr "Format"
#. h3kCx
#: cui/uiconfig/ui/numberingformatpage.ui:657
msgctxt "numberingformatpage|extended_tip|languagelb"
msgid "Specifies the language setting for the selected field."
-msgstr ""
+msgstr "Bestemmer sprogindstillingerne for det valgte felt."
#. hx9FX
#: cui/uiconfig/ui/numberingformatpage.ui:668
@@ -17323,7 +17323,7 @@ msgstr "Automatisk"
#: cui/uiconfig/ui/paraindentspacing.ui:167
msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text"
msgid "Indent paragraph automatically according to font size and line spacing."
-msgstr ""
+msgstr "Indryk automatisk afsnit efter skrifttype størrelse og linjeafstand."
#. L9iw7
#: cui/uiconfig/ui/paraindentspacing.ui:218
@@ -19047,14 +19047,9 @@ msgstr "Test Testsen"
#. F8khU
#: cui/uiconfig/ui/signatureline.ui:116
-#, fuzzy
msgctxt "signatureline|extended_tip|edit_name"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Indtast dit navn som underskriver af dokument. Dit navn vil blive indsat under signaturens vandrette linje.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Indsæt dit navn som underskriver af dokumentet. Dit navn bliver indsat over den vandrette signaturlinje.</ahelp>"
+msgstr "Indsæt dit navn som underskriver af dokumentet. Dit navn bliver indsat over den vandrette signaturlinje."
#. bMy9F
#: cui/uiconfig/ui/signatureline.ui:131
@@ -19220,14 +19215,9 @@ msgstr "Vælg certifikat"
#. uJ9EC
#: cui/uiconfig/ui/signsignatureline.ui:160
-#, fuzzy
msgctxt "signsignatureline|extended_tip|btn_select_certificate"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Klik på knappen Vælg certifikat for at åbne dialogboksen Vælg Certifikat, hvor dine certifikater vises. Vælg det certifikat, der er relevant for underskrivelsen af det aktuelle dokument.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Klik på knappen Vælg certifikat for at åbne dialogfeltet Udvælg certifikat, hvor dine certifikater er oplistet. Vælg det certifikat, der passer til at underskrive dokumentet.</ahelp>"
+msgstr "Klik på knappen Vælg certifikat for at åbne dialogfeltet Udvælg certifikat, hvor dine certifikater er oplistet. Vælg det certifikat, der passer til at underskrive dokumentet."
#. 3vSAS
#. Name of the signer
@@ -20944,60 +20934,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/da/extensions/messages.po b/source/da/extensions/messages.po
index 3d67e7f2b56..275680ac742 100644
--- a/source/da/extensions/messages.po
+++ b/source/da/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-08-09 12:35+0000\n"
+"PO-Revision-Date: 2020-12-08 12:12+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/extensionsmessages/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1555775202.000000\n"
#. cBx8W
@@ -3268,7 +3268,7 @@ msgstr "Eksisterende felter"
#: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:401
msgctxt "gridfieldsselectionpage|label2"
msgid "Table Element"
-msgstr ""
+msgstr "Tabelelement"
#. Xk7cV
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:54
diff --git a/source/da/filter/messages.po b/source/da/filter/messages.po
index a2aa8dc9b23..0c1936812de 100644
--- a/source/da/filter/messages.po
+++ b/source/da/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-08-09 12:35+0000\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562743943.000000\n"
#. 5AQgJ
@@ -603,7 +603,7 @@ msgstr "Konverter til PDF/A-2b- eller PDF/A-1b-format. Det er defineret som et e
#: filter/uiconfig/ui/pdfgeneralpage.ui:735
msgctxt "pdfgeneralpage|pdfaversion"
msgid "PDF_/A version:"
-msgstr ""
+msgstr "PDF_/A version:"
#. VQGHi
#: filter/uiconfig/ui/pdfgeneralpage.ui:769
diff --git a/source/da/helpcontent2/source/text/sbasic/shared.po b/source/da/helpcontent2/source/text/sbasic/shared.po
index e514532763d..40ec372bbe6 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared.po
+++ b/source/da/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/da/>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir-udtryk</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Opretter et nyt katalog på et datamedium."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
+msgid "Creates a new directory on a data medium."
+msgstr "Opretter et nyt katalog på et datamedium."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Ethvert strengudtryk, der angiver navnet og stien for kataloget som skal oprettes. Du kan også bruge <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Hvis stien ikke er bestemt, vil kataloget blive oprettet i det aktuelle katalog."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Sletter et eksisterende katalog fra et datamedium."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Hvis stien ikke er bestemt, vil sætningen <emph>RmDir</emph> lede efter kataloget som du vil slette i den aktuelle PATH. Hvis det ikke bliver fundet der, fremkommer en fejlmeddelelse."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Stopper udførelsen af Basic programmet."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With-udtryk</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Sætter et objekt som standardobjekt. Med mindre et andet objektnavn er erklæret, vil alle egenskaber og metoder referere til standardobjektet indtil sætningen End With bliver nået."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Brug <emph>With</emph> og <emph>End With</emph> hvis du har flere egenskaber eller metoder for et enkelt objekt."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Spiller en tone gennem computerens højtaler. Tonen er systemafhængig og du kan ikke modificere dens lydstyrke eller tonehøjde."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/da/helpcontent2/source/text/sbasic/shared/02.po b/source/da/helpcontent2/source/text/sbasic/shared/02.po
index a2347a46942..d63bf6294f2 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/da/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-12-17 14:17+0100\n"
-"PO-Revision-Date: 2020-04-10 00:16+0000\n"
-"Last-Translator: Jørgen Madsen <jfma@mailme.dk>\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared02/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560886431.000000\n"
#. 6Kkin
@@ -95,7 +95,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147576\">Icon Compile</alt></image>"
-msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147576\">ikonet Kompiler</alt></image>"
+msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147576\">ikonet Oversæt</alt></image>"
#. 3Z8WW
#: 11020000.xhp
@@ -644,7 +644,7 @@ msgctxt ""
"par_id3149182\n"
"help.text"
msgid "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155892\">Icon Find Parentheses</alt></image>"
-msgstr "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155892\">Ikonet Find Parenteser</alt></image>"
+msgstr "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155892\">ikonet Find parenteser</alt></image>"
#. Y8mTx
#: 11120000.xhp
@@ -788,7 +788,7 @@ msgctxt ""
"par_id3156410\n"
"help.text"
msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159233\">Icon Step Out</alt></image>"
-msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159233\">ikonet Træd ud</alt></image>"
+msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159233\">ikonet Trin ud</alt></image>"
#. aLy3R
#: 11160000.xhp
diff --git a/source/da/helpcontent2/source/text/scalc/00.po b/source/da/helpcontent2/source/text/scalc/00.po
index 44ca562239b..95638aae76a 100644
--- a/source/da/helpcontent2/source/text/scalc/00.po
+++ b/source/da/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/da/>\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Vælg ><item type=\"menuitem\">Vis - Opdel vindue</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Vælg <item type=\"menuitem\">Vis - Frys celler - Frys rækker og kolonner</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/da/helpcontent2/source/text/scalc/guide.po b/source/da/helpcontent2/source/text/scalc/guide.po
index d20f3b17fa5..23a5fa85d59 100644
--- a/source/da/helpcontent2/source/text/scalc/guide.po
+++ b/source/da/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-09-22 12:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/da/>\n"
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "For at fastfryse både vandret og lodret skal du markere den <emph>celle</emph>, der er under rækken og til højre for den kolonne, som du vil fastfryse."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Vælg <item type=\"menuitem\">Vis - Frys celler - Frys rækker og kolonner</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "For at deaktivere, vælg <item type=\"menuitem\">Vis - Frys celler - Frys rækker og kolonner</item> igen."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Hvis du vil udskrive en bestemt række på alle sider af et dokument, vælg <item type=\"menuitem\">Formater - Udskriftsområder - Rediger</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Vis - Frys celler - Frys rækker og kolonner</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
diff --git a/source/da/helpcontent2/source/text/sdatabase.po b/source/da/helpcontent2/source/text/sdatabase.po
index 5eafe9e773b..f7afcd0908e 100644
--- a/source/da/helpcontent2/source/text/sdatabase.po
+++ b/source/da/helpcontent2/source/text/sdatabase.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-09-11 08:35+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
+"Last-Translator: Jørgen Madsen <jfma@mailme.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
#. ugSgG
#: 02000000.xhp
@@ -3001,7 +3001,7 @@ msgctxt ""
"bm_id8622089\n"
"help.text"
msgid "<bookmark_value>databases;main page (Base)</bookmark_value><bookmark_value>$[officename] Base data sources</bookmark_value><bookmark_value>data sources;$[officename] Base</bookmark_value>"
-msgstr "<bookmark_value>databaser; hovedside (Base)</bookmark_value><bookmark_value>$[officename] Base datakilder</bookmark_value><bookmark_value>datakilder;$[officename] Base</bookmark_value>"
+msgstr "<bookmark_value>databases;hovedside (Base)</bookmark_value><bookmark_value>$[officename] Base datakilder</bookmark_value><bookmark_value>datakilder;$[officename] Base</bookmark_value>"
#. yR4MP
#: main.xhp
@@ -3010,7 +3010,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "<variable id=\"base\"><link href=\"text/sdatabase/main.xhp\">Using Databases in %PRODUCTNAME Base</link></variable>"
-msgstr "<variable id=\"base\"><link href=\"text/sdatabase/main.xhp\">Brug af Datakilder i %PRODUCTNAME Base</link></variable>"
+msgstr "<variable id=\"base\"><link href=\"text/sdatabase/main.xhp\">Anvendelse af databaser i %PRODUCTNAME Base</link></variable>"
#. FvcWc
#: main.xhp
@@ -3019,7 +3019,7 @@ msgctxt ""
"par_idN107BD\n"
"help.text"
msgid "In %PRODUCTNAME Base, you can access data that is stored in a wide variety of database file formats. %PRODUCTNAME Base natively supports some flat file database formats, such as the dBASE format. You can also use %PRODUCTNAME Base to connect to external relational databases, such as databases from MySQL or Oracle."
-msgstr "I %PRODUCTNAME Base kan du tilgå data, der er gemt i en brev vifte af database-filformater. %PRODUCTNAME Base har medfødt understøttelse af nogle flade database filformater, såsom dBASE-formatet. Du kan også bruge %PRODUCTNAME Base til at oprette forbindelse til eksterne relationelle databaser, såsom databaser fra MySQL eller Oracle."
+msgstr "I%PRODUCTNAME kan du tilgå data, som er lagret i en bredt udvalg af database-filformater. %PRODUCTNAME Base har medfødt understøttelse af nogle flade database-filformater, som for eksempel dBASE-formatet. Du kan også bruge %PRODUCTNAME Base til at forbinde til eksterne relationsdatabaser fra MySQL eller Oracle."
#. RRoXE
#: main.xhp
@@ -3028,7 +3028,7 @@ msgctxt ""
"par_id5864131\n"
"help.text"
msgid "The following database types are read-only types in %PRODUCTNAME Base. From within %PRODUCTNAME Base it is not possible to change the database structure or to edit, insert, and delete database records for these database types:"
-msgstr "Følgende databasetyper er skrivebeskyttede i %PRODUCTNAME Base. Inde fra %PRODUCTNAME Base er det ikke muligt at ændre datastrukturen eller redigere, indsætte og slette databaseposter i disse database typer:"
+msgstr "De følgende databasetyper er skrivebeskyttet i %PRODUCTNAME Base. Inde fra %PRODUCTNAME Base er det ikke muligt at ændre databasestrukturen eller at redigere, indsætte og slette databaseposter i disse databasetyper:"
#. uAqcW
#: main.xhp
@@ -3082,7 +3082,7 @@ msgctxt ""
"par_idN1083B\n"
"help.text"
msgid "The <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link> helps you to create a database file and to register a new database within %PRODUCTNAME."
-msgstr "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database-guiden</link> hjælper dig med at oprette en databasefil og at registrere en ny database i %PRODUCTNAME."
+msgstr "The <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database-guide</link> hjælper dig til at oprette en databasefil og registrere en ny database i %PRODUCTNAME."
#. 2jPWg
#: main.xhp
@@ -3100,7 +3100,7 @@ msgctxt ""
"par_idN1084A\n"
"help.text"
msgid "To open a database file, choose <emph>File - Open</emph>. In the <emph>File type</emph> list box, select to view only \"Database documents\". Select a database document and click <emph>Open</emph>."
-msgstr "For at åbne en databasefil vælger du <emph>Filer - Åbn</emph>. I listefeltet <emph>Filtype</emph> vælger du at se udelukkende \"Database-dokumenter\". Vælg et databasedokument og klik på <emph>Åbn</emph>."
+msgstr "For at åbne en databasefil vælger du <emph>Filer - Åbn</emph>. Fra rullelisten <emph>Filtyper</emph> vælger du kun at se \"Database-dokumenter\". Vælg et databasedokument og klik på <emph>Åbn</emph>."
#. QFEDB
#: main.xhp
@@ -3109,7 +3109,7 @@ msgctxt ""
"par_id6474806\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link>"
-msgstr "<link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wikiside om Base</link>"
+msgstr "<link href = \"https://wiki.documentfoundation.org/Database\" name = \"wiki.documentfoundation.org Database\"> Wiki-side om Base </link>"
#. PAxTq
#: toolbars.xhp
diff --git a/source/da/helpcontent2/source/text/sdraw/01.po b/source/da/helpcontent2/source/text/sdraw/01.po
index 802cde4ed43..5d9efe680c5 100644
--- a/source/da/helpcontent2/source/text/sdraw/01.po
+++ b/source/da/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-08 16:28+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/da/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sætter sideretning, sidemargener, baggrund og andre layoutindstillinger.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "For at ændre baggrunden på alle siderne i den aktive fil, vælger du en baggrund, klikker på <emph>OK</emph> og klikker på <emph>Ja</emph> i dialogen <emph>Sideindstillinger</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/da/helpcontent2/source/text/shared/01.po b/source/da/helpcontent2/source/text/shared/01.po
index eb6dce4ec99..c756223e216 100644
--- a/source/da/helpcontent2/source/text/shared/01.po
+++ b/source/da/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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-17 17:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/da/>\n"
@@ -8001,14 +8001,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "Tegnet repræsenteret af det ottecifrede, hexadecimale Unicode-tal (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "For visse symbol-skrifttyper kan Unicode-tallet for specieltegn være afhængige af den anvendte skrifttype. Unicode-tallene kan ses ved at vælge <menuitem>Indsæt - Specialtegn</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
diff --git a/source/da/helpcontent2/source/text/shared/guide.po b/source/da/helpcontent2/source/text/shared/guide.po
index 1b748cb214f..34737a63aad 100644
--- a/source/da/helpcontent2/source/text/shared/guide.po
+++ b/source/da/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/da/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Arbejde med <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "HTML-dokument"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "OpenDocument-tekst (Flad XML)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0-tekstdokument"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0-tekstdokument"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0-tekstdokument"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "T602-dokument"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Tekst"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Tekst"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "Filtre til GRAPHICFILTER"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows-bitmap"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD-udvekslingsformat"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF - Enhanced meta-fil"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF - Enhanced meta-fil"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - indkaplet PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - indkapslet PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr "GIF - Grafisk udveksling"
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr "GIF - Grafisk udveksling"
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr "text/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET - OS/2-metafil"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - QuickTime-filformat"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable bitmap"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr "PCD - Photo CD-database4"
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT - Mac Pict"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Portable Graymap"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network grafik"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network grafik"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network grafik"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network grafik"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Portable Pixelmap"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Sun Raster-billede"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster-billede"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Skalerbar VektorGrafik"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Skalerbar VektorGrafik"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Skalerbar VektorGrafik"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - Skalerbar VektorGrafik-tegning"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr "SVM - StarView-metafil"
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF - Tagged Image FilFormat"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image FilFormat"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Windows metafil"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X-bitmap"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - X-PixMap"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Fejlrapporteringsværktøj"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Fejlrapporteringsværktøj</bookmark_value> <bookmark_value>rapporter;fejlrapporter</bookmark_value> <bookmark_value>nedbrudsrapporter</bookmark_value> <bookmark_value>aktivere;Fejlrapporteringsværktøj</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Fejlrapporteringsværktøj\">Fejlrapporteringsværktøj</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Fejlrapporteringsværktøjet starter automatisk ved programnedbrud."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Fejlrapporteringsværktøjet samler alt nødvendig information som kan hjælpe programudviklerene til at forbedre koden, så fejl muligvis kan undgås i senere versioner. Hjælp os venligst med at forbedre softwaren og send den genererede fejlrapport."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Starter fejlrapporteringsværktøjet"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Ved de fleste programnedbrud vil fejlrapporteringsværktøjet starte automatisk."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Færdiggør rapporten"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "På hoveddialogen i Fejlrapporteringsværktøjet, kan du indtaste yderligere information som kan hjælpe udviklerne til at lokalisere fejlen. For eksempel, hvis fejlen kun optræder efter en ændring i dit hardware- eller softwaremiljø, eller hvis du klikkede på en knap, inkulder venligst denne information."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Sende fejlrapporten"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Fejlrapporteringsværktøjet bruger protokollen HTTP PUT / SOAP til at sende rapportdataene. Du kan valgfrit indtaste en beskrivende tekst, som kan hjælpe os med at identificere baggrunden for programnedbruddet. Klik dernæst på knappen <emph>Send</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Du vil ikke få et svar på din fejlrapport. Hvis du har brug for hjælp, besøg venligst <link href=\"text/shared/main0108.xhp\">hjælpe forum</link> på internettet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Hvilke data bliver sendt?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Fejlrapporten består af adskillige filer. Hovedfilen indeholder information om fejltypen, operativsystemets navn og version, hukommelsesbrug og beskrivelsen som du indtastede. Du kan klikke på knappen <emph>Vis Rapport</emph> i hoveddialogen for fejlrapporteringsværktøjet for at se, hvad vil blive sendt i hovedfilen."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Herudover bliver relevant hukommelsesindhold og stakspor samlet for visse standardsystemværktøjer (\"dbhhelp.dll\" på Windows systemer, \"pstack\" på UNIX systemer). Denne information vil også blive sendt."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Husk at oprette et seperat printerjob for hver fax. Ellers vil den første modtager modtage alle faxer. I dialogen <emph>Funktioner - Brevfletning</emph> vælg indstillingen <emph>Printer</emph> og marker så afkrydsningsfeltet <emph>Opret enkelte printerjob</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Ændre standardskabeloner"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modificere, se ændre</bookmark_value><bookmark_value>ændre, se også redigere og erstatte</bookmark_value><bookmark_value>standardskabeloner; ændre</bookmark_value><bookmark_value>standarder;dokumenter</bookmark_value><bookmark_value>brugerdefinerede skabeloner</bookmark_value><bookmark_value>opdatere; skabeloner</bookmark_value><bookmark_value>redigere;skabeloner</bookmark_value><bookmark_value>skabeloner;redigere og gemme</bookmark_value><bookmark_value>gemme;skabeloner</bookmark_value><bookmark_value>nulstille;skabeloner</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Ændre standardskabeloner\">Ændre standardskabeloner</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Når du åbner et nyt dokument med <emph>Filer - Ny(t)</emph> vises et tomt dokument baseret på en $[officename] skabelon. Du kan redigere, modificere eller erstatte denne skabelon, så det nye dokument indeholder din tilpassede typografier eller andet indhold."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modificere standardskabeloner"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Åbn først enten en eksisterende $[officename]-skabelon og modificer den, eller åbn et nyt tomt dokument og rediger det om nødvendigt for at oprette den ønskede skabelon."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Du kan angive en dokumentskabelon for hvert $[officename] modul. Det følgende beskriver hvordan man fortsætter for tekstdokumenter."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Gem dokumentet ved at vælge <emph>Filer - Skabeloner - Gem som skabelon...</emph> og gemme dokumentet i kategorien <emph>Mine skabeloner</emph>."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Vælg <emph>Filer - Ny(t) - Skabeloner</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Dobbeltklik på <emph>Mine skabeloner</emph> på listen. Du vil se de brugerdefinerede skabeloner i brugerkataloget under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Stier</emph>. Marker skabelonen, som du lige har gemt."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Vælg <emph>Angiv som standard</emph>. Næste gang du åbner et nyt tekstdokument, vil det nye dokument være baseret på den nye standardskabelon."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Brug af brugertilpassede skabeloner"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Der er flere måder at gøre dit arbejde lettere ved at bruge dine egne brugertilpassede skabeloner."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Skabeloner i skabelonmappen"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Du kan gemme en ny skabelon med <emph>Filer - Skabeloner - Gem som skabelon</emph> eller ved at vælge filtypen \"Skabelon\" i enhver Gem-dialog. Gem skabelonen i brugerkataloget angivet i <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Stier</emph> for at nå den fra dialogen <emph>Filer - Ny(t) - Skabeloner</emph>."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "For at åbne skabelonen for redigering, vælg <emph>Filer -Ny(t) - Skabeloner</emph>, vælg skabelonen du vil redigere, og klik på knappen <emph>Rediger</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,14 +24100,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Se <link href=\"text/swriter/guide/templates_styles.xhp\">Skabeloner og typografier</link> for relaterede information."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Se <link href=\"text/swriter/guide/template_create.xhp\">Oprette en Dokumentskabelon</link> for relaterede information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/da/helpcontent2/source/text/shared/optionen.po b/source/da/helpcontent2/source/text/shared/optionen.po
index 90f0733ba11..1015effb7b0 100644
--- a/source/da/helpcontent2/source/text/shared/optionen.po
+++ b/source/da/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-04 11:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/da/>\n"
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "Visning"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>visninger; standard</bookmark_value> <bookmark_value>standarder; visninger</bookmark_value> <bookmark_value>indstillinger; visninger</bookmark_value> <bookmark_value>ikoner; størrelser</bookmark_value> <bookmark_value>ikoner; stil</bookmark_value> <bookmark_value>WYSIWYG i skrifttypelister</bookmark_value> <bookmark_value>forhåndsvisninger; skrifttypelister</bookmark_value> <bookmark_value>skrifttypelister</bookmark_value> <bookmark_value>skrifttypenavnsfelt</bookmark_value> <bookmark_value>mus; placere</bookmark_value> <bookmark_value>udklipsholder; valg i udklipsholder</bookmark_value> <bookmark_value>valg i udklipsholder</bookmark_value> <bookmark_value>OpenGL;Indstillinger</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;grafisk output</bookmark_value> <bookmark_value>notebook-linje;ikonstørrelse</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Specificerer visningsmuligheder."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Brugergrænseflade"
+msgid "Icon style"
+msgstr "Ikonstil"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Ikonstørrelse for værktøjslinjer"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specificerer ikonstil for ikoner i værktøjslinje og dialoger.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specificerer visningsstørrelsen af værktøjslinjeikoner.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">Indstillingen <emph>Automatisk</emph> bruger skriftstørrelsen fra dit operativsystems indstillinger til menuer.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Ikonstørrelse i sidepanelet"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specificerer størrelse af sidepanelets ikoner.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Ikonstørrelse for Notebook-linje"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specificerer størrelsen af <link href=\"text/shared/01/notebook_bar.xhp\">notebook-linjens</link> ikoner.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Ikonstil"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specificerer ikonstil for ikoner i værktøjslinje og dialoger.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specificerer størrelse af sidepanelets ikoner.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Trim skærmskrifttyper"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Marker for at udjævne tekstens udseende på skærmen.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Indtast den mindste skrifttype for at anvende udjævning.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Viser ikoner ved siden af de tilsvarende menupunkter. Vælg mellem \"Automatisk\", \"Skjul\" og \"Vis\". \"Automatisk\" viser ikoner i henhold til systemindstillinger og temaer.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Mus"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Museposition"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specificerer hvis og hvordan musemarkøren vil være placeret i nyligt åbnede dialoger.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Midterste museknap"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "Det sidst markerede udvalg er indholdet af markeringsudklipsholderen."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Grafikoutput"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Tryk Skift+Ctrl+R for at gendanne eller opdatere visningen i det aktuelle dokument.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Tryk Skift+Ctrl+R for at gendanne eller opdatere visningen i det aktuelle dokument.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,68 +3805,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Når det er understøttet, kan du aktivere og deaktivere anti-aliasing af grafik. Når anti-aliasing er aktiveret, vil de fleste grafiske objekter fremstå glattere.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Anvend OpenGL til al gengivelse (efter genstart)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Brug højydelses Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) for at gengive alle visuelle elementer i programmet, inklusiv vinduer, menuer, værktøjslinjer og ikoner.</ahelp> OpenGL bruger computerens grafikkort til at accelerere den grafiske gengivelse. Hvis grafikkortet er blacklistet (se nedenfor) er muligheden uden tilstede."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Tving Open GL i gang på trods af sortlistning (efter genstart)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Gennemtvinger brug af OpenGL selv om den grafiske enhed er sortlistet.</ahelp> En enhed er sortlistet, når den er fejlbehæftet eller gengiver grafik i en dårlig kvalitet."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menu"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Ikoner i menuer"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Viser ikoner ved siden af de tilsvarende menupunkter. Vælg mellem \"Automatisk\", \"Skjul\" og \"Vis\". \"Automatisk\" viser ikoner i henhold til systemindstillinger og temaer.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Viser navnene på tilgængelige skrifttyper i den tilsvarende skrifttype, for eksempel skrifttyper i feltet Skrifttype på værktøjslinjen <emph>Formatering</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Trim skærmskrifttyper"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Marker for at udjævne tekstens udseende på skærmen.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Indtast den mindste skrifttype for at anvende udjævning.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/swriter/guide.po b/source/da/helpcontent2/source/text/swriter/guide.po
index d18bbefb28b..5d8d7b913f2 100644
--- a/source/da/helpcontent2/source/text/swriter/guide.po
+++ b/source/da/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: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/da/>\n"
@@ -12519,13 +12519,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12564,13 +12564,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12591,58 +12591,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12672,13 +12654,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16911,14 +16893,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Med mindre du angiver andet, vil ethvert nyt $[officename] tekstdokument være baseret på standardskabelonen."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] har et antal <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">foruddefinerede skabeloner</link>, som du kan bruge til at oprette forskellige typer eller tekstdokumenter, såsom forretningsbreve."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17271,14 +17253,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "For at bestemme hvordan direkte-markøren skal opføre sig, skal du vælge <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formateringshjælp</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "På værktøjslinjen <item type=\"menuitem\">Funktioner</item>, klik på ikonet <item type=\"menuitem\">Direkte-markør</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Ikon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17289,32 +17271,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Klik i et frit mellemrum i tekstdokumentet. Musemarkøren ændrer sig for at vise justeringen som vil blive anvendt til den tekst, som du skriver:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Ikon</alt></image> Venstrejusteret"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Ikon</alt></image> Centreret"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Ikon</alt></image> Højrejusteret"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po b/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
index 043d9830bd8..83c97abf6aa 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-22 07:15+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-08 12:11+0000\n"
+"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565537469.000000\n"
#. W5ukN
@@ -594,7 +594,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze First Row"
-msgstr ""
+msgstr "Frys Første Række"
#. Qz2C5
#: CalcCommands.xcu
@@ -3534,7 +3534,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename S~heet..."
-msgstr "_Omdøb ark..."
+msgstr "Omdøb Ark"
#. dRbma
#: CalcCommands.xcu
@@ -4534,7 +4534,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Use Text Import Dialog"
-msgstr "Brug dialogen Importer tekst"
+msgstr "Brug dialogen Tekstimport"
#. yombs
#: CalcCommands.xcu
@@ -4544,7 +4544,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Use text import dialog"
-msgstr "Brug dialogen Importer Tekst"
+msgstr "Brug dialogen Tekstimport"
#. uoxAP
#: CalcCommands.xcu
@@ -5504,7 +5504,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines and Arrows"
-msgstr "Linjer og pile"
+msgstr "Streger og pile"
#. vvEtr
#: CalcWindowState.xcu
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Skjul dias"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Tekst..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -8994,7 +8994,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Consolidate Text"
-msgstr "Konsolider tekst"
+msgstr "Sammenrediger tekst"
#. EpdQH
#: DrawImpressCommands.xcu
@@ -9004,7 +9004,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Merges text fragments from selected objects into one new textbox"
-msgstr "Fletter tekstfragmenter fra markerede objekter til en ny tekstboks"
+msgstr "Fletter tekstfragmenter fra udvalgte objekter ind i en tekstboks"
#. 9ofqz
#: DrawImpressCommands.xcu
@@ -11734,7 +11734,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines and Arrows"
-msgstr "Linjer og pile"
+msgstr "Streger og pile"
#. 9hGnF
#: DrawWindowState.xcu
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Ligesidet trekant"
#. BUJ28
#: Effects.xcu
@@ -16144,7 +16144,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Basic Shapes"
-msgstr "~Simple figurer"
+msgstr "Simple figurer"
#. Txc9Q
#: GenericCommands.xcu
@@ -16174,7 +16174,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Symbol Shapes"
-msgstr "~Symbol"
+msgstr "Symbolformer"
#. oxtet
#: GenericCommands.xcu
@@ -16304,7 +16304,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Callouts"
-msgstr "~Forklaringer"
+msgstr "Udråb"
#. cGLti
#: GenericCommands.xcu
@@ -18144,7 +18144,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Dotted Underline"
-msgstr "Prikket understregning"
+msgstr "Stiplet understregning"
#. fcL5q
#: GenericCommands.xcu
@@ -20666,7 +20666,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Copy Hyperlink Location"
-msgstr "Kopier hyperlink"
+msgstr "Kopier Hyperlinkadresse"
#. EaNDM
#: GenericCommands.xcu
@@ -23246,7 +23246,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Tip of the day"
-msgstr "~Dagens tip"
+msgstr "Dagens tip"
#. hiZJy
#: GenericCommands.xcu
@@ -23516,7 +23516,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Auto-Redact"
-msgstr "Automatisk maskering"
+msgstr "Automaskering"
#. 38NB3
#: GenericCommands.xcu
@@ -23526,7 +23526,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Auto-Redact"
-msgstr "Automatisk maskering"
+msgstr "Automasker"
#. kfBEt
#: GenericCommands.xcu
@@ -23536,7 +23536,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Auto-Redact Document"
-msgstr "Autorediger dokument"
+msgstr "Automasker dokument"
#. zvurM
#: GenericCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Filer"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Juster"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Juster"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -26126,7 +26126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Basic Macro Organizer..."
-msgstr "Administrer Basic makroer..."
+msgstr "Basic makro-administrator"
#. ahLAz
#: GenericCommands.xcu
@@ -26326,7 +26326,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~QR Code..."
-msgstr "~QR kode..."
+msgstr "~QR-kode..."
#. gWpLA
#: GenericCommands.xcu
@@ -26336,7 +26336,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Edit QR Code..."
-msgstr "~Rediger QR kode..."
+msgstr "Rediger QR-kode…"
#. HhCdv
#: GenericCommands.xcu
@@ -26916,7 +26916,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines and Arrows"
-msgstr "Linjer og pile"
+msgstr "Streger og pile"
#. AoqtG
#: ImpressWindowState.xcu
@@ -29646,7 +29646,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reject and Move to Next"
-msgstr "Afslå og gå til næste"
+msgstr "Afvis og flyt til næste"
#. riKrf
#: WriterCommands.xcu
@@ -29726,7 +29726,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accept and Move to Next"
-msgstr "Godkend og gå til næste"
+msgstr "Accepter og flyt til næste"
#. ueUPj
#: WriterCommands.xcu
@@ -29736,7 +29736,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accept Track Change and select the next one"
-msgstr "Godkend ændringen og vælg den næste"
+msgstr "Accepter ændringssporing og vælg den næste"
#. TFCgf
#: WriterCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Marker til afsnittets slutning"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Marker til ordet til højre"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
@@ -31786,7 +31786,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Nested Table"
-msgstr "~Indlejret tabel"
+msgstr "Indlejret Tabel"
#. jWjL7
#: WriterCommands.xcu
@@ -31806,7 +31806,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Rows ~Above"
-msgstr "Rækker ~over"
+msgstr "Rækker ovenfor"
#. fmNGn
#: WriterCommands.xcu
@@ -31826,7 +31826,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Columns ~Before"
-msgstr "Kolonner før"
+msgstr "Kolonner foran"
#. rzDZU
#: WriterCommands.xcu
@@ -33016,7 +33016,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Optimal"
-msgstr ""
+msgstr "~Optimal"
#. EFP2w
#: WriterCommands.xcu
@@ -35226,7 +35226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Inspector Deck"
-msgstr ""
+msgstr "Typografiinsspektør"
#. joS9f
#: WriterFormWindowState.xcu
@@ -37346,7 +37346,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines and Arrows"
-msgstr "Linjer og pile"
+msgstr "Streger og pile"
#. VE7Pg
#: WriterWindowState.xcu
diff --git a/source/da/sc/messages.po b/source/da/sc/messages.po
index af993ef021b..a3fb5ef1efb 100644
--- a/source/da/sc/messages.po
+++ b/source/da/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-09-05 07:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562523528.000000\n"
#. kBovX
@@ -1469,7 +1469,7 @@ msgstr "Dif-import"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Standard"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -1511,7 +1511,7 @@ msgstr ""
#: sc/inc/globstr.hrc:279
msgctxt "STR_STYLENAME_HYPERLINK"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hyperlink"
#. aeksB
#: sc/inc/globstr.hrc:280
@@ -22455,10 +22455,9 @@ msgstr "Fastsætter slutværdien for serien. Benyt tal, datoer eller tidsangivel
#. LMokQ
#: sc/uiconfig/scalc/ui/filldlg.ui:561
-#, fuzzy
msgctxt "filldlg|extended_tip|increment"
msgid "Determines the value by which the series of the selected type increases by each step."
-msgstr " Afgør værdien som serien forøges med for hvert trin."
+msgstr "Afgør værdien, som serien forøges med for hvert trin."
#. AvMwH
#: sc/uiconfig/scalc/ui/filldlg.ui:599
@@ -24593,213 +24592,213 @@ msgid "~File"
msgstr "~Fil"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Angiv kanterne på de markerede celler."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Forøg indrykning"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Formindsk indrykning"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Hjem"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hjem"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fel_t"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Indsæt"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Indsæt"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Juster objekt"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistik"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Gennemse"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Gennemse"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Billede"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konvertér"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medier"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medie"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Udskriv"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Udskriv"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Udvidelse"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Udvidelse"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Funktioner"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Funktioner"
@@ -28631,7 +28630,7 @@ msgstr "Angiver at der vises en advarsel, når du indsætter noget fra klippebor
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
msgctxt "scgeneralpage|enter_paste_mode_cb"
msgid "Press Enter to paste and clear clipboard"
-msgstr ""
+msgstr "Tryk på Enter for at indsætte rydde udklipsholderen"
#. LFenu
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
@@ -29629,338 +29628,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Problemløser"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_Indstillinger..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Åbner dialogen Problemløser-indstillinger."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Løs"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Målcelle"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimer resultat til"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Ved at ændre cellerne"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Indtast det celleområde kan ændres."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "M_aksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Indtast det celleområde kan ændres."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Indtast det celleområde kan ændres."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Indtast eller klik på cellereferencen til målcellen. Dette felt tager adressen til den celle, hvis værdi skal optimeres."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Værdi"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Indtast det celleområde kan ændres."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Indtast det celleområde kan ændres."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Cellereference"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Værdi"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Cellereference"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Cellereference"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Cellereference"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Cellereference"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Heltal"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binær"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Heltal"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binær"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Heltal"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binær"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Heltal"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binær"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Værdi"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Værdi"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Værdi"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Værdi"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Fjern"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Fjern"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Fjern"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Fjern"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Begrænsende betingelser"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Åbner dialogen Problemløser. En løser lader dig løse matematiske problemer med flere ubekendte variabler og et sæt betingelser på variabler med målsøgnende metoder."
@@ -30142,7 +30147,6 @@ msgstr "Område indeholder..."
#. nNTEu
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:61
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|header"
msgid "Omits the first row or the first column in the selection from the sort."
msgstr "Udelader den første række eller den første kolonne i markeringen fra sorteringen."
@@ -30155,7 +30159,6 @@ msgstr "Inkluder formater"
#. KbJnq
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:81
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|formats"
msgid "Preserves the current cell formatting."
msgstr "Bevarer den aktuelle celleformatering."
@@ -30192,7 +30195,6 @@ msgstr "Kopier resultater til:"
#. gis9V
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:154
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|copyresult"
msgid "Copies the sorted list to the cell range that you specify."
msgstr "Kopierer den sorterede liste til celleområdet, som du angiver."
@@ -30315,7 +30317,6 @@ msgstr "Retning"
#. 7AH6P
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:440
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|SortOptionsPage"
msgid "Sets additional sorting options."
msgstr "Sætter yderligere sorteringsindstillinger."
diff --git a/source/da/sd/messages.po b/source/da/sd/messages.po
index 0de5f4ef084..db167ce29b4 100644
--- a/source/da/sd/messages.po
+++ b/source/da/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-03 23:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562822671.000000\n"
#. WDjkB
@@ -3105,10 +3105,9 @@ msgstr "Indtast den lodrette afstand mellem centrum af det valgte objekt og kopi
#. uyLiW
#: sd/uiconfig/sdraw/ui/copydlg.ui:306
-#, fuzzy
msgctxt "copydlg|extended_tip|angle"
msgid "Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counterclockwise direction."
-msgstr "Indtast vinklen (0 til 359 grader), hvormed du vil roterere det kopierede objekt. Positive værdier roterer det kopierede objekt i urets retning og negative værdier imod urets retning."
+msgstr "Indtast vinklen (0 til 359 grader), hvormed du vil rotere det kopierede objekt. Positive værdier roterer det kopierede objekt i urets retning og negative værdier imod urets retning."
#. Mb9Gs
#: sd/uiconfig/sdraw/ui/copydlg.ui:323
@@ -3166,7 +3165,6 @@ msgstr "Vælg en farve for det valgte objekt."
#. AAoBa
#: sd/uiconfig/sdraw/ui/copydlg.ui:530
-#, fuzzy
msgctxt "copydlg|extended_tip|end"
msgid "Choose a color for the duplicate object. If you are making more than one copy, this color is applied to the last copy."
msgstr "Vælg en farve på det kopierede objekt. Hvis du laver mere end en enkelt kopi, vil denne farve blive anvendt til den sidste kopi."
@@ -3179,7 +3177,6 @@ msgstr "Farver"
#. W2wTC
#: sd/uiconfig/sdraw/ui/copydlg.ui:580
-#, fuzzy
msgctxt "copydlg|extended_tip|DuplicateDialog"
msgid "Makes one or more copies of a selected object."
msgstr "Laver en eller flere kopier af et markeret objekt."
@@ -3672,10 +3669,9 @@ msgstr "Forhindrer elementerne på laget i at blive redigeret."
#. ogtGC
#: sd/uiconfig/sdraw/ui/insertlayer.ui:313
-#, fuzzy
msgctxt "insertlayer|extended_tip|InsertLayerDialog"
msgid "Inserts a new layer in the document. Layers are only available in Draw, not in Impress."
-msgstr "Indsætter et nyt lag i dokumentet. Lag er kun tilgængelige i Draw, ikke i Impress. "
+msgstr "Indsætter et nyt lag i dokumentet. Lag er kun tilgængelige i Draw, ikke i Impress."
#. dCRtD
#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:18
@@ -3823,116 +3819,116 @@ msgstr "~Tabel"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverter"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bille_de"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medier"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medie"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Master"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Master"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Udvidelse"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Udvidelse"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Værktøjer"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Fun~ktioner"
@@ -4336,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menu"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Udvidelse"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -4870,10 +4860,9 @@ msgstr "Tekstanimation"
#. FcztB
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
-#, fuzzy
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
-msgstr "Animationslisten viser alle animationer til det aktuelle dias. "
+msgstr "Animationslisten viser alle animationer på det aktuelle dias."
#. KFRTW
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
@@ -5707,7 +5696,7 @@ msgstr "Justerer billederne i din animation."
#: sd/uiconfig/simpress/ui/dockinganimation.ui:410
msgctxt "dockinganimation|label1"
msgid "Animation Group"
-msgstr ""
+msgstr "Animationsgruppe"
#. Bu3De
#: sd/uiconfig/simpress/ui/dockinganimation.ui:454
@@ -6574,219 +6563,219 @@ msgid "~File"
msgstr "~Fil"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hjem"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fel_t"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Indsæt"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Indsæt"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Præsentation"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Dias~show"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Gennemse"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Gennemsyn"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverter"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bille_de"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medier"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medie"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Master"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Master"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Vis"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Disp~osition"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Udvidelse"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Udvidelse"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Funktioner"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Fun~ktioner"
@@ -7696,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Rediger kontur"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Udvidelse"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/da/sfx2/messages.po b/source/da/sfx2/messages.po
index f0e3a645af6..554bd84543a 100644
--- a/source/da/sfx2/messages.po
+++ b/source/da/sfx2/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-08 06:35+0000\n"
-"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560616969.000000\n"
#. bHbFE
@@ -2614,7 +2614,7 @@ msgstr "Kun indlejrede skrifttyper, som bruges i dokumenter"
#: sfx2/uiconfig/ui/documentfontspage.ui:74
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
-msgstr ""
+msgstr "Indlejring af skrifttyper"
#. Gip6V
#: sfx2/uiconfig/ui/documentfontspage.ui:105
@@ -2968,7 +2968,7 @@ msgstr "Vis"
#: sfx2/uiconfig/ui/helpindexpage.ui:121
msgctxt "helpindexpage|label1"
msgid "_Search Term"
-msgstr ""
+msgstr "Søgeterm"
#. wKLbH
#: sfx2/uiconfig/ui/helpmanual.ui:7
@@ -4156,7 +4156,7 @@ msgstr ""
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Genskab standard"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
@@ -4288,7 +4288,7 @@ msgstr ""
#: sfx2/uiconfig/ui/templatedlg.ui:371
msgctxt "templatedlg|online_link|tooltip_text"
msgid "Add more templates via extension"
-msgstr ""
+msgstr "Tilføj flere skabeloner via udvidelse"
#. PXRa3
#: sfx2/uiconfig/ui/templatedlg.ui:386
diff --git a/source/da/starmath/messages.po b/source/da/starmath/messages.po
index a16b84033dd..1922985ab3b 100644
--- a/source/da/starmath/messages.po
+++ b/source/da/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-09-28 07:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/da/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/da/svtools/messages.po b/source/da/svtools/messages.po
index bb38a0b3d6f..1c6984380d0 100644
--- a/source/da/svtools/messages.po
+++ b/source/da/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-09-06 09:30+0000\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560617130.000000\n"
#. fLdeV
@@ -3725,7 +3725,7 @@ msgstr "Sydsotho"
#: svtools/inc/langtab.hrc:234
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swazi"
-msgstr "Swazi"
+msgstr "Swazi / Swati / siSwati"
#. GFCYC
#: svtools/inc/langtab.hrc:235
diff --git a/source/da/svx/messages.po b/source/da/svx/messages.po
index 30785a25cdc..7633cbf5f9e 100644
--- a/source/da/svx/messages.po
+++ b/source/da/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-09-03 23:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/da/>\n"
"Language: da\n"
@@ -584,7 +584,7 @@ msgstr "EMF'er"
#: include/svx/strings.hrc:119
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#. tc3Jb
#: include/svx/strings.hrc:120
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Tilpas dias til det aktuelle vindue."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Kunne ikke hente som SmartArts. Gemmer i Microsoft Office 2010 eller senere for at undgå dette problem."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -10452,7 +10452,7 @@ msgstr ""
#: svx/inc/formnavi.hrc:36
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
-msgstr ""
+msgstr "Kombinationsfelt"
#. HRAoH
#: svx/inc/formnavi.hrc:37
@@ -10512,13 +10512,13 @@ msgstr ""
#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
-msgstr ""
+msgstr "Rullebjælke"
#. cGxjA
#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
-msgstr ""
+msgstr "Rulleknap"
#. HYbc6
#: svx/inc/formnavi.hrc:48
@@ -12412,7 +12412,6 @@ msgstr "Forkaster alle ændringer og fjerner fremhævningen i dokumentet."
#. phEJs
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:110
-#, fuzzy
msgctxt "acceptrejectchangesdialog|extended_tip|undo"
msgid "Reverse the last Accept or Reject command."
msgstr "Omgør den sidste accepter- eller afvis-kommando."
@@ -13962,17 +13961,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigationslinje"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Nedbrudsrapporten blev uploaded med succes.\n"
-"Du kan snart finde rapporten på:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13998,11 +13994,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Send fejlrapportering"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Send ikke"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -15780,14 +15776,9 @@ msgstr "Dybde"
#. pFxTG
#: svx/uiconfig/ui/extrustiondepthdialog.ui:162
-#, fuzzy
msgctxt "extrustiondepthdialog|extended_tip|ExtrustionDepthDialog"
msgid "Enter an extrusion depth."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Angiv en ekstruderingsdybde.</ahelp>\n"
-"#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Indtast en ekstruderingsdybde.</ahelp>"
+msgstr "Indtast en ekstruderingsdybde."
#. HDhiV
#: svx/uiconfig/ui/filtermenu.ui:12
diff --git a/source/da/sw/messages.po b/source/da/sw/messages.po
index 043d0295030..15c28d6d3b7 100644
--- a/source/da/sw/messages.po
+++ b/source/da/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-09-05 07:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/da/>\n"
"Language: da\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -945,7 +945,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:88
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Highlight"
-msgstr ""
+msgstr "Char Fremhævelse"
#. T44dN
#: sw/inc/inspectorproperties.hrc:89
@@ -1203,7 +1203,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:131
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Document Index Mark"
-msgstr ""
+msgstr "Dokumentindeksmarkering"
#. XgFaZ
#: sw/inc/inspectorproperties.hrc:132
@@ -1293,7 +1293,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:146
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Size X"
-msgstr ""
+msgstr "Fyld bitmap størrelse X"
#. stSMW
#: sw/inc/inspectorproperties.hrc:147
@@ -1641,7 +1641,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:204
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Hyphens"
-msgstr ""
+msgstr "Afsnit orddeling maks. bindestreger"
#. nFxKY
#: sw/inc/inspectorproperties.hrc:205
@@ -12594,7 +12594,6 @@ msgstr "Afstand til tekst"
#. hsw2F
#: sw/uiconfig/swriter/ui/dropcapspage.ui:153
-#, fuzzy
msgctxt "dropcapspage|extended_tip|spinFLD_DROPCAPS"
msgid "Enter the number of characters to convert to drop caps."
msgstr "Indtast antal tegn, der skal konverteres til uncialer."
@@ -13775,10 +13774,9 @@ msgstr "Find kun i"
#. vXdjr
#: sw/uiconfig/swriter/ui/findentrydialog.ui:150
-#, fuzzy
msgctxt "findentrydialog|extended_tip|findin"
msgid "Restricts the search to one data field."
-msgstr "Begræns søgningen til ét datafelt. "
+msgstr "Begræns søgningen til ét datafelt."
#. LA7X8
#: sw/uiconfig/swriter/ui/findentrydialog.ui:169
@@ -13982,7 +13980,7 @@ msgstr "Klik på det format, som du vil bruge til det valgte felt, eller klik p
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:327
msgctxt "flddocumentpage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Format"
#. k7KnK
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:343
@@ -14066,7 +14064,7 @@ msgstr "Klik på det format, som du vil bruge til det valgte felt, eller klik p
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:242
msgctxt "fldfuncpage|label2"
msgid "_Format"
-msgstr ""
+msgstr "Format"
#. CGoTS
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:267
@@ -14300,7 +14298,7 @@ msgstr "Oplister de tilgængelige felter til den den feltttype, der er markeret
#: sw/uiconfig/swriter/ui/fldvarpage.ui:214
msgctxt "fldvarpage|label2"
msgid "_Select"
-msgstr ""
+msgstr "Vælg"
#. ZuuQf
#: sw/uiconfig/swriter/ui/fldvarpage.ui:306
@@ -14856,7 +14854,6 @@ msgstr "Indtast den tekst, som du vil vise på siden, hvor fodnoterne fortsætte
#. PM3nD
#: sw/uiconfig/swriter/ui/footnotepage.ui:337
-#, fuzzy
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". %PRODUCTNAME Writer automatically inserts the number of the following page."
msgstr "Indtast den tekst, som du vil vise, når fodnoterne fortsætter på den næste side, for eksempel, \"Fortsat på side \". %PRODUCTNAME Writer indsætter automatisk nummeret på den følgende side."
@@ -16603,7 +16600,6 @@ msgstr "Bogmærke"
#. fofuv
#: sw/uiconfig/swriter/ui/insertbookmark.ui:107
-#, fuzzy
msgctxt "insertbookmark|extended_tip|name"
msgid "Type the name of the bookmark that you want to create. Then press Insert."
msgstr "Indtast navnet på det bogmærke, du vil oprette. Tryk så på Indsæt."
@@ -16886,7 +16882,6 @@ msgstr "Kategori:"
#. LySa4
#: sw/uiconfig/swriter/ui/insertcaption.ui:326
-#, fuzzy
msgctxt "insertcaption|extended_tip|category"
msgid "Select the caption category, or type a name to create a new category. The category text appears before the caption number in the caption label. Each predefined caption category is formatted with a paragraph style of the same name."
msgstr "Vælg billedtekstkategorien eller indtast et navn for at oprette en ny kategori. Kategoriteksten optræder før nummeret på billedteksten i billedtekstetiketten. Hver foruddefineret billedtekstkategori formateres med en afsnitstypografi med samme navn."
@@ -16983,7 +16978,6 @@ msgstr "Flytter alle opremsede databasefelter til listen Tabelkolonne(r)."
#. 36dFc
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:320
-#, fuzzy
msgctxt "insertdbcolumnsdialog|extended_tip|oneright"
msgid "Moves the selected database field into the Table column(s) list box."
msgstr "Flytter det markerede databasefelt til rullelisten Tabelkolonne(r)."
@@ -17206,7 +17200,6 @@ msgstr "Vælg..."
#. XDgLr
#: sw/uiconfig/swriter/ui/insertfootnote.ui:242
-#, fuzzy
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "Indsætter et specialtegn som et fod- eller slutnoteanker."
@@ -20368,181 +20361,181 @@ msgid "~File"
msgstr "~Fil"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hjem"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Indsæt"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Reference_r"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "R~eferencer"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Gennemse"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Gennemsyn"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Bille_de"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medier"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medie"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Udskriv"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Udskriv"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Udvidelse"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Udvidelse"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Funktioner"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Fun~ktioner"
@@ -21580,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Rediger kontur"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Udvidelse"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
@@ -29224,7 +29211,6 @@ msgstr "Optimal"
#. 4pAFL
#: sw/uiconfig/swriter/ui/wrappage.ui:210
-#, fuzzy
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr "Ombryder automatisk teksten til venstre, til højre, eller på alle fire sider af objektets rammekant. Hvis afstanden imellem objektet og sidemargenen er mindre end 2 cm, bliver teksten ikke ombrudt."
diff --git a/source/da/vcl/messages.po b/source/da/vcl/messages.po
index d2c80a5aaa2..db89be76f3d 100644
--- a/source/da/vcl/messages.po
+++ b/source/da/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-02 17:35+0000\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/vclmessages/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562421975.000000\n"
#. k5jTM
@@ -2131,7 +2131,7 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:619
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
-msgstr ""
+msgstr "Ulige og lige sider"
#. 49y67
#: vcl/uiconfig/ui/printdialog.ui:620
diff --git a/source/da/wizards/source/resources.po b/source/da/wizards/source/resources.po
index 459df0e896c..222dc4611d3 100644
--- a/source/da/wizards/source/resources.po
+++ b/source/da/wizards/source/resources.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-09-02 17:35+0000\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558712462.000000\n"
#. 8UKfi
@@ -4289,7 +4289,7 @@ msgctxt ""
"CorrespondenceFields_17\n"
"property.text"
msgid "Email"
-msgstr ""
+msgstr "E-mail"
#. w7uK5
#: resources_en_US.properties
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index 4c3e4d1d867..d738496ec2f 100644
--- a/source/de/cui/messages.po
+++ b/source/de/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-04 20:46+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/de/>\n"
"Language: de\n"
@@ -3041,7 +3041,7 @@ msgstr "Um zu beginnen, mit %PRODUCTNAME Makros zu arbeiten, schauen Sie sich di
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apply Heading paragraph styles in Writer with shortcut keys: %MOD1+1 applies Heading 1, %MOD1+2 applies Heading 2, etc."
-msgstr "Wenden Sie in Writer Absatzvorlagen für Überschriften an, indem Sie %MOD1+1 für Überschrift 1, %MOD2+2 für Überschrift 2 und so weiter drücken."
+msgstr "Wenden Sie in Writer Absatzvorlagen für Überschriften an, indem Sie %MOD1+1 für Überschrift 1, %MOD1+2 für Überschrift 2 und so weiter drücken."
#. DA82R
#: cui/inc/tipoftheday.hrc:202
@@ -3401,7 +3401,7 @@ msgstr "Falls Sie eine benutzerdefinierte Zellvorlage in Calc nicht löschen kö
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Um in Calc eine Reihe zu erzeugen, markieren Sie den Zellbereich, wählen »Tabelle ▸ Zellen ausfüllen ▸ Reihen…« und entscheiden sich zwischen Linear, Wachstum, Datum und Automatisch füllen."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Sie können neue XSLT- und XML-Filter entwickeln."
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Um alle verfügbaren erweiterten Tipps in Dialogfeldern anzuzeigen, wenn „Erweiterte Tipps“ unter »Extras ▸ Optionen… ▸% PRODUKTNAME ▸ Allgemein« nicht aktiviert ist, drücken Sie [Umschalt+F1]."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -5630,7 +5630,7 @@ msgstr "_Benutzerdefiniert:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Klicken Sie auf eine Kante oder Ecke, um drei Zustände zu durchlaufen: festlegen, unverändert, entfernen."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5732,7 @@ msgstr "_Distanz:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Schattenbreite"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Wählen Sie Ihre bevorzugte Benutzeroberfläche"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Symbolleisten"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Kompakt"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Seitenleiste"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "In Registern"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "In Registern kompakt"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Gruppiert kompakt"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Gruppiert"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Gruppiert kompakt"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Kontextabhängig kompakt"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Kontextabhängig gruppiert"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Kompakt"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Seitenleiste"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/de/helpcontent2/source/text/sbasic/shared.po b/source/de/helpcontent2/source/text/sbasic/shared.po
index 0b6dd2a62e5..bf84b5065f1 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-25 13:34+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/de/>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Anweisung MkDir\">Anweisung MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Erstellt ein Verzeichnis auf einem Datenträger."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "Creates a new directory on a data medium."
+msgstr "Erstellt ein Verzeichnis auf einem Datenträger."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Ein Zeichenkettenausdruck, der Name und Pfad des anzulegenden Verzeichnisses angibt. Sie können auch die <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-Schreibweise\">URL-Schreibweise</link> verwenden."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Sofern kein Pfad angegeben ist, wird das Verzeichnis im aktuellen Verzeichnis angelegt."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Löscht ein Verzeichnis auf einem Datenträger."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Wird kein Pfad angegeben, so sucht die Anweisung <emph>RmDir</emph> im aktuellen Pfad nach dem zu löschenden Verzeichnis. Ist das Verzeichnis hier nicht zu finden, erscheint eine Fehlermeldung."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Hält die Ausführung des Basic-Programms an."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Anweisung With\">Anweisung With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Legt ein Objekt als Standardobjekt fest. Wird kein anderer Objektname angegeben, so beziehen sich bis zur entsprechenden Anweisung End With alle verwendeten Eigenschaften und Methoden auf das Standardobjekt."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Verwenden Sie <emph>With</emph> und <emph>End With</emph>, um mehrere Eigenschaften oder Methoden eines einzigen Objekts anzusprechen."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Gibt einen Ton über den Computerlautsprecher aus. Der Ton ist je nach System unterschiedlich. Sie können seine Lautstärke und Tonhöhe nicht ändern."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/00.po b/source/de/helpcontent2/source/text/scalc/00.po
index c78c9216933..d39e5f2542c 100644
--- a/source/de/helpcontent2/source/text/scalc/00.po
+++ b/source/de/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-27 05:34+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/de/>\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Wählen Sie <item type=\"menuitem\">Ansicht - Fenster teilen</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Wählen Sie <item type=\"menuitem\">Ansicht - Zellen fixieren - Zeilen/Spalten fixieren</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index 864bc401807..0094e391401 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:33+0100\n"
-"PO-Revision-Date: 2020-10-22 11:35+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565412342.000000\n"
#. sZfWF
@@ -4820,7 +4820,7 @@ msgctxt ""
"par_id301587321851330\n"
"help.text"
msgid "If you choose to omit the DatabaseField argument, your formula should be of the form =DCOUNT(Database; ; SearchCriteria)."
-msgstr "Wenn Sie das Argument Datenbankfeld weglassen, sollte Ihre Formel die Form =DBANZAHL(Datenbank; ; Suchkriterien) haben."
+msgstr "Wenn Sie das Argument Datenbankfeld weglassen, muss Ihre Formel die Form =DBANZAHL(Datenbank;;Suchkriterien) haben."
#. F7cy4
#: 04060101.xhp
@@ -4901,7 +4901,7 @@ msgctxt ""
"par_id31587322048553\n"
"help.text"
msgid "If you choose to omit the DatabaseField argument, your formula should be of the form =DCOUNTA(Database; ; SearchCriteria)."
-msgstr "Wenn Sie das Argument Datenbankfeld weglassen, sollte Ihre Formel die Form =DBANZAHL(Datenbank; ; Suchkriterien) haben."
+msgstr "Wenn Sie das Argument Datenbankfeld weglassen, muss Ihre Formel die Form =DBANZAHL(Datenbank;;Suchkriterien) haben."
#. xX6ve
#: 04060101.xhp
@@ -10211,7 +10211,7 @@ msgctxt ""
"par_id3154558\n"
"help.text"
msgid "IF(Test [; ThenValue [; OtherwiseValue]])"
-msgstr "WENN(Prüfung [; DannWert [; SonstWert]])"
+msgstr "WENN(Prüfung[; DannWert[; SonstWert]])"
#. JnjcT
#: 04060105.xhp
@@ -16196,7 +16196,7 @@ msgctxt ""
"par_id3150798\n"
"help.text"
msgid "MMULT(Array 1; Array 2)"
-msgstr "MMULT(Matrix 1; Matrix 1)"
+msgstr "MMULT(Matrix 1; Matrix 2)"
#. DqghH
#: 04060107.xhp
@@ -16349,7 +16349,7 @@ msgctxt ""
"par_id3152839\n"
"help.text"
msgid "LINEST(data_Y [; data_X [; linearType [; stats]]])"
-msgstr "RGP(DatenY [; DatenX [; LinearerTyp [; Kenngrößen]]])"
+msgstr "RGP(DatenY[;DatenX[;LinearerTyp[;Kenngrößen]]])"
#. M2QFp
#: 04060107.xhp
@@ -16898,7 +16898,7 @@ msgctxt ""
"par_id3163347\n"
"help.text"
msgid "SUMPRODUCT(Array 1[; Array 2;][...;[Array 255]])"
-msgstr "SUMMENPRODUKT(Matrix 1 [; Matrix 2][; ... [; Matrix 255]])"
+msgstr "SUMMENPRODUKT(Matrix 1 [; Matrix 2 [; ... [; Matrix 255]]])"
#. gGK9K
#: 04060107.xhp
@@ -16907,7 +16907,7 @@ msgctxt ""
"par_id3163362\n"
"help.text"
msgid "<emph>Array 1[; Array 2;][...;[Array 255]]</emph> represent arrays whose corresponding elements are to be multiplied."
-msgstr "<emph>Matrix 1 [; Matrix 2][; ... [; Matrix 255]]</emph> stellen Matrizen dar, deren entsprechende Elemente multipliziert werden sollen."
+msgstr "<emph>Matrix 1[;Matrix 2][;…[;Matrix 255]]</emph> stellen Matrizen dar, deren entsprechende Elemente multipliziert werden sollen."
#. kCud6
#: 04060107.xhp
@@ -19427,7 +19427,7 @@ msgctxt ""
"par_id1665089\n"
"help.text"
msgid "GETPIVOTDATA(TargetField; pivot table[; Field 1; Item 1][; ... [Field 126; Item 126]])"
-msgstr "PIVOTDATENZUORDNEN(Zielfeld; Pivot-Tabelle [; Feld 1; Element 1][; ...][; Feld 126; Element 126])"
+msgstr "PIVOTDATENZUORDNEN(Zielfeld; Pivot-Tabelle [; Feld 1; Element 1 [; … [; Feld 126; Element 126]]])"
#. 3kCjF
#: 04060109.xhp
@@ -20129,7 +20129,7 @@ msgctxt ""
"par_id781585222554150\n"
"help.text"
msgid "<emph>String 1[; String 2][; … ;[String 255]]</emph> are strings or references to cells containing strings."
-msgstr "<emph>Zeichenkette 1 [; Zeichenkette 2 ][; … ][; Zeichenkette 255]</emph> sind Zeichenketten oder Verweise auf Zellen, die Zeichenketten enthalten."
+msgstr "<emph>Zeichenkette 1 [; Zeichenkette 2 [; … [; Zeichenkette 255]]]</emph> sind Zeichenketten oder Verweise auf Zellen, die Zeichenketten enthalten."
#. 8Dfcz
#: 04060110.xhp
@@ -24359,7 +24359,7 @@ msgctxt ""
"par_id050220171019072404\n"
"help.text"
msgid "=BESSELI(3.45, 4), returns 0.651416873060081"
-msgstr "=BESSELI(3,45; 4) ergibt 0,651416873060081"
+msgstr "=BESSELI(3,45;4) ergibt 0,651416873060081"
#. MZu39
#: 04060115.xhp
@@ -24368,7 +24368,7 @@ msgctxt ""
"par_id050220171019072953\n"
"help.text"
msgid "=BESSELI(3.45, 4.333), returns 0.651416873060081, same as above because the fractional part of N is ignored."
-msgstr "=BESSELI(3,45; 4,333) ergibt 0,651416873060081, das selbe wie oben, da der Anteil N ignoriert wird."
+msgstr "=BESSELI(3,45;4,333) ergibt 0,651416873060081, das selbe wie oben, da der Anteil N ignoriert wird."
#. 8yEjN
#: 04060115.xhp
@@ -24377,7 +24377,7 @@ msgctxt ""
"par_id050220171019075086\n"
"help.text"
msgid "=BESSELI(-1, 3), returns -0.022168424924332"
-msgstr "=BESSELI(-1; 3) ergibt -0,022168424924332"
+msgstr "=BESSELI(-1;3) ergibt -0,022168424924332"
#. Cccmx
#: 04060115.xhp
@@ -24431,7 +24431,7 @@ msgctxt ""
"par_id050220171019077179\n"
"help.text"
msgid "=BESSELJ(3.45, 4), returns 0.196772639864984"
-msgstr "=BESSELJ(3,45; 4) ergibt 0,196772639864984"
+msgstr "=BESSELJ(3,45;4) ergibt 0,196772639864984"
#. qyW2X
#: 04060115.xhp
@@ -24440,7 +24440,7 @@ msgctxt ""
"par_id050220171019078280\n"
"help.text"
msgid "=BESSELJ(3.45, 4.333), returns 0.196772639864984, same as above because the fractional part of N is ignored."
-msgstr "=BESSELJ(3,45; 4,333) ergibt 0,196772639864984, das selbe wie oben, da der Anteil N ignoriert wird."
+msgstr "=BESSELJ(3,45;4,333) ergibt 0,196772639864984, das selbe wie oben, da der Anteil N ignoriert wird."
#. Vv8kB
#: 04060115.xhp
@@ -24449,7 +24449,7 @@ msgctxt ""
"par_id050220171019079818\n"
"help.text"
msgid "=BESSELJ(-1, 3), returns -0.019563353982668"
-msgstr "=BESSELJ(-1; 3) ergibt -0,019563353982668"
+msgstr "=BESSELJ(-1;3) ergibt -0,019563353982668"
#. jb2FF
#: 04060115.xhp
@@ -24503,7 +24503,7 @@ msgctxt ""
"par_id050220171019073898\n"
"help.text"
msgid "=BESSELK(3.45, 4), returns 0.144803466373734"
-msgstr "=BESSELK(3,45; 4) ergibt 0,144803466373734"
+msgstr "=BESSELK(3,45;4) ergibt 0,144803466373734"
#. jAEzA
#: 04060115.xhp
@@ -24512,7 +24512,7 @@ msgctxt ""
"par_id050220171019079889\n"
"help.text"
msgid "=BESSELK(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored."
-msgstr "=BESSELK(3,45; 4,333) ergibt 0,144803466373734, das selbe wie oben, da der Anteil N ignoriert wird."
+msgstr "=BESSELK(3,45;4,333) ergibt 0,144803466373734, das selbe wie oben, da der Anteil N ignoriert wird."
#. vCmda
#: 04060115.xhp
@@ -24521,7 +24521,7 @@ msgctxt ""
"par_id050220171019076471\n"
"help.text"
msgid "=BESSELK(0, 3), returns Err:502 – invalid argument (X=0)"
-msgstr "=BESSELK(0; 3) ergibt Err:502 – ungültiges Argument (X=0)"
+msgstr "=BESSELK(0;3) ergibt Err:502 – ungültiges Argument (X=0)"
#. 9PCdq
#: 04060115.xhp
@@ -24575,7 +24575,7 @@ msgctxt ""
"par_id050220171019081114\n"
"help.text"
msgid "=BESSELY(3.45, 4), returns -0.679848116844476"
-msgstr "=BESSELY(3,45; 4) ergibt -0,679848116844476"
+msgstr "=BESSELY(3,45;4) ergibt -0,679848116844476"
#. ajsaF
#: 04060115.xhp
@@ -24584,7 +24584,7 @@ msgctxt ""
"par_id050220171019081288\n"
"help.text"
msgid "=BESSELY(3.45, 4.333), returns -0.679848116844476, same as above because the fractional part of N is ignored."
-msgstr "=BESSELY(3,45; 4,333) ergibt -0,679848116844476, das selbe wie oben, da der Anteil N ignoriert wird."
+msgstr "=BESSELY(3,45;4,333) ergibt -0,679848116844476, das selbe wie oben, da der Anteil N ignoriert wird."
#. Gzo4f
#: 04060115.xhp
@@ -24593,7 +24593,7 @@ msgctxt ""
"par_id050220171019082347\n"
"help.text"
msgid "=BESSELY(0, 3), returns Err:502 – invalid argument (X=0)"
-msgstr "=BESSELY(0; 3) ergibt Err:502 – ungültiges Argument (X=0)"
+msgstr "=BESSELY(0;3) ergibt Err:502 – ungültiges Argument (X=0)"
#. su6yN
#: 04060115.xhp
@@ -28319,7 +28319,7 @@ msgctxt ""
"par_id3152793\n"
"help.text"
msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
-msgstr "=XINTZINSFUSS(B1:B5; A1:A5; 0,1) ergibt 0,1828."
+msgstr "=XINTZINSFUSS(B1:B5;A1:A5;0,1) ergibt 0,1828."
#. HRiCT
#: 04060118.xhp
@@ -28688,7 +28688,7 @@ msgctxt ""
"par_id3151125\n"
"help.text"
msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
-msgstr "=ZINSSATZ(\"15.1.1990\"; \"5.5.2002\"; 1000000; 2000000; 3) ergibt 8,12 %."
+msgstr "=ZINSSATZ(\"15.1.1990\";\"5.5.2002\";1000000;2000000;3) ergibt 8,12 %."
#. 8bzpG
#: 04060118.xhp
@@ -28769,7 +28769,7 @@ msgctxt ""
"par_id3159251\n"
"help.text"
msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
-msgstr "=ZINSTERMNZ(\"25.1.2001\"; \"15.11.2001\"; 2; 3) ergibt 15.5.2001."
+msgstr "=ZINSTERMNZ(\"25.1.2001\";\"15.11.2001\";2;3) ergibt 15.5.2001."
#. rtDCn
#: 04060118.xhp
@@ -28850,7 +28850,7 @@ msgctxt ""
"par_id3156338\n"
"help.text"
msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
-msgstr "=ZINSTERMTAGE(\"25.1.2001\"; \"15.11.2001\"; 2; 3) ergibt 181."
+msgstr "=ZINSTERMTAGE(\"25.1.2001\";\"15.11.2001\";2;3) ergibt 181."
#. 9rAEC
#: 04060118.xhp
@@ -28931,7 +28931,7 @@ msgctxt ""
"par_id3156158\n"
"help.text"
msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
-msgstr "=ZINSTERMTAGNZ(\"25.1.2001\"; \"15.11.2001\"; 2; 3) ergibt 110."
+msgstr "=ZINSTERMTAGNZ(\"25.1.2001\";\"15.11.2001\";2;3) ergibt 110."
#. ZtaKE
#: 04060118.xhp
@@ -29012,7 +29012,7 @@ msgctxt ""
"par_id3151103\n"
"help.text"
msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
-msgstr "=ZINSTERMTAGVA(\"25.1.2001\"; \"15.11.2001\"; 2; 3) ergibt 71."
+msgstr "=ZINSTERMTAGVA(\"25.1.2001\";\"15.11.2001\";2;3) ergibt 71."
#. xuHak
#: 04060118.xhp
@@ -29093,7 +29093,7 @@ msgctxt ""
"par_id3149992\n"
"help.text"
msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
-msgstr "=ZINSTERMVZ(\"25.1.2001\"; \"15.11.2001\"; 2; 3) ergibt 11.15.2000."
+msgstr "=ZINSTERMVZ(\"25.1.2001\";\"15.11.2001\";2;3) ergibt 11.15.2000."
#. nXJAK
#: 04060118.xhp
@@ -29174,7 +29174,7 @@ msgctxt ""
"par_id3150640\n"
"help.text"
msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
-msgstr "=ZINSTERMZAHL(\"25.1.2001\"; \"15.11.2001\"; 2; 3) ergibt 2."
+msgstr "=ZINSTERMZAHL(\"25.1.2001\";\"15.11.2001\";2;3) ergibt 2."
#. qxhyC
#: 04060118.xhp
@@ -30416,7 +30416,7 @@ msgctxt ""
"par_id3151178\n"
"help.text"
msgid "<input>=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2)</input> returns 99.79583."
-msgstr "<input>=KURSDISAGIO(\"15.02.1999\"; \"01.03.1999\"; 0,0525; 100; 2)</input> ergibt 99,79583."
+msgstr "<input>=KURSDISAGIO(\"15.02.1999\";\"01.03.1999\";0,0525;100;2)</input> ergibt 99,79583."
#. hbGNH
#: 04060119.xhp
@@ -30524,7 +30524,7 @@ msgctxt ""
"par_id3158409\n"
"help.text"
msgid "<input>=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0)</input> returns 99.98449888."
-msgstr "<input>=KURSFÄLLIG(\"15.02.1999\";\"13.04.1999\";\"11.11.1998\"; 0,061; 0,061; 0)</input> ergibt 99,98449888."
+msgstr "<input>=KURSFÄLLIG(\"15.02.1999\";\"13.04.1999\";\"11.11.1998\";0,061;0,061;0)</input> ergibt 99,98449888."
#. GAN7n
#: 04060119.xhp
@@ -30776,7 +30776,7 @@ msgctxt ""
"par_id3145378\n"
"help.text"
msgid "<input>=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3)</input> returns 4.02 years."
-msgstr "<input>=MDURATION(\"01.01.2001\"; \"01.01.2006\"; 0,08; 0,09; 2; 3)</input> ergibt 4,02 Jahre."
+msgstr "<input>=MDURATION(\"01.01.2001\";\"01.01.2006\";0,08;0,09;2;3)</input> ergibt 4,02 Jahre."
#. BrDKP
#: 04060119.xhp
@@ -31406,7 +31406,7 @@ msgctxt ""
"par_id3155187\n"
"help.text"
msgid "<input>=YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99.795; 100; 2)</input> returns 0.052823 or 5.2823 per cent."
-msgstr "<input>=RENDITEDIS(\"15.02.1999\"; \"01.03.1999\"; 99,795; 100; 2)</input> ergibt 0,052823 oder 5,2823 %."
+msgstr "<input>=RENDITEDIS(\"15.02.1999\";\"01.03.1999\";99,795;100;2)</input> ergibt 0,052823 oder 5,2823 %."
#. 5mbhE
#: 04060119.xhp
@@ -31784,7 +31784,7 @@ msgctxt ""
"par_id3154592\n"
"help.text"
msgid "<input>=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09)</input> returns 98.45."
-msgstr "<input>=TBILLKURS(\"31.03.1999\";\"01.06.1999\"; 0,09)</input> ergibt 98,45."
+msgstr "<input>=TBILLKURS(\"31.03.1999\";\"01.06.1999\";0,09)</input> ergibt 98,45."
#. yEHpt
#: 04060119.xhp
@@ -31874,7 +31874,7 @@ msgctxt ""
"par_id3148528\n"
"help.text"
msgid "<input>=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45)</input> returns 0.091417 or 9.1417 per cent."
-msgstr "<input>=TBILLRENDITE(\"31.03.1999\";\"01.06.1999\"; 98,45)</input> ergibt 0,091417 oder 9,1417 %."
+msgstr "<input>=TBILLRENDITE(\"31.03.1999\";\"01.06.1999\";98,45)</input> ergibt 0,091417 oder 9,1417 %."
#. NF5nu
#: 04060119.xhp
@@ -56021,7 +56021,7 @@ msgctxt ""
"bm_id921516998608939\n"
"help.text"
msgid "<bookmark_value>CEILING.XCL function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>OBERGRENZE.EXCEL (Funktion)</bookmark_value>"
#. CRMmT
#: func_ceiling.xhp
@@ -56030,7 +56030,7 @@ msgctxt ""
"hd_id411516998838823\n"
"help.text"
msgid "<variable id=\"CEILING.XCLh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingxcl\" name=\"CEILING.XCL\">CEILING.XCL</link></variable>"
-msgstr ""
+msgstr "<variable id=\"CEILING.XCLh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingxcl\" name=\"CEILING.XCL\">OBERGRENZE.EXCEL</link></variable>"
#. 2tuD3
#: func_ceiling.xhp
@@ -56039,7 +56039,7 @@ msgctxt ""
"par_id811516998845826\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CEIL_MS\">Rounds a number to the nearest multiple of a significance value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_CEIL_MS\">Rundet eine Zahl auf das nächste Vielfache einer Schrittweite.</ahelp>"
#. tAyJj
#: func_ceiling.xhp
@@ -56048,7 +56048,7 @@ msgctxt ""
"par_id361586213828675\n"
"help.text"
msgid "For a positive number and a positive significance value, the function rounds up (away from zero). For a negative number and a positive significance value, the function rounds up (towards zero). For a negative number and a negative significance value, the function rounds down (away from zero). The function returns an error if the number is positive and the significance value is negative."
-msgstr ""
+msgstr "Bei einer positiven Zahl und einer positiven Schrittweite rundet die Funktion auf (von Null weg). Bei einer negativen Zahl und einer positiven Schrittweite rundet die Funktion auf (zu Null hin). Bei einer negativen Zahl und einer negativen Schrittweite rundet die Funktion nach unten (von Null weg). Bei einer positiven Zahl und einer negativen Schrittweite gibt die Funktion einen Fehler zurück."
#. 2CKjm
#: func_ceiling.xhp
@@ -56057,7 +56057,7 @@ msgctxt ""
"par_id881586213934118\n"
"help.text"
msgid "This function exists for interoperability with Microsoft Excel 2007 or older. If a Calc spreadsheet is exported to Microsoft Excel, references to Calc’s CEILING.XCL function are exported as references to Excel’s CEILING function, which is compatible with all Excel versions. If a Microsoft Excel spreadsheet is imported into Calc, references to Excel’s CEILING function are imported as references to Calc’s CEILING.XCL function."
-msgstr ""
+msgstr "Diese Funktion dient der Interoperabilität mit Microsoft Excel 2007 oder älter. Wenn eine Calc-Tabelle nach Microsoft Excel exportiert wird, werden Verweise auf die Funktion OBERGRENZE.EXCEL von Calc als Verweise auf die Funktion OBERGRENZE von Excel exportiert, die mit allen Excel-Versionen kompatibel ist. Wenn eine Microsoft Excel-Tabelle in Calc importiert wird, werden Verweise auf die Funktion OBERGRENZE von Excel als Verweise auf die FUNKTION OBERGRENZE.EXCEL von Calc importiert."
#. GspBr
#: func_ceiling.xhp
@@ -56066,7 +56066,7 @@ msgctxt ""
"par_id251516998856873\n"
"help.text"
msgid "CEILING.XCL(Number; Significance)"
-msgstr ""
+msgstr "OBERGRENZE.EXCEL(Zahl; Schrittweite)"
#. eTSgx
#: func_ceiling.xhp
@@ -56075,7 +56075,7 @@ msgctxt ""
"par_id151516998882622\n"
"help.text"
msgid "<emph>Significance</emph> is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded."
-msgstr ""
+msgstr "<emph>Schrittweite</emph> ist der Wert oder ein Verweis zu einer Zelle, die einen Wert enthält, auf dessen Vielfaches <emph>Zahl</emph> gerundet werden soll."
#. 6n7qn
#: func_ceiling.xhp
@@ -56084,7 +56084,7 @@ msgctxt ""
"par_id421586214128242\n"
"help.text"
msgid "<input>=CEILING.XCL(3.45,2)</input> returns 4."
-msgstr ""
+msgstr "<input>=OBERGRENZE.EXCEL(3,45;2)</input> ergibt 4."
#. nU46D
#: func_ceiling.xhp
@@ -56093,7 +56093,7 @@ msgctxt ""
"par_id651586214132234\n"
"help.text"
msgid "<input>=CEILING.XCL(-45.67; 2)</input> returns -44."
-msgstr ""
+msgstr "<input>=OBERGRENZE.EXCEL(-45,67;2)</input> ergibt -44."
#. nbB96
#: func_ceiling.xhp
@@ -56102,7 +56102,7 @@ msgctxt ""
"par_id811586214136666\n"
"help.text"
msgid "<input>=CEILING.XCL(-45.67; -2)</input> returns -46."
-msgstr ""
+msgstr "<input>=OBERGRENZE.EXCEL(-45,67;-2)</input> ergibt -46."
#. GMzhD
#: func_ceiling.xhp
@@ -56111,7 +56111,7 @@ msgctxt ""
"bm_id8952518\n"
"help.text"
msgid "<bookmark_value>ISO.CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ISO.OBERGRENZE (Funktion)</bookmark_value><bookmark_value>Runden; auf das Vielfache einer Schrittweite aufrunden</bookmark_value>"
#. q22aC
#: func_ceiling.xhp
@@ -56120,7 +56120,7 @@ msgctxt ""
"hd_id8952518\n"
"help.text"
msgid "<variable id=\"ISO.CEILINGh1\"><link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\" name=\"ISO.CEILING\">ISO.CEILING</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ISO.CEILINGh1\"><link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\" name=\"ISO.CEILING\">ISO.OBERGRENZE</link></variable>"
#. 5beBC
#: func_ceiling.xhp
@@ -56129,7 +56129,7 @@ msgctxt ""
"par_id8953422\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CEIL_ISO\">Rounds a number up to the nearest multiple of a significance value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_CEIL_ISO\">Rundet eine Zahl auf das nächste Vielfache einer Schrittweite auf.</ahelp>"
#. SFZNu
#: func_ceiling.xhp
@@ -56138,7 +56138,7 @@ msgctxt ""
"par_id101586214229587\n"
"help.text"
msgid "For a positive number the function rounds up (away from zero). For a negative number, the function rounds up (towards zero). The sign of the significance value is ignored."
-msgstr ""
+msgstr "Für eine positive Zahl rundet die Funktion auf (von Null weg). Für eine negative Zahl rundet die Funktion auf (zu Null hin). Das Vorzeichen der Schrittweite wird ignoriert."
#. qu8FG
#: func_ceiling.xhp
@@ -56147,7 +56147,7 @@ msgctxt ""
"par_id821586214265060\n"
"help.text"
msgid "This function calculates identical results to the <link href=\"#Section311\" name=\"ceilingprecise\">CEILING.PRECISE</link> function."
-msgstr ""
+msgstr "Diese Funktion berechnet identische Ergebnisse zu der Funktion <link href=\"#Section311\" name=\"ceilingprecise\">OBERGRENZE.GENAU</link>."
#. GRocX
#: func_ceiling.xhp
@@ -56156,7 +56156,7 @@ msgctxt ""
"par_id8953454\n"
"help.text"
msgid "ISO.CEILING(Number [; Significance])"
-msgstr ""
+msgstr "ISO.OBERGRENZE(Zahl [; Schrittweite])"
#. hwhCW
#: func_ceiling.xhp
@@ -56165,7 +56165,7 @@ msgctxt ""
"par_id8955000\n"
"help.text"
msgid "<emph>Significance</emph> (optional) is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded. It defaults to 1."
-msgstr ""
+msgstr "<emph>Schrittweite</emph> (optional) ist der Wert oder der Verweis auf einer Zelle, die den Wert enthält, auf dessen Vielfaches <emph>Zahl</emph> aufgerundet werden soll. Der Standardwert ist 1."
#. FSFdP
#: func_ceiling.xhp
@@ -56174,7 +56174,7 @@ msgctxt ""
"par_id801586214431463\n"
"help.text"
msgid "<input>=ISO.CEILING(3.45)</input> returns 4."
-msgstr ""
+msgstr "<input>=ISO.OBERGRENZE(3,45)</input> ergibt 4."
#. QHpJp
#: func_ceiling.xhp
@@ -56183,7 +56183,7 @@ msgctxt ""
"par_id181586214438808\n"
"help.text"
msgid "<input>=ISO.CEILING(-45.67; 2)</input> returns -44."
-msgstr ""
+msgstr "<input>=ISO.OBERGRENZE(-45,67;2)</input> ergibt -44."
#. GuEcB
#: func_color.xhp
@@ -56228,7 +56228,7 @@ msgctxt ""
"par_id27421466710275\n"
"help.text"
msgid "COLOR(Red; Green; Blue [; Alpha])"
-msgstr ""
+msgstr "FARBE(Rot; Grün; Blau [; Alpha])"
#. ASLWJ
#: func_color.xhp
@@ -56345,7 +56345,7 @@ msgctxt ""
"par_id911556226813412\n"
"help.text"
msgid "CONCAT( <embedvar href=\"text/scalc/01/ful_func.xhp#string255_1\" markup=\"keep\"/> )"
-msgstr ""
+msgstr "TEXTKETTE(<embedvar href=\"text/scalc/01/ful_func.xhp#string255_1\" markup=\"keep\"/>)"
#. aTwgH
#: func_concat.xhp
@@ -56408,7 +56408,7 @@ msgctxt ""
"par_id27421466710275\n"
"help.text"
msgid "COUNTIFS(Range1; Criterion1[; Range2; Criterion2][; ... ; [Range127; Criterion127]])"
-msgstr ""
+msgstr "ZÄHLENWENNS(Bereich 1; Bedingung 1 [; Bereich 2; Bedingung 2 [; … [; Bereich 127; Bedingung 127]]])"
#. 2BB8K
#: func_countifs.xhp
@@ -57164,7 +57164,7 @@ msgctxt ""
"par_id3155313\n"
"help.text"
msgid "DAYS360(Date1; Date2[; Type])"
-msgstr ""
+msgstr "TAGE360(Datum 1; Datum 2 [; Art])"
#. 5qfGz
#: func_days360.xhp
@@ -57740,7 +57740,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FINDB Function"
-msgstr ""
+msgstr "Funktion FINDENB"
#. EkUr2
#: func_findb.xhp
@@ -57749,7 +57749,7 @@ msgctxt ""
"bm_id141573508995071\n"
"help.text"
msgid "<bookmark_value>FINDB Function</bookmark_value> <bookmark_value>find text;FINDB Function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>FINDENB (Funktion)</bookmark_value><bookmark_value>Text finden; FINDENB (Funktion)</bookmark_value>"
#. WmZAa
#: func_findb.xhp
@@ -57758,7 +57758,7 @@ msgctxt ""
"hd_id771573508637966\n"
"help.text"
msgid "<variable id=\"findb\"><link href=\"text/scalc/01/func_findb.xhp\" name=\"findb\">FINDB</link></variable>"
-msgstr ""
+msgstr "<variable id=\"findb\"><link href=\"text/scalc/01/func_findb.xhp\" name=\"findb\">FINDENB</link></variable>"
#. iW2EE
#: func_findb.xhp
@@ -57767,7 +57767,7 @@ msgctxt ""
"par_id831573508637970\n"
"help.text"
msgid "<variable id=\"variable name\"><ahelp hid=\".\">Returns the starting position of a given text, using byte positions. FINDB is case sensitive.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"variable name\"><ahelp hid=\".\">Gibt die Startposition eines bestimmten Textes mittels Byte-Positionen zurück. FINDENB unterscheidet zwischen Groß- und Kleinschreibung.</ahelp></variable>"
#. 4ztby
#: func_findb.xhp
@@ -57776,7 +57776,7 @@ msgctxt ""
"par_id221573517641172\n"
"help.text"
msgid "FINDB(Find Text ; Text [; Position])"
-msgstr ""
+msgstr "FINDENB(Suchtext; Text [; Position])"
#. puQAw
#: func_findb.xhp
@@ -57785,7 +57785,7 @@ msgctxt ""
"par_id241573517292388\n"
"help.text"
msgid "<emph>Find Text</emph>: The text or text expression to be found."
-msgstr ""
+msgstr "<emph>Suchtext</emph>: Der zu suchende Text oder Textausdruck."
#. YgyTW
#: func_findb.xhp
@@ -57794,7 +57794,7 @@ msgctxt ""
"par_id991573517299918\n"
"help.text"
msgid "<emph>Text</emph>: the text in which the search is to be made."
-msgstr ""
+msgstr "<emph>Text</emph>: Der Text, in dem gesucht werden soll."
#. pfYPq
#: func_findb.xhp
@@ -57803,7 +57803,7 @@ msgctxt ""
"par_id521573517305077\n"
"help.text"
msgid "<emph>Position</emph>: The position in the text where the search starts."
-msgstr ""
+msgstr "<emph>Position</emph>: Die Position innerhalb des Textes, ab der gesucht werden soll."
#. VLM4H
#: func_findb.xhp
@@ -57812,7 +57812,7 @@ msgctxt ""
"par_id481573517830373\n"
"help.text"
msgid "<input>=FINDB(\"ᄫᄬ\";\"ᄩᄔᄕᄜᄝᄞᄠgᄢᄣᄫᄬᄭᄮᄯᄲᄶ\";17)</input> returns 19."
-msgstr ""
+msgstr "<input>=FINDENB(\"ᄫᄬ\";\"ᄩᄔᄕᄜᄝᄞᄠgᄢᄣᄫᄬᄭᄮᄯᄲᄶ\";17)</input> ergibt 19."
#. aACGP
#: func_floor.xhp
@@ -57821,7 +57821,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FLOOR Functions"
-msgstr ""
+msgstr "Funktionen UNTERGRENZE"
#. RuCRw
#: func_floor.xhp
@@ -57830,7 +57830,7 @@ msgctxt ""
"hd_id391586285373874\n"
"help.text"
msgid "FLOOR Functions"
-msgstr ""
+msgstr "Funktionen UNTERGRENZE"
#. hkrkw
#: func_floor.xhp
@@ -57839,7 +57839,7 @@ msgctxt ""
"bm_id3157404\n"
"help.text"
msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>UNTERGRENZE (Funktion)</bookmark_value><bookmark_value>Runden; auf das nächste Vielfache einer Schrittweite abrunden</bookmark_value>"
#. KoqGL
#: func_floor.xhp
@@ -57848,7 +57848,7 @@ msgctxt ""
"hd_id3157404\n"
"help.text"
msgid "<variable id=\"FLOORh1\"><link href=\"text/scalc/01/func_floor.xhp#floor\" name=\"FLOOR\">FLOOR</link></variable>"
-msgstr ""
+msgstr "<variable id=\"FLOORh1\"><link href=\"text/scalc/01/func_floor.xhp#floor\" name=\"FLOOR\">UNETRGENZE</link></variable>"
#. VSV8H
#: func_floor.xhp
@@ -57857,7 +57857,7 @@ msgctxt ""
"par_id3157432\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number to the nearest multiple of a significance value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rundet eine Zahl auf das nächste Vielfache einer Schrittweite.</ahelp>"
#. 345Fr
#: func_floor.xhp
@@ -57866,7 +57866,7 @@ msgctxt ""
"par_id661586285977707\n"
"help.text"
msgid "For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a negative significance value, the direction of rounding is determined by the value of a mode parameter. The function returns an error if the number and significance values have opposite signs."
-msgstr ""
+msgstr "Für eine positive Zahl und eine positive Schrittweite rundet die Funktion ab (zu Null hin). Für eine negative Zahl und eine negative Schrittweite wird die Richtung der Rundung durch den Wert eines Parameter Modus bestimmt. Die Funktion gibt einen Fehler zurück, wenn die Zahl und die Schrittweite entgegengesetzte Vorzeichen haben."
#. 5kHtR
#: func_floor.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/guide.po b/source/de/helpcontent2/source/text/scalc/guide.po
index 41972db011e..1b24fcdec0f 100644
--- a/source/de/helpcontent2/source/text/scalc/guide.po
+++ b/source/de/helpcontent2/source/text/scalc/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: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-05-27 09:52+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 13:36+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565411177.000000\n"
#. NXy6S
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Zum Fixieren in sowohl waagerechter als auch senkrechter Richtung wählen Sie die <emph>Zelle</emph> unter der zu fixierenden Zeile und rechts von der zu fixierenden Spalte aus."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Wählen Sie <item type=\"menuitem\">Ansicht - Zellen fixieren - Zeilen/Spalten fixieren</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Zum deaktivieren wählen Sie erneut <item type=\"menuitem\">Ansicht - Zellen fixieren - Zeilen/Spalten fixieren</item>."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Um eine bestimmte Zeile auf allen Seiten eines Dokuments zu drucken, wählen Sie <item type=\"menuitem\">Format - Druckbereiche - Bearbeiten...</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Anicht - Zellen fixieren - Zeilen/Spalten fixieren\">Anicht - Zellen fixieren - Zeilen/Spalten fixieren</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
@@ -10526,7 +10526,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
-msgstr "Diese Arbeit nimmt Ihnen $[officename] Calc aber glücklicherweise ab. Nachdem eine neue Spalte A eingefügt wurde, wird die Formel =SUM(A1:B2) automatisch aktualisiert. Sie lautet dann =SUM(B1:C2). Ebenso werden beim Einfügen einer neuen Zeile 1 die Zeilennummern automatisch aktualisiert. Wann immer ein referenzierter Bereich verschoben wird, korrigiert $[officename] absolute und relative Bezüge. Beachten Sie aber, dass beim Kopieren von Formeln ausschließlich die relativen Bezüge aktualisiert werden. Die absoluten Bezüge bleiben unverändert."
+msgstr "Diese Arbeit nimmt Ihnen $[officename] Calc aber glücklicherweise ab. Nachdem eine neue Spalte A eingefügt wurde, wird die Formel =SUMME(A1:B2) automatisch aktualisiert. Sie lautet dann =SUMME(B1:C2). Ebenso werden beim Einfügen einer neuen Zeile 1 die Zeilennummern automatisch aktualisiert. Wann immer ein referenzierter Bereich verschoben wird, korrigiert $[officename] Calc absolute und relative Bezüge. Beachten Sie aber, dass beim Kopieren von Formeln ausschließlich die relativen Bezüge aktualisiert werden. Die absoluten Bezüge bleiben unverändert."
#. HEJFq
#: relativ_absolut_ref.xhp
diff --git a/source/de/helpcontent2/source/text/sdraw/01.po b/source/de/helpcontent2/source/text/sdraw/01.po
index 1a4e79519aa..1517a499c91 100644
--- a/source/de/helpcontent2/source/text/sdraw/01.po
+++ b/source/de/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-27 11:34+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/de/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Legt Folienausrichtung, Folienränder, Folienhintergrund und andere Layoutoptionen fest.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Um den Hintergrund für alle Folien des aktiven Dokumentes zu ändern, klicken Sie auf <emph>OK</emph> und anschließend auf <emph>Ja</emph> im Dialog <emph>Folieneinstellungen</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index b52f81ac776..bb8d5e45bb2 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/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: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-05 10:35+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/de/>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index 6cd4bd20d50..2ca549d03ec 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-05 05:34+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/de/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Arbeiten mit %PRODUCTNAME\">Arbeiten mit <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "HTML-Dokument"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "OpenDocument-Textdokument (Flat XML)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0-Textdokument"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0-Textdokument"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0-Textdokument"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "T602-Dokument"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Text"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Text"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "Filter für Grafiken"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD Interchange Format"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF - Enhanced-Metadatei"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF - Enhanced-Metadatei"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Encapsulated PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Encapsulated PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr "GIF - Graphics Interchange"
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr "GIF - Graphics Interchange"
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr "text/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET - OS/2-Metadatei"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - QuickTime-Dateiformat"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr "PCD - Photo CD Base4"
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT - Mac Pict"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Portable Graymap"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network Graphic"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Portable Pixelmap"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Sun Raster Image"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Image"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Skalierbare-Vektorgrafiken"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Skalierbare-Vektorgrafiken"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Skalierbare-Vektorgrafiken"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - Skalierbare-Vektorgrafiken Draw"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr "SVM - StarView-Metadatei"
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF - Tagged Image-Dateiformat"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image-Dateiformat"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Windows-Metadatei"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitmap"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Fehlerbericht-Programm"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Fehlerbericht-Programm</bookmark_value><bookmark_value>Berichte; Fehlerberichte</bookmark_value><bookmark_value>Absturzberichte</bookmark_value><bookmark_value>Aktivieren; Fehlerbericht-Programm</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Fehlerbericht-Programm\">Fehlerbericht-Programm</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Das Fehlerbericht-Programm startet bei einem Programmabsturz automatisch."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Das Fehlerbericht-Programm stellt wichtige Informationen zusammen, die unsere Programmentwickler benötigen, um den aufgetretenen Fehler aus künftigen Versionen auszuschließen. Bitte helfen Sie uns bei der Verbesserung des Programms, und senden Sie den generierten Fehlerbericht ab."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Aufrufen des Fehlerbericht-Programms"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Bei den meisten Programmabstürzen startet das Fehlerbericht-Programm automatisch."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Ausfüllen des Berichts"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Im Hauptdialog des Fehlerbericht-Programms haben Sie die Gelegenheit, einige zusätzliche Informationen einzugeben, die unseren Programmierern beim Auffinden des Fehlers behilflich sein können. Wenn beispielsweise ein Fehler nach einer Änderung Ihrer Hard- oder Softwareumgebung auftritt oder durch Betätigung einer bestimmten Schaltfläche ausgelöst wird, dann geben Sie dies bitte an."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Senden des Fehlerberichts"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Das Fehlerbericht-Programm sendet die Berichtdaten per HTTP PUT / SOAP. Sie können optional eine nähere Beschreibung eingeben, um uns die Zusammenhänge des Programmabsturzes genauer zu schildern. Klicken Sie abschließend auf die Schaltfläche <emph>Senden</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Sie erhalten keine Antwort auf einen solchen Fehlerbericht. Falls Sie Unterstützung wünschen, besuchen Sie bitte unser <link href=\"text/shared/main0108.xhp\">Support-Forum</link> im Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Welche Daten werden übermittelt?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Ein Fehlerbericht besteht aus verschiedenen Dateien. Das Kernstück ist eine Datei mit Angaben zu Fehlertyp, Name und Version des Betriebssystems, Arbeitsspeicherauslastung sowie der von Ihnen eingegebenen Beschreibung. Um die Informationen, die in der Berichtdatei versendet werden, anzusehen, klicken Sie im Hauptdialog des Fehlerbericht-Programms auf die Schaltfläche <emph>Bericht anzeigen</emph>."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Darüber hinaus tragen einige Standardsystemeinrichtungen (\"dbhhelp.dll\" unter Windows und \"pstack\" unter UNIX) relevante Speicherinhalte und Stack-Informationen zusammen. Auch diese Informationen werden versendet."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Achten Sie darauf, dass Sie für jedes Fax einen eigenen Druckjob erzeugen, da sonst der erste Empfänger alle Faxe erhalten würde. Im Dialog <emph>Datei - Serienbrief</emph> wählen Sie die Option <emph>Drucker</emph> und dann das Feld <emph>Einzelne Druckjobs erzeugen</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Standardvorlage ändern"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>Modifizieren, siehe Ändern</bookmark_value><bookmark_value>Ändern, siehe auch Bearbeiten und Ersetzen</bookmark_value><bookmark_value>Standardvorlagen; ändern</bookmark_value><bookmark_value>Voreinstellungen; Dokumente</bookmark_value><bookmark_value>Benutzerdefinierte Dokumentvorlagen</bookmark_value><bookmark_value>Aktualisieren; Dokumentvorlagen</bookmark_value><bookmark_value>Bearbeiten; Dokumentvorlagen</bookmark_value><bookmark_value>Dokumentvorlagen; bearbeiten und speichern</bookmark_value><bookmark_value>Speichern; Dokumentvorlagen</bookmark_value><bookmark_value>Zurücksetzen; Dokumentvorlagen</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Standardvorlage ändern\">Standardvorlage ändern</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Wenn Sie über <emph>Datei - Neu</emph> ein neues Dokument öffnen, erhalten Sie ein leeres Dokument, welches auf einer $[officename]-Vorlage beruht. Sie können diese Vorlage bearbeiten, verändern oder sie ersetzen, so dass das neue Dokument Ihre angepassten Stile oder andere Inhalte enthält."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Ändern der Standardvorlage"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Öffnen Sie zunächst entweder eine der in $[officename] enthaltenen Dokumentvorlagen und bearbeiten Sie diese, oder öffnen Sie ein neues, leeres Dokument und gestalten Sie es so, wie die Dokumentvorlage aussehen soll."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Sie können für jedes $[officename]-Modul eine Dokumentvorlage definieren. Nachfolgend beschreiben wir das Vorgehen für Textdokumente."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Speichern Sie das Dokument über <emph>Datei - Vorlagen - Als Vorlage speichern</emph> im Verzeichnis <emph>Meine Vorlagen</emph>."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Wählen Sie <emph>Datei - Neu - Vorlagen...</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Klicken Sie in der Liste doppelt auf <emph>Meine Vorlagen</emph>. Sie sehen die benutzerdefinierten Vorlagen im Benutzerverzeichnis, das Sie unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Pfade</emph> festgelegt haben. Wählen Sie die Vorlage, die Sie gerade gespeichert haben."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Wählen Sie <emph>Als Standard setzen</emph>. Das nächste neue Textdokument, das Sie öffnen, baut auf dieser neuen Standarddokumentvorlage auf."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "So nutzen Sie eigene Dokumentvorlagen"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Es gibt viele Möglichkeiten, sich die Arbeit mit eigenen Dokumentvorlagen zu erleichtern."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Vorlagen im Vorlagenordner"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Sie können eine neue Vorlage über <emph>Datei - Vorlagen - Als Vorlage speichern</emph> oder durch Auswahl des Dateityps \"Dokumentvorlage\" im Dialog Speichern unter erstellen. Speichern Sie die Vorlagen in dem unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Pfade</emph> festgelegten Verzeichnis, damit sie im Dialog unter <emph>Datei - Neu - Vorlagen...</emph> angezeigt werden."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Um die Vorlage zum Bearbeiten zu öffnen, wählen Sie <emph>Datei - Neu - Vorlagen...</emph>, rechtsklicken auf die gewünschte Vorlage und wählen im Kontextmenü <emph>Bearbeiten</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,14 +24100,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Weitere Informationen unter <link href=\"text/swriter/guide/templates_styles.xhp\">Formatvorlagen</link>."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Weitere Informationen unter <link href=\"text/swriter/guide/template_create.xhp\">Eine Dokumentvorlage erstellen</link>."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/de/helpcontent2/source/text/shared/optionen.po b/source/de/helpcontent2/source/text/shared/optionen.po
index 6d471d7857e..4252b66c157 100644
--- a/source/de/helpcontent2/source/text/shared/optionen.po
+++ b/source/de/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-06-09 21:11+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/de/>\n"
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "Anzeige"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>Ansichten; Voreinstellungen</bookmark_value><bookmark_value>Voreinstellungen; Ansichten</bookmark_value><bookmark_value>Einstellungen; Ansichten</bookmark_value><bookmark_value>Symbole; Größen</bookmark_value><bookmark_value>Symbole; Stile</bookmark_value><bookmark_value>WYSIWYG in Schriftartenlisten</bookmark_value><bookmark_value>Vorschauen; Schriftartenlisten</bookmark_value><bookmark_value>Schriftartenlisten</bookmark_value><bookmark_value>Schriftart-Auswahlfeld</bookmark_value><bookmark_value>Maus; Positionierung</bookmark_value><bookmark_value>Zwischenablage; Zwischenablagen-Auswahl</bookmark_value><bookmark_value>Zwischenablagen-Auswahl</bookmark_value><bookmark_value>OpenGL; Einstellungen</bookmark_value><bookmark_value>OpenGL; Negativliste</bookmark_value><bookmark_value>OpenGL; Positivliste</bookmark_value><bookmark_value>OpenGL; Grafikausgabe</bookmark_value><bookmark_value>Symbolband; Symbolgröße</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Legt die Ansichts-Optionen fest."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Benutzeroberfläche"
+msgid "Icon style"
+msgstr "Symbolstil"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Symbolgröße der Symbolleisten"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Wählen Sie den Symbolstil für die Symbole in den Symbolleisten und Dialogen aus.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Legt die Größe für Symbole in der Symbolleiste fest.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> Die Option <emph>Automatisch</emph> verwendet die im Betriebssystem eingestellte Schriftgröße für die Menüs.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Symbolgröße der Seitenleiste"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Wählen Sie die Größe für die Symbole in der Seitenleiste.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Symbolgröße des Symbolbands"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Wählen Sie die Größe für die Symbole des <link href=\"text/shared/01/notebook_bar.xhp\">Symbolbands</link>.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Symbolstil"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Wählen Sie den Symbolstil für die Symbole in den Symbolleisten und Dialogen aus.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Wählen Sie die Größe für die Symbole in der Seitenleiste.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Antialiasing für Bildschirmschrift"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Lässt die Textdarstellung auf dem Bildschirm glatter aussehen.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Geben Sie die kleinste Schriftgröße ein, auf die das Antialiasing angewendet werden soll.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Zeigt die Symbole neben den zugehörigen Menüeinträgen an. Wählen Sie aus \"Automatisch\", \"Verbergen\" oder \"Anzeigen\". \"Automatisch\" zeigt die Symbole entsprechend den Systemeinstellungen und -themen.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Maus"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Mauspositionierung"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Legen Sie fest, ob und an welcher Stelle der Mauszeiger in neu geöffneten Dialogen platziert wird.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Mittlere Maustaste"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "Die zuletzt vorgenommene Auswahl ist der Inhalt der Auswahl-Zwischenablage."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Grafikausgabe"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Drücken Sie Umschalt+Strg+R, um die Ansicht des aktuellen Dokuments wiederherzustellen oder zu aktualisieren.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Drücken Sie Umschalt+Strg+R, um die Ansicht des aktuellen Dokuments wiederherzustellen oder zu aktualisieren.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,68 +3805,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Wenn es unterstützt wird, können Sie Antialiasing für Objekte aktivieren oder deaktivieren. Wenn Antialiasing aktiviert ist, erscheint die Ansicht der meisten grafischen Objekte glatter und mit weniger Artefakten.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "OpenGL für das Rendern verwenden (nach Neustart)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Benutzt die leistungsstarke Open-Graphics-Bibliothek (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>), um alle visuellen Elemente der Anwendung zu rendern, einschließlich Fenster, Menüs, Symbolleisten und Symbole.</ahelp> OpenGL benutzt die Grafikkarte des Computers zur Beschleunigung der Grafikübertragung. Falls das Gerät auf der Negativliste steht (sehen Sie unten), ist diese Option unwirksam."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "OpenGL trotz Negativliste erzwingen (nach Neustart)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Erzwingt die Benutzung von OpenGL selbst wenn die Grafikkarte auf der Negativliste steht.</ahelp> Eine Karte steht auf der Negativliste, wenn es fehlerbehaftet ist oder Grafiken von geringer Qualität rendert."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menü"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Symbole in Menüs"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Zeigt die Symbole neben den zugehörigen Menüeinträgen an. Wählen Sie aus \"Automatisch\", \"Verbergen\" oder \"Anzeigen\". \"Automatisch\" zeigt die Symbole entsprechend den Systemeinstellungen und -themen.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Zeigt die Namen der auswählbaren Schriftarten in der entsprechenden Schriftart an, beispielsweise im Feld \"Schrift\" in der Symbolleiste <emph>Format</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Antialiasing für Bildschirmschrift"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Lässt die Textdarstellung auf dem Bildschirm glatter aussehen.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Geben Sie die kleinste Schriftgröße ein, auf die das Antialiasing angewendet werden soll.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/guide.po b/source/de/helpcontent2/source/text/swriter/guide.po
index 6a9d91aba28..e922dc2d75c 100644
--- a/source/de/helpcontent2/source/text/swriter/guide.po
+++ b/source/de/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-06-09 21:11+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/de/>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Alle neuen $[officename]-Textdokumente bauen auf der Dokumentvorlage \"Standard\" auf, sofern Sie nichts anderes festlegen."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] verfügt über eine Reihe <link href=\"text/swriter/01/05130000.xhp\" name=\"vordefinierter Dokumentvorlagen\">vordefinierter Dokumentvorlagen</link>, die Sie für verschiedene Arten von Textdokumenten verwenden können, beispielsweise für Geschäftsbriefe."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Um das Verhalten des Direkt-Cursors einzustellen, wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatierungshilfen</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Klicken Sie auf der Symbolleiste <item type=\"menuitem\">Extras</item> auf das Symbol <item type=\"menuitem\">Direkt-Cursor ein/aus</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Symbol</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Klicken Sie auf einen leeren Bereich im Textdokument. Der Mauszeiger ändert seine Form und zeigt die Ausrichtung an, die für den eingegebenen Text verwendet wird."
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Symbol</alt></image> Linksbündig"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Symbol</alt></image> Zentriert"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Symbol</alt></image> Rechtsbündig"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index 0b4b90eb171..63b25553fe9 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:46+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565256511.000000\n"
#. W5ukN
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Folie a~usblenden"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Text~..."
+msgid "Te~xt Attributes..."
+msgstr "Textattribute…"
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Gleichseitiges Dreieck"
#. BUJ28
#: Effects.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Datei"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ausr~ichtung"
+msgid "Alig~n Objects"
+msgstr "Objekte ausrichten"
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ausric~htung"
+msgid "Align Tex~t"
+msgstr "Text ausrichten"
#. y3E2U
#: GenericCommands.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Änderungen anzeigen"
#. sMgCx
#: WriterCommands.xcu
@@ -31098,14 +31098,14 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Bis Absatzende auswählen"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
+msgid "Select to End of Word"
msgstr "Bis Wortende auswählen"
#. bpBoC
@@ -36426,7 +36426,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr "Objekte aurichten"
+msgstr "Objekte ausrichten"
#. EnMs9
#: WriterReportWindowState.xcu
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
index 5f9d12356ca..d576086c6b7 100644
--- a/source/de/sc/messages.po
+++ b/source/de/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-03 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565592942.000000\n"
#. kBovX
@@ -1469,7 +1469,7 @@ msgstr "Dif-Import"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Standard"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -14683,7 +14683,7 @@ msgstr "Das Ergebnis der Funktion, wenn der Test WAHR ist."
#: sc/inc/scfuncs.hrc:3606
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value."
-msgstr ""
+msgstr "Vergleicht den Ausdruck mit der Liste der Wert-/Ergebnis-Paare und gibt das Ergebnis für den ersten Wert zurück, der dem Ausdruck entspricht. Wenn der Ausdruck keinem Wert entspricht, wird ein Standardergebnis zurückgegeben, wenn es als letztes Element in der Parameterliste ohne Wert platziert wird."
#. PneN8
#: sc/inc/scfuncs.hrc:3607
@@ -14695,7 +14695,7 @@ msgstr "Ausdruck"
#: sc/inc/scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to be compared against value1…valueN (N ≤ 127)"
-msgstr ""
+msgstr "Wert, der mit Wert 1 … Wert N (N ≤ 127) verglichen werden soll"
#. 9wcvj
#: sc/inc/scfuncs.hrc:3609
@@ -14707,7 +14707,7 @@ msgstr "Wert "
#: sc/inc/scfuncs.hrc:3610
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to compare against expression. If no result is given, then value is returned as default result."
-msgstr ""
+msgstr "Wert, der mit dem Ausdruck verglichen werden soll. Wenn kein Ergebnis angegeben wird, wird der Wert als Standardergebnis zurückgegeben."
#. dsARv
#: sc/inc/scfuncs.hrc:3611
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "~Datei"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Legt die Umrandung der ausgewählten Zellen fest."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Einzug vergrößern"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Einzug verkleinern"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Feld"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Einfügen"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Einfügen"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektausrichtung"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "~Layout"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "~Statistiken"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Da_ten"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Daten"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Änderungen"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Änderungen"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ansicht"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ansicht"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "~Bild"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zeichnen"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zeichnen"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Umwandeln"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medien"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medien"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Drucken"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Drucken"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formular"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Extras"
@@ -25214,13 +25214,13 @@ msgstr "Betont 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "Überschrift 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "Überschrift 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -28628,7 +28628,7 @@ msgstr "Beim Einfügen von Zellen aus der Zwischenablage in einen nicht leeren Z
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
msgctxt "scgeneralpage|enter_paste_mode_cb"
msgid "Press Enter to paste and clear clipboard"
-msgstr ""
+msgstr "Drücken Sie die Eingabetaste, um die Zwischenablage einzufügen und zu löschen"
#. LFenu
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
@@ -29626,338 +29626,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solver"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr "Alles zurücksetzen"
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_ptionen…"
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Öffnet den Dialog Solver-Optionen."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "Lö_sen"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Zielzelle"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Zielwert"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Veränder_bare Zellen"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Geben Sie den zu ändernden Zellbereich ein."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maximum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Geben Sie den zu ändernden Zellbereich ein."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Geben Sie den zu ändernden Zellbereich ein."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Geben Sie den Zellbezug der Zielzelle ein oder klicken Sie darauf. Dieses Feld enthält den Bezug zu der Zelle, deren Wert optimiert werden soll."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Wert von"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Geben Sie den zu ändernden Zellbereich ein."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Geben Sie den zu ändernden Zellbereich ein."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Zellbezu_g"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "_Wert"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Zellbezug"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Zellbezug"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Zellbezug"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Zellbezug"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Ganzzahl"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binär"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Ganzzahl"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binär"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Ganzzahl"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binär"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Ganzzahl"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binär"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Wert"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Wert"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Wert"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Wert"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Entfernen"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Entfernen"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Entfernen"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Entfernen"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Nebenbedingungen"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Öffnet den Dialog „Solver“. Mit dem Solver können Sie mathematische Probleme mit mehreren unbekannten Variablen und einer Reihe von Einschränkungen für die Variablen mit zielsuchenden Methoden lösen."
diff --git a/source/de/sd/messages.po b/source/de/sd/messages.po
index 4d56a6d3d7f..3876d3457ae 100644
--- a/source/de/sd/messages.po
+++ b/source/de/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:46+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/de/>\n"
@@ -3819,116 +3819,116 @@ msgstr "~Tabelle"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Umwandeln"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Bild"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zeichnen"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zeichnen"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medien"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medien"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formular"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "_3D"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "~3D"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Mas_ter"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Master"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "E~xtras"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menü"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtension"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "~Datei"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Feld"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Einfügen"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Einfügen"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Bildschirmpräsentation"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Bildschirmpräsentation"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Änderungen"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Änderungen"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ansicht"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ansicht"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabelle"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabelle"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Umwandeln"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Bild"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zeichnen"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zeichnen"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medien"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medien"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formular"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Master"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Master"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Ansicht"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Glie~derung"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "_3D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "~3D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "E~xtras"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Kontur bearbeiten"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtension"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/de/sfx2/messages.po b/source/de/sfx2/messages.po
index a0b172a15bd..3544a167271 100644
--- a/source/de/sfx2/messages.po
+++ b/source/de/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-03 11:56+0000\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560714585.000000\n"
#. bHbFE
@@ -1756,7 +1756,7 @@ msgstr "Metropolis"
#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
-msgstr "Mitternachtsblau"
+msgstr "Nachtblau"
#. yiCzk
#: include/sfx2/strings.hrc:317
@@ -4133,37 +4133,37 @@ msgstr "Löschen…"
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Andocken"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Abdocken"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Seitenleiste schließen"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Anpassung"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Standard wiederherstellen"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Einstellungen der Seitenleiste"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/de/starmath/messages.po b/source/de/starmath/messages.po
index 52be7acac03..74caf31dec1 100644
--- a/source/de/starmath/messages.po
+++ b/source/de/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-09-16 05:27+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562561180.000000\n"
#. GrDhX
@@ -507,7 +507,7 @@ msgstr "Division (Bruch)"
#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Bruch"
#. 37Fw8
#: starmath/inc/strings.hrc:47
@@ -717,7 +717,7 @@ msgstr "Differenz"
#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Quotient"
#. ToVZV
#: starmath/inc/strings.hrc:82
@@ -1401,13 +1401,13 @@ msgstr "Zeichenfarbe rot"
#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Zeichenfarbe türkis"
#. 6zGQ2
#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Zeichenfarbe magenta"
#. em3aA
#: starmath/inc/strings.hrc:197
@@ -1473,79 +1473,79 @@ msgstr "Zeichenfarbe RGB"
#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Zeichenfarbe RGBA"
#. UxFDW
#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
-msgstr ""
+msgstr "Zeichenfarbe hexadezimal"
#. MGdCv
#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
-msgstr ""
+msgstr "Zeichenfarbe Koralle"
#. gPCCe
#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
-msgstr ""
+msgstr "Zeichenfarbe purpurrot"
#. oDRbR
#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
-msgstr ""
+msgstr "Zeichenfarbe Nachtblau"
#. 4aCMu
#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
-msgstr ""
+msgstr "Zeichenfarbe violett"
#. Qivdb
#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
-msgstr ""
+msgstr "Zeichenfarbe orange"
#. CVygm
#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
-msgstr ""
+msgstr "Zeichenfarbe orange-rot"
#. LbfRK
#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
-msgstr ""
+msgstr "Zeichenfarbe seegrün"
#. DKivY
#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
-msgstr ""
+msgstr "Zeichenfarbe Indigo"
#. TZQzN
#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
-msgstr ""
+msgstr "Zeichenfarbe pink"
#. GHgTB
#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
-msgstr ""
+msgstr "Zeichenfarbe Lavendel"
#. HQmw7
#: starmath/inc/strings.hrc:219
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
-msgstr ""
+msgstr "Zeichenfarbe Schneeweiß"
#. A2GQ4
#: starmath/inc/strings.hrc:220
@@ -2169,7 +2169,7 @@ msgstr "Satz des Pythagoras"
#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Taylorreihe"
#. MuqjR
#: starmath/inc/strings.hrc:325
@@ -2181,43 +2181,43 @@ msgstr "Normalverteilung"
#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Euler-Lagrange-Gleichung"
#. LnNNA
#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Fundamentalsatz der Analysis"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Chaosgleichung"
#. afEQ8
#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Euler-Theorem"
#. m3ukF
#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Zweites newtonsches Gesetz"
#. ZmaUU
#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Allgemeine Relativität"
#. ADBy9
#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Spezielle Relativität"
#. u47dF
#: starmath/inc/strings.hrc:334
@@ -2265,13 +2265,13 @@ msgstr "rot"
#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "türkis"
#. GLy7q
#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "magenta"
#. fZKES
#: starmath/inc/strings.hrc:343
@@ -2331,67 +2331,67 @@ msgstr "gelb"
#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
-msgstr ""
+msgstr "koralle"
#. RZSh6
#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
-msgstr ""
+msgstr "purpurrot"
#. QGibF
#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
-msgstr ""
+msgstr "nachtblau"
#. NKAkW
#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
-msgstr ""
+msgstr "violett"
#. sF9zc
#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
-msgstr ""
+msgstr "orange"
#. CXMyK
#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
-msgstr ""
+msgstr "orangerot"
#. Ak3yd
#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
-msgstr ""
+msgstr "lavendel"
#. DLUaV
#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
-msgstr ""
+msgstr "schneeweiß"
#. QDTEU
#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
-msgstr ""
+msgstr "seegrün"
#. PNveS
#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
-msgstr ""
+msgstr "indigo"
#. r5S8P
#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
-msgstr ""
+msgstr "pink"
#. NNmRT
#: starmath/inc/strings.hrc:363
@@ -2403,13 +2403,13 @@ msgstr "rgb"
#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "hex"
#. CCpNs
#: starmath/inc/strings.hrc:366
@@ -2547,7 +2547,7 @@ msgstr "Doppelte Tief-/Hochstellung ist nicht erlaubt"
#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Zahl erwartet"
#. ZWBDD
#: starmath/inc/strings.hrc:389
diff --git a/source/de/svx/messages.po b/source/de/svx/messages.po
index 572a151c3af..9b84f664b9d 100644
--- a/source/de/svx/messages.po
+++ b/source/de/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-04 20:46+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/de/>\n"
"Language: de\n"
@@ -2975,7 +2975,7 @@ msgstr "Transparenz des Leuchteffekts"
#: include/svx/strings.hrc:520
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
-msgstr "Radius für weiche Kanten"
+msgstr "Radius für Rand weichzeichnen"
#. nVcjU
#: include/svx/strings.hrc:521
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Folie auf Fenstergröße anpassen."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Kann nicht alle SmartArts laden. Das Speichern in Microsoft Office 2010 oder später würde dieses Problem vermeiden."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Es konnten nicht alle SmartArt-Objekte geladen werden. Durch Speichern in Microsoft Office 2010 oder höher wird dieses Problem vermieden."
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Symbolleiste Navigation"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Der Absturzbericht wurde erfolgreich hochgeladen.\n"
-"Sie können bald den Bericht finden unter:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Fehlerbericht _senden"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Nicht senden"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -16336,7 +16333,7 @@ msgstr "Pl_atzhalter"
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
msgid "Comme_nts"
-msgstr ""
+msgstr "Kommentare"
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
@@ -19006,7 +19003,7 @@ msgstr "Radius"
#: svx/uiconfig/ui/sidebareffect.ui:210
msgctxt "sidebarsoftedge|softedge"
msgid "Soft Edge"
-msgstr "Weiche Ecken"
+msgstr "Rand weichzeichnen"
#. BEqw7
#: svx/uiconfig/ui/sidebarempty.ui:26
diff --git a/source/de/sw/messages.po b/source/de/sw/messages.po
index 1f62f364cfc..68364d89150 100644
--- a/source/de/sw/messages.po
+++ b/source/de/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-04 20:46+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/de/>\n"
"Language: de\n"
@@ -98,13 +98,13 @@ msgstr "Tabellen sollten keine Überschriften enthalten."
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Hält die Ebenen der Überschriften geordnet. Überschriftebene %LEVEL_CURRENT% darf nicht nach %LEVEL_PREV% stehen."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr "Vermeiden Sie Fontwork-Objekte in Ihren Dokumenten. Stellen Sie sicher, dass Sie es für Beispiele oder anderen bedeutungslosen Text verwenden."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Nummerierte Absätze"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Direkte Zeichenformatierung"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Direkte Absatzformatierung"
#. YUbUQ
#. Format names
@@ -5750,19 +5750,19 @@ msgstr "Ohne"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Klicken Sie, um die Sichtbarkeit von Inhalten umzuschalten"
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "Rechtsklicken Sie, um Unterebenen einzuschließen"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Klicken Sie, um die Sichtbarkeit von Inhalten umzuschalten"
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -17442,7 +17442,7 @@ msgstr "Geben Sie die gewünschte Anzahl an Zeilen für die Tabelle ein."
#: sw/uiconfig/swriter/ui/inserttable.ui:245
msgctxt "inserttable|lbwarning"
msgid "Warning : Large tables may adversely affect performance and compatibility"
-msgstr ""
+msgstr "Warnung: Große Tabellen können die Leistung und Kompatibilität beeinträchtigen"
#. M2tGB
#: sw/uiconfig/swriter/ui/inserttable.ui:261
@@ -20361,181 +20361,181 @@ msgid "~File"
msgstr "~Datei"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Einfügen"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Einfügen"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Verweise"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "~Bezüge"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Änderungen"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Über~prüfen"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ansicht"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ansicht"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabelle"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabelle"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Bild"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zeichnen"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zeichnen"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medien"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medien"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Drucken"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Drucken"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formular"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "E~xtras"
@@ -21573,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Kontur bearbeiten"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtension"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
@@ -23689,7 +23683,7 @@ msgstr "Gleicher Inhalt:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Ränder:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23779,7 +23773,7 @@ msgstr "Gleicher Inhalt:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Ränder:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
diff --git a/source/de/wizards/source/resources.po b/source/de/wizards/source/resources.po
index b503d592c0c..11f29037ace 100644
--- a/source/de/wizards/source/resources.po
+++ b/source/de/wizards/source/resources.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-16 06:35+0000\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1557207175.000000\n"
#. 8UKfi
@@ -2516,7 +2516,7 @@ msgctxt ""
"RID_FORM_51\n"
"property.text"
msgid "How do you want to proceed after creating the form?"
-msgstr "Wie möchten Sie nach der Erstellung des Berichtes fortfahren?"
+msgstr "Wie möchten Sie nach der Erstellung des Formulars fortfahren?"
#. G7CYq
#: resources_en_US.properties
diff --git a/source/dgo/cui/messages.po b/source/dgo/cui/messages.po
index 2f0dd2e64a6..6c1861a882a 100644
--- a/source/dgo/cui/messages.po
+++ b/source/dgo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21594,60 +21594,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
index f86f5b8c9a0..f0c09e2dc83 100644
--- a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8164,15 +8164,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~ स्लाइड छपैलो "
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "इबारत...\t\t"
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25870,27 +25870,25 @@ msgctxt ""
msgid "~File"
msgstr "~फाइल "
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr " सेधीकरण करो\t"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr " सेधीकरण करो\t"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31591,15 +31589,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "पैह्‌रा शुरुआत चुनो "
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "सज्जै शब्द चुनो "
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/dgo/sc/messages.po b/source/dgo/sc/messages.po
index 30a052b05ff..5d2c418acd9 100644
--- a/source/dgo/sc/messages.po
+++ b/source/dgo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25275,213 +25275,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30536,351 +30536,357 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "आप्शन..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "~घट्टोघट्ट"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "~बद्धोबद्ध"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
#, fuzzy
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "आप्रेटर"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "मुल्ल(बहु.)"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "पूर्णांक "
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "बाइनरी"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "आप्रेटर"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "पूर्णांक "
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "बाइनरी"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "आप्रेटर"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "पूर्णांक "
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "बाइनरी"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "आप्रेटर"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "पूर्णांक "
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "बाइनरी"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "आप्रेटर"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "मुल्ल(बहु.)"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "मुल्ल(बहु.)"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "मुल्ल(बहु.)"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "मुल्ल(बहु.)"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "हटाओ"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "हटाओ"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "हटाओ"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "हटाओ"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/dgo/sd/messages.po b/source/dgo/sd/messages.po
index c04b1d45506..35469714340 100644
--- a/source/dgo/sd/messages.po
+++ b/source/dgo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3909,116 +3909,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4422,12 +4422,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6760,219 +6754,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7941,12 +7935,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "इबारत आकृति"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/dgo/starmath/messages.po b/source/dgo/starmath/messages.po
index 2140e3ef6c8..69d4a838496 100644
--- a/source/dgo/starmath/messages.po
+++ b/source/dgo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 13:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:38+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2211,9 +2211,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/dgo/svx/messages.po b/source/dgo/svx/messages.po
index 14aadad47aa..55780a164dd 100644
--- a/source/dgo/svx/messages.po
+++ b/source/dgo/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: dgo (generated) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/dgo/>\n"
@@ -7368,10 +7368,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14263,13 +14263,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "संचालन पट्टी "
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14293,10 +14293,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/dgo/sw/messages.po b/source/dgo/sw/messages.po
index c20222b19d0..0e7f5dfdbc3 100644
--- a/source/dgo/sw/messages.po
+++ b/source/dgo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -99,10 +99,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -21056,181 +21056,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22289,12 +22289,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "इबारत आकृति"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/dsb/cui/messages.po b/source/dsb/cui/messages.po
index 7c09f746b69..3599db34cfc 100644
--- a/source/dsb/cui/messages.po
+++ b/source/dsb/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: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-03 11:16+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/dsb/>\n"
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 907a3dd071e..f27f9595c25 100644
--- a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/dsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565003328.000000\n"
#. W5ukN
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Foliju s~chowaś"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~kst..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Dataja"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Wus~měriś"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Wus~měriś"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Až ku kóńcoju wótstawka wubraś"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Až ku kóńcoju słowa wubraś"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/dsb/sc/messages.po b/source/dsb/sc/messages.po
index 567b9639d42..4c768cab5a3 100644
--- a/source/dsb/sc/messages.po
+++ b/source/dsb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-24 04:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/dsb/>\n"
@@ -24599,213 +24599,213 @@ msgid "~File"
msgstr "~Dataja"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Pódajśo ramiki wubranych celow."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Zasunjenje pówětšyś"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Zasunjenje pómjeńšyś"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Pó_lo"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasajźiś"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasajźiś"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektowe wusměrjenje"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Wu_gótowanje"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "W~ugótowanje"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistika"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Daty"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Daty"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Pśeglědanje"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Pśeglědanje"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Naglěd"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Naglěd"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresliś"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresliś"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertěrowaś"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ś_išćaś"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ś~išćaś"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Ro_zšěrjenje"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšyrjenje"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Rědy"
@@ -29634,338 +29634,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solwer"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Na_stajenja..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Rozwězaś"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Celowa cela"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Wuslědk optiměrowaś do"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Pśez změnjanje celow"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Gódnota"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Celowy póśěg"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Gó_dnota"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Celowy póśěg"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Celowy póśěg"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Celowy póśěg"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Celowy póśěg"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Ceła licba"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binarny"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Ceła licba"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binarny"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Ceła licba"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binarny"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Ceła licba"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binarny"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Gódnota"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Gódnota"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Gódnota"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Gódnota"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Wótwónoźeś"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Wótwónoźeś"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Wótwónoźeś"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Wótwónoźeś"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Pódlańske wuměnjenja"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/dsb/sd/messages.po b/source/dsb/sd/messages.po
index 3b300857f1b..619b4f4f36b 100644
--- a/source/dsb/sd/messages.po
+++ b/source/dsb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-15 23:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/dsb/>\n"
@@ -3821,116 +3821,116 @@ msgstr "~Tabela"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertěrowaś"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresliś"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresliś"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Globalny dokument"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Pśedłoga"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ro_zšyrjenje"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšyrjenje"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Rědy"
@@ -4334,12 +4334,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Meni"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ro_zšyrjenje"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6571,219 +6565,219 @@ msgid "~File"
msgstr "~Dataja"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Pó_lo"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasajźiś"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasajźiś"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "W_ugótowanje"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "W~ugótowanje"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Prezentacija"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Prezentacija"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Pśeglědanje"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Pśeglědanje"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Naglěd"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Naglěd"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertěrowaś"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresliś"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresliś"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Globalny dokument"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Pśedłoga"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Naglěd"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Rozrědowanje "
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ro_zšyrjenje"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšyrjenje"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Rědy"
@@ -7693,12 +7687,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Konturu wobźěłaś"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ro_zšyrjenje"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/dsb/sfx2/messages.po b/source/dsb/sfx2/messages.po
index afa783a1e96..941f9e298fe 100644
--- a/source/dsb/sfx2/messages.po
+++ b/source/dsb/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-29 14:35+0000\n"
+"PO-Revision-Date: 2020-11-25 12:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/dsb/>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559597232.000000\n"
#. bHbFE
@@ -4133,37 +4133,37 @@ msgstr "Wulašowaś..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Pśidokowaś"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Wótdokowaś"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Bocnicu zacyniś"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Pśiměrjenje"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Standard wótnowiś"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Nastajenja bocnice"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/dsb/starmath/messages.po b/source/dsb/starmath/messages.po
index 199cba5add3..7d478c1f824 100644
--- a/source/dsb/starmath/messages.po
+++ b/source/dsb/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-17 20:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-26 16:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/dsb/>\n"
"Language: dsb\n"
@@ -1485,67 +1485,67 @@ msgstr "Barwa, heksadecimalna"
#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
-msgstr ""
+msgstr "Koralowa barwa"
#. gPCCe
#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
-msgstr ""
+msgstr "Karmezinowa barwa"
#. oDRbR
#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
-msgstr ""
+msgstr "Połnocnomódra barwa"
#. 4aCMu
#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
-msgstr ""
+msgstr "wioletna barwa"
#. Qivdb
#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
-msgstr ""
+msgstr "oranžowa barwa"
#. CVygm
#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
-msgstr ""
+msgstr "oranžocerwjena barwa"
#. LbfRK
#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
-msgstr ""
+msgstr "mórjozelena barwa"
#. DKivY
#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
-msgstr ""
+msgstr "indigo"
#. TZQzN
#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
-msgstr ""
+msgstr "Pink"
#. GHgTB
#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
-msgstr ""
+msgstr "Lawendlowa barwa"
#. HQmw7
#: starmath/inc/strings.hrc:219
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
-msgstr ""
+msgstr "Sněgowa barwa"
#. A2GQ4
#: starmath/inc/strings.hrc:220
@@ -2189,11 +2189,11 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Fundamentalna sada analysisa"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
-msgstr "Chaosowa rownica"
+msgstr ""
#. afEQ8
#: starmath/inc/strings.hrc:329
@@ -2331,67 +2331,67 @@ msgstr "žołty"
#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
-msgstr ""
+msgstr "koralowy"
#. RZSh6
#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
-msgstr ""
+msgstr "karmezinowy"
#. QGibF
#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
-msgstr ""
+msgstr "połnocnomódry"
#. NKAkW
#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
-msgstr ""
+msgstr "wioletny"
#. sF9zc
#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
-msgstr ""
+msgstr "oranžowy"
#. CXMyK
#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
-msgstr ""
+msgstr "oranžocerwjeny"
#. Ak3yd
#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
-msgstr ""
+msgstr "lawendlowy"
#. DLUaV
#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
-msgstr ""
+msgstr "sněgowy"
#. QDTEU
#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
-msgstr ""
+msgstr "mórjozeleny"
#. PNveS
#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
-msgstr ""
+msgstr "indigo"
#. r5S8P
#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
-msgstr ""
+msgstr "pink"
#. NNmRT
#: starmath/inc/strings.hrc:363
diff --git a/source/dsb/svx/messages.po b/source/dsb/svx/messages.po
index fde98e18219..3bb9fdbba14 100644
--- a/source/dsb/svx/messages.po
+++ b/source/dsb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-09 12:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/dsb/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Foliju aktualnemu woknoju pśiměriś."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Nic wšykne SmartArts daju se zacytaś. Składowanje w Microsoft Office 2010 abo w nowšem by se wobinuło toś togo problema."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Nawigaciska rědka"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Rozpšawa wowalenja jo se wuspěšnje nagrała.\n"
-"Móžośo rozpšawu skóro namakaś na:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Rozpšawu wowalenja pósłaś"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Nje_słaś"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/dsb/sw/messages.po b/source/dsb/sw/messages.po
index 39d833f0ccf..f66da7da480 100644
--- a/source/dsb/sw/messages.po
+++ b/source/dsb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-08-20 21:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/dsb/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20375,181 +20375,181 @@ msgid "~File"
msgstr "~Dataja"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasajźiś"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasajźiś"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "W_ugótowanje"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "W~ugótowanje"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referen_ce"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referen~ce"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Pśeglědanje"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Pśeglědanje"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Naglěd"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Naglěd"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresliś"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresliś"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ś_išćaś"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ś~išćaś"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ro_zšyrjenje"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšyrjenje"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Rědy"
@@ -21587,12 +21587,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Konturu wobźěłaś"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ro_zšyrjenje"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/dz/cui/messages.po b/source/dz/cui/messages.po
index 148ffff778c..1364ad02081 100644
--- a/source/dz/cui/messages.po
+++ b/source/dz/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21540,60 +21540,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/dz/helpcontent2/source/text/sbasic/shared.po b/source/dz/helpcontent2/source/text/sbasic/shared.po
index c0cab770d63..28ec97e1a4e 100644
--- a/source/dz/helpcontent2/source/text/sbasic/shared.po
+++ b/source/dz/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "གནད་སྡུད་འབྲིང་མ་གུ་སྣོད་ཐོ་གསརཔ་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
+msgid "Creates a new directory on a data medium."
+msgstr "གནད་སྡུད་འབྲིང་མ་གུ་སྣོད་ཐོ་གསརཔ་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།"
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "ཨེམ་ཀེ་ཌིར་ཚིག་ཡིག་ ཡིག་རྒྱུན་བཟུམ།"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>ཚིག་ཡིག་:</emph> ཡིག་རྒྱུན་གསལ་བརྗོད་གང་རུང་འདི་མིང་དང་གསར་བསྐྲུན་འབད་ནི་ཨིན་མི་སྣོད་ཐོའི་འགྲུལ་ལམ་འདི་གསལ་བཀོད་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ཡང་ <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">ཡི་ཨར་ཨེལ་དབྱངས་རྟགས་ལག་ལེན་འཐབ་བཏུབ་ཨིན།</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "འགྲུལ་ལམ་འདི་གཏན་འབེབས་བཟོ་འདི་མེད་པ་ཅིན་ སྣོད་ཐོ་འདི་ད་ལྟོའི་སྣོད་ཐོ་ནང་གསར་བསྐྲུན་འབདཝ་ཨིན།"
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "གནད་སྡུད་བརྡ་ལམ་ནང་ལས་སྣོད་ཐོ་ཡོད་མི་བཏོན་གཏངམ་ཨིན།"
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "ཨར་ཨེམ་ཌར་ ཚིག་ཡིག་་ ཡིག་རྒྱུན་བཟུམ་སྦེ།"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "འགྲུལ་ལམ་དེ་གཏན་འབེབས་མ་བཟོ་བ་ཅིན་ <emph>ཨར་ཨེམ་ཌར་་གསལ་བཤད་ཀྱིས་</emph> ཁྱོད་ཀྱིས་ད་ལྟོའི་འགྲུལ་ལམ་ནང་བཏོན་གཏང་ནིའི་སྣོད་ཐོ་དེ་འཚོལ་ཞིབ་འབདཝ་ཨིན། དེ་ནང་འཚོལ་མ་ཐོབ་པ་ཅིན་འཕྲིན་དོན་འཛོལ་བ་ཅིག་འབྱུངམ་ཨིན།"
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "གཞི་རིམ་ལས་རིམ་གྱི་ལག་ལེན་པ་དེ་བཀག་དམ་འབདཝ་ཨིན།"
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "དངོས་པོ་ཅིག་སྔོན་སྒྲིག་དངོས་པོ་སྦེ་གཞི་སྒྲིག་འབདཝ་ཨིན། གཞན་དངོས་པོ་མིང་གསལ་བསྒྲགས་མ་འབད་ཚུན་ཚོད་ རྒྱུ་དངོས་ཚུ་དང་ཐབས་ལམ་ཚུ་ སྔོན་སྒྲིག་དངོས་པོ་ལུ་ མཇུག་བསྡུ་གཅིག་ཁར་གསལ་བཤད་དེ་མ་ལྷོད་ཚུན་ཚོད་འབྲེལ་བ་འཐབ་ཨིན།"
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "གཅིག་ཁར་ <emph>དང་</emph> མཇུག་བསྡུ་གཅིག་ཁར་<emph>ཁྱོད་ལུ་རྒྱུ་དངོས་ཚུ་ལེ་ཤ་ཡང་ན་</emph> དངོས་པོ་རྐྱང་པ་དོན་ལུ་ཐབས་ལམ་ཡོད་པ་ཅིན་ལག་ལེན་འཐབ།"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "གློག་རིག་གི་སྒྲ་སྤར་དེ་ལས་བརྒྱུད་དེ་སྒྲད་སྐད་སྙན་ཆ་ཅིག་གཏངམ་ཨིན། སྒྲ་སྐད་སྙན་ཆ་དེ་རིམ་ལུགས་རྟེན་དགོཔ་ལས་ ཁྱོད་ཀྱིས་དེའི་སྐད་ཤུགས་ཡང་ན་སྟུག་ཚད་ལེགས་བཅོས་འབད་མི་བཏུབ།"
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/dz/helpcontent2/source/text/scalc/00.po b/source/dz/helpcontent2/source/text/scalc/00.po
index ac5c174fec5..b560f875e47 100644
--- a/source/dz/helpcontent2/source/text/scalc/00.po
+++ b/source/dz/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/dz/helpcontent2/source/text/scalc/guide.po b/source/dz/helpcontent2/source/text/scalc/guide.po
index 88cb319c9c4..fa038abdf6f 100644
--- a/source/dz/helpcontent2/source/text/scalc/guide.po
+++ b/source/dz/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "ཐད་སྙོམས་དང་ཀེར་ཐིག་གཉིས་ཀར་ཐོགས་དགོ་པ་ཅིན་ ཁྱོད་ཀྱིས་ཐོགས་འདོད་ཡོད་པའི་གྲལ་ཐིག་གི་འོག་དང་ཀེར་ཐིག་གི་གཡས་ཕྱོགས་ལུ་ཡོད་པའི་ <emph>ནང་ཐིག་</emph> འདི་སེལ་འཐུ་འབད།"
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "གྲལ་ཐིག་ལ་ལོ་ཅིག་ཡིག་ཆའི་ཤོག་ལེབ་ཆ་མཉམ་གུ་ དཔར་བསྐྲུན་འབད་དགོ་མནོ་བ་ཅིན་ <emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་གྱི་ཁྱབ་ཚད་ - ཞུན་དག་</emph> གདམ་ཁ་རྐྱབས།"
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/dz/helpcontent2/source/text/sdraw/01.po b/source/dz/helpcontent2/source/text/sdraw/01.po
index d06c6246ef9..4e36ad55d9c 100644
--- a/source/dz/helpcontent2/source/text/sdraw/01.po
+++ b/source/dz/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 19:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index 7dae11224fe..74dfec1cd31 100644
--- a/source/dz/helpcontent2/source/text/shared/01.po
+++ b/source/dz/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/dz/helpcontent2/source/text/shared/guide.po b/source/dz/helpcontent2/source/text/shared/guide.po
index d7b4dea82b7..3487da6df5f 100644
--- a/source/dz/helpcontent2/source/text/shared/guide.po
+++ b/source/dz/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">%PRODUCTNAME <item type=\"productname\">གཅིག་ཁར་ལཱ་འབད་དོ།</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "སྙན་ཞུ་ལག་ཆས་འཛོལ་བ།"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>འཛོལ་བ་སྙན་ཞུའི་ལག་ཆས་</bookmark_value><bookmark_value>སྙན་ཞུ་ཚུ་;འཛོལ་བ་སྙན་ཞུ་འབདཝ་ཨིན་</bookmark_value><bookmark_value>བརྡབ་འཁྲུག་སྙན་ཞུ་ཚུ་</bookmark_value><bookmark_value>ཤུགས་ལྡན་བཟོ་དོ་;འཛོལ་བ་སྙན་ཞུའི་ལག་ཆས་</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">སྙན་ཞུ་ལག་ཆས་འཛོལ་བ།</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "འཛོལ་བ་སྙན་ཞུའི་ལག་ཆས་འདི་གིས་ ཤུལ་མའི་ཐོན་རིམ་ཚུ་ནང་ འ་ནི་འཛོལ་བ་འདི་ཟུར་ནིའི་ཚུགས་ནིའི་དོན་ལས་ ཉེར་མཁོའི་བརྡ་དོན་ཆ་མཉམ་ ལས་རིམ་བཟོ་མི་ཚུ་ལུ་ ཨང་རྟགས་འདི་ལེགས་བཟོ་འབད་ནིའི་དོན་ལས་ བསྡུ་སྤུངས་འབདཝ་ཨིན། ང་བཅས་ལུ་ མཉེན་ཆས་འདི་ལེགས་བཟོ་འབད་ནི་ལུ་ གྲོགས་རམ་འབད་ཞིནམ་ལས་ བསྡུ་སྤུངས་འབད་ཡོད་པའི་ འཛོལ་བའི་སྙན་ཞུ་ཚུ་གཏང་།"
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "སྙན་ཞུ་ལག་ཆས་འཛོལ་བ་འགོ་བཙུགས་དོ།"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "སྙན་ཞུ་མཇུག་བསྡུ་དོ།"
-
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "འཛོལ་བ་སྙན་ཞུའི་ལག་ཆས་ཌའི་ལོག་གཙོ་བོ་གུ་ལུ་ ཁྱོད་ཀྱིས་ ཟབོ་མི་ཚུ་ལུ་ འཛོལ་བ་འདི་ཡུལ་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་མི་ ཁ་སྐོང་གི་བརྡ་དོན་དག་པ་ཅིག་ཐོ་བཀོད་འབད་ཚུགས། དཔེར་ན་ འཛོལ་བ་འདི་ ཁྱོད་ཀྱི་སྲ་ཆས་ཡང་ན་མཉེན་ཆས་ཀྱི་མཐའ་སྐོར་བསྒྱུར་བཅོས་ཀྱི་ཤུལ་མ་ རྐྱངམ་ཅིག་འབྱུངམ་ཨིན་པ་ཅིན་ ཡང་ན་ ཁྱོད་ཀྱིས་ཨེབ་རྟ་ཅིག་ཨེབ་གཏང་འབད་ཡོདཔ་ཨིན་པ་ཅིན་ འ་ནི་བརྡ་དོན་འདི་གྲངས་སུ་བཙུགས་གནང་།"
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "འཛོལ་བའི་སྙན་ཞུ་གཏང་དོ།"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "འཛོལ་བ་སྙན་ཞུའི་ལག་ཆས་ཕྲ་རིང་འདི་གིས་ ཨེཆ་ཊི་ཊི་པི་ པི་ཡུ་ཊི་ / ཨེསི་ཨོ་ཨེ་པི་ གནད་སྤེལ་ལམ་ལུགས་ འདི་ སྙན་ཞུའི་གནད་སྡུད་གཏང་ནིའི་དོན་ལས་ ལག་ལེན་འཐབ་ཨིན། ཁྱོད་ཀྱིས་གདམ་ཁའི་ཐོག་ འགྲེལ་བཤད་ཅན་གྱི་ཚིག་ཡིག་ ང་བཅས་ལུ་ལས་རིམ་བརྡབ་འཁྲུག་གི་སྐབས་དོན་འདི་ངེས་འཛིན་འབད་ནིའི་དོན་ལས་ གྲོགས་རམ་འབད་མི་ དག་པ་ཅིག་ཐོ་བཀོད་འབད་བཏུབ། དེ་ལས་ <emph>གཏང་</emph> ཨེབ་རྟ་ཨེབ་གཏང་།"
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "ཁྱོད་ཀྱིས་ཁྱོད་རའི་འཛོལ་བའི་སྙན་ཞུ་འདི་ལུ་ ལན་གསལ་ཅིག་མི་འཐོབ། ཁྱོད་ལུ་རྒྱབ་སྐྱོར་དགོ་པ་ཅིན་ <link href=\"text/shared/main0108.xhp\">རྒྱབ་སྐྱོར་གྲོས་གནས་</link> འདི་ ཨིན་ཊར་ནེཊི་གུ་ལུ་བལྟ་སྤྱོད་འབད་གནང་།"
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "གནད་སྡུད་ག་ཅི་འདི་གཏང་ཡི?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "འཛོལ་བ་སྙན་ཞུ་འདི་ནང་ ཡིག་སྣོད་ལེ་ཤ་ཅིག་ཡོདཔ་ཨིན། ཡིག་སྣོད་གཙོ་བོ་འདི་ནང་ འཛོལ་བའི་དབྱེ་བ་ བཀོལ་སྤྱོད་རིམ་ལུགས་ཀྱི་མིང་དང་ཐོན་རིམ་ དྲན་ཚད་ཀྱི་བེད་སྤྱོད་ དང་ ཁྱོད་ཀྱིས་ཐོ་བཀོད་འབད་མི་འགྲེལ་བཤད་ཀྱི་སྐོར་ལས་ བརྡ་དོན་ཚུ་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ <emph>སྙན་ཞུ་སྟོན་</emph> ཨེབ་རྟ་འདི་ འཛོལ་བ་སྙན་ཞུའི་ལག་ཆས་འདི་གི་ ཌའི་ལོག་གཙོ་བོ་འདི་གུ་ ཡིག་སྣོད་གཙོ་བོ་འདི་ནང་གཏང་ཡོད་མི་ ག་ཅི་འཐོབ་ནི་ཨིན་ན་ སྟོན་ནིའི་དོན་ལས་ ཨེབ་གཏང་བཏུབ།"
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "ཁ་སྐོང་ལུ་ འབྲེལ་བ་ཡོད་པའི་དྲན་ཚད་ཀྱི་ནང་དོན་དང་ བརྩེགས་བཤུལ་ཚུ་ རིམ་ལུགས་ཚད་ལྡན་ལག་ཆས་ (\"dbhhelp.dll\" སྒོ་སྒྲིག་རིམ་ལུགས་གུ་ལུ་ \"pstack\" ཡུ་ནིགསི་རིམ་ལུགས་གུ་ལུ་) གིས་བསྡུ་སྤུངས་འབད་ཡོདཔ་ཨིན། འ་ནི་བརྡ་དོན་འདི་ཡང་གཏང་འོང་།"
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "དཔར་འཕྲིན་རེ་རེའི་དོན་ལུ་དཔར་བསྐྲུན་ལས་གཡོག་སོ་སོ་གཅིག་གསར་བསྐྲུན་འབད་ནི་ལུ་སེམས་ཁར་བཞག་ དེ་མིན་པ་ཅིན་ ལེན་མཁན་དང་པ་འདི་གིས་དཔར་འཕྲིན་ཚུ་ཆ་མཉམ་ལེན་འོང་། <emph>ལག་ཆས་ཚུ་ - ཡིག་འཕྲིན་མཉམ་བསྡོམས་དའི་ལོག་ནང་</emph> དཔར་འཕྲུལ་གདམ་ཁ་སེལ་འཐུ་འབད་ཞིནམ་དང་ <emph>དེ་ལས་</emph> དཔར་བསྐྲུན་ལས་གཡོག་ཚུའི་དཔྱད་སྒྲོམ་ <emph>རྐྱང་པ་</emph> སེལ་འཐུ་འབད།"
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "སྔོན་སྒྲིག་ཊེམ་པེལེཊི་ཚུ་བསྒྱུར་བཅོས་འབད་དོ།"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>ལེགས་བཅོས་འབད་དོ་, བསྒྱུར་བཅོས་ལྟ་</bookmark_value><bookmark_value>སྔོན་སྒྲིག་ཊེམ་པེལེཏི་; བསྒྱུར་བཅོས་འབད་དོ་</bookmark_value><bookmark_value>བསྒྱུར་བཅོས་འབད་དོ་;སྔོན་སྒརགི་ཊེམ་པེལེཊི་</bookmark_value><bookmark_value>སྔོན་སྒྲིག་ཚུ་;ཡིག་ཆ་ཚུ་</bookmark_value><bookmark_value>སྲོལ་སྒྲིག་ཊེམ་པེལེཊི་ཚུ་</bookmark_value><bookmark_value>དུས་མཐུན་བཟོ་དོ་; ཊེམ་པེལེཊི་ཚུ་</bookmark_value><bookmark_value>ཞུན་དག་འབད་དོ་;ཊེམ་པེལེཊི་ཚུ་</bookmark_value><bookmark_value>ཊེམ་པེལེཊི་ཚུ་;ཞུན་དག་དང་སྲུང་བཞག་འབད་དོ་</bookmark_value><bookmark_value>སྲུང་བཞག་འབད་དོ་;ཊེམ་པེལེཊིསི་</bookmark_value><bookmark_value>ལོག་སྒྲིག་སྟངས་འབད་དོ;ཊེམ་པེལེཊི་</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">སྔོན་སྒྲིག་ཊེམ་པེལེཊི་ཚུ་བསྒྱུར་བཅོས་འབད་དོ།</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "ཁྱོད་ཀྱིས་ཡིག་ཆ་གསརཔ་འདི་ <emph>ཡིག་སྣོད་ - གསརཔ་གཅིག་ཁར་ཁ་ཕྱེཝ་ད་</emph> $[officename] ཊེམ་པེལེཊི་གུ་བརྟེན་པའི་ཡིག་ཆ་སྟོངམ་འབྱུངམ་ཨིན། ཁྱོད་ཀྱིས་ཞུན་དག་དང་ལེགས་བཅོས་ཡང་ན་འ་ནི་ཊེམ་པེལེཊི་ཚབ་བཙུགས་ཚུགས་དེ་འབདཝ་ལས་ཡིག་ཆ་གསརཔ་འདི་ལུ་ཁྱོད་ཀྱི་སྲོལ་སྒྲིག་འབད་ཡོད་པའི་བཟོ་རྣམ་ཚུ་ཡང་ན་གཞན་མི་ནང་དོན་ཚུ་ནང་ན་ཡོདཔ་ཨིན།"
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "སྔོན་སྒྲིག་ཊེམ་པེལེཊི་ཚུ་ལེགས་བཅོས་འབད་དོ།"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "དང་པ་རང་ ཡོད་བཞིན་པའི་$[officename] ཊེམ་པེལེཊི་ཁ་ཕྱེ་ཞིནམ་དང་ལེགས་བཅོས་འབད་ ཡང་ན་ཡིག་ཆ་གསརཔ་ཁ་ཕྱེ་ཞིནམ་དང་འ་ནི་དེ་རེ་འདུན་ཊེམ་པེལེཊི་གསར་བསྐྲུན་འབད་ནི་ལུ་ཉེར་མཁོ་སྦེ་ཞུན་དག་རྐྱབས།"
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
+
+#. bnC8i
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3145748\n"
+"help.text"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. 2pSHL
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3146901\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "ཁྱོད་ཀྱིས་$[officename] ཚད་གཞི་རེ་རེའི་དོན་ལུ་ཡིག་ཆ་ཊེམ་པེལེཊི་ངེས་འཛིན་འབད་ཚུགས། འོག་གི་འདི་གིས་ཚིག་ཡིག་ཡིག་ཆ་ཚུའི་དོན་ལུ་ག་དེ་སྦེ་འཕྲོ་མཐུད་ནི་ཨིན་ན་འགྲེལ་བཤད་རྐྱབ་ཨིན།"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
-#. dAATP
+#. MEA5R
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
msgstr ""
-#. GuEWL
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "སྲོལ་སྒྲིག་ཊེམ་པེལེཊི་ཚུ་ལག་ལེན་འཐབ་དོ།"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. Quf5G
+#. DuAAp
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id251605475503009\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "ཁྱོད་ཀྱི་སྲོལ་སྒྲིག་ཊེམ་པེལེཊི་ཚུ་ལག་ལེན་འཐབ་ཐོག་ལས་ཁྱོད་ཀྱི་ལཱ་འཇམ་ཏོང་ཏོ་བཟོ་ནི་ལུ་ཐབས་ལམ་ལེ་ཤ་ཅིག་ཡོད།"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. S8XFP
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "ཊེམ་པེལེཊི་སྣོད་འཛིན་ནང་ཊེམ་པེལེཊི་ཚུ།"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/dz/helpcontent2/source/text/shared/optionen.po b/source/dz/helpcontent2/source/text/shared/optionen.po
index f56b0e3ba52..5ba9289a856 100644
--- a/source/dz/helpcontent2/source/text/shared/optionen.po
+++ b/source/dz/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr ""
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "གསལ་གཞིའི་ཡིག་གཟུགས་ཨེན་ཏི་ཨེ་ལའིསིང་།"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">ཨེན་ཊི་ཨེ་ལའིསིང་འཇུག་སྤྱོད་འབད་ནི་ལུ་ཡིག་གཟུགས་ཀྱི་ཚད་ཆུང་ཤོས་འདི་བཙུགས།</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "ཚད་རིས་ཚུའི་ཨའུཊི་པུཊི།"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">ད་ལྟོའི་ཡིག་ཆ་གི་མཐོང་སྣང་ཡང་སེལ་འབད་ནི་ ཡང་ན་ གསོག་འཇོག་འབད་ནི་ལུ་སོར་ལྡེ་+ཚད་འཛིན་+ཨར་ཨེབ།</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">ད་ལྟོའི་ཡིག་ཆ་གི་མཐོང་སྣང་ཡང་སེལ་འབད་ནི་ ཡང་ན་ གསོག་འཇོག་འབད་ནི་ལུ་སོར་ལྡེ་+ཚད་འཛིན་+ཨར་ཨེབ།</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "དཀར་ཆག"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "གསལ་གཞིའི་ཡིག་གཟུགས་ཨེན་ཏི་ཨེ་ལའིསིང་།"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">ཨེན་ཊི་ཨེ་ལའིསིང་འཇུག་སྤྱོད་འབད་ནི་ལུ་ཡིག་གཟུགས་ཀྱི་ཚད་ཆུང་ཤོས་འདི་བཙུགས།</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/swriter/guide.po b/source/dz/helpcontent2/source/text/swriter/guide.po
index a5b6161e002..53433237795 100644
--- a/source/dz/helpcontent2/source/text/swriter/guide.po
+++ b/source/dz/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "ཁྱོད་རང་གིས་དམིགས་བསལ་མ་འབད་བར་དེ་མེན་པ་ཅིན་$[officename]ཚིག་ཡིག་ཡིག་ཆ་གསརཔ་ག་ར་སྔོན་སྒྲིག་ཊེམ་པེལེཊི་འདི་གུ་གཞི་བཞགཔ་ཨིན།"
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] ལུ་ <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">སྔ་གོང་ངེས་འཛིན་འབད་ཡོད་པའི་ཊེམ་པེལེཊིསི་</link> དཔེར་ན་ཚོང་འབྲེལ་ཡིག་གུ་ཚུ་བཟུམ་ ཁྱོད་ཀྱིས་དབྱེ་སོ་སོ་ཡང་ན་ཚིག་ཡིག་གི་ཡིག་ཆ་ གསར་བསྐྲུན་འབད་ནིའི་དོན་ལས་ལག་ལེན་འཐབ་བཏུབ་མི་ཚུ་ཡོད།"
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "<emph>ལག་ཆས་ཚུའི་</emph> ཕྲ་རིང་གུ་ལུ་ <emph>ཐད་ཀར་འོད་རྟགས་</emph> ངོས་དཔར་ <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149846\">ངོས་དཔར་</alt></image>འདི་ཨེབ་གཏང་།"
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "ཚིག་ཡིག་གི་ཡིག་ཆ་འདི་ནང་གི་ རང་དབང་བར་སྟོང་ཅིག་ནང་ཨེབ་གཏང་། མའུསི་དཔག་བྱེད་འདི་ ཁྱོད་ཀྱིས་ཡིག་དཔར་རྐྱབས་མི་ཚིག་ཡིག་འདི་ལུ་འཇུག་སྤྱོད་འབད་ནི་ཨིན་མི་ ཕྲང་སྒྲིག་འདི་ལུ་བསམ་ཞིབ་འབད་ནིའི་དོན་ལས་བསྒྱུར་བཅོས་འབདཝ་ཨིན།"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"3.7mm\" height=\"8.2mm\"><alt id=\"alt_id5471987\">ངོས་དཔར་</alt></image> གཡོན་ཕྲང་སྒྲིག"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"6.09mm\" height=\"8.2mm\"><alt id=\"alt_id5730253\">ངོས་དཔར་</alt></image> དབུས་སྒྲིག"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"3.97mm\" height=\"8.2mm\"><alt id=\"alt_id6953622\">ངོས་དཔར་</alt></image> གཡས་ཕྲང་སྒྲིག"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
index dd59aaea95d..b9b0fa57c11 100644
--- a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8139,15 +8139,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "བཤུད་བརྙན་སྦ་(_H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "ཚིག་ཡིག(~x)"
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25825,27 +25825,25 @@ msgctxt ""
msgid "~File"
msgstr "ཡིག་སྣོད།(~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ཕྲང་།"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ཕྲང་།"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31538,15 +31536,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "དོན་མཚམས་མཇུག་ལུ་ སེལ་འཐུ་འབད།"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "མིང་ཚིག་བདེན་མི་ལུ་ སེལ་འཐུ་འབད།"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/dz/readlicense_oo/docs.po b/source/dz/readlicense_oo/docs.po
index ac89468ac5d..55f3e37d63b 100644
--- a/source/dz/readlicense_oo/docs.po
+++ b/source/dz/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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2018-11-12 11:43+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"Language-Team: Dzongkha <https://weblate.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/dz/>\n"
"Language: dz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1542022998.000000\n"
#. q6Gg3
@@ -618,7 +618,7 @@ msgctxt ""
"naso6\n"
"readmeitem.text"
msgid "To enable touchpad scrolling, add the following lines to the \"<tt>C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini</tt>\" configuration file, and restart your computer:"
-msgstr "ཊའཅི་པེཌི་བཤུད་སྒྲིལ་འབད་ནི་ལྕོགས་ཅན་བཟོ་ནིའི་དོན་ལས་ འོག་གི་གྲལ་ཐིག་ཚུ་\"C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini\" རིམ་སྒྲིག་ཡིག་སྣོད་ནང་ལུ་ཁ་སྐོང་རྐྱབས་ དེ་ལས་ཁྱོད་རའི་གློག་རིག་ལོག་འགོ་བཙུགས:"
+msgstr "ཊའཅི་པེཌི་བཤུད་སྒྲིལ་འབད་ནི་ལྕོགས་ཅན་བཟོ་ནིའི་དོན་ལས་ འོག་གི་གྲལ་ཐིག་ཚུ་\"<tt>C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini</tt>\" རིམ་སྒྲིག་ཡིག་སྣོད་ནང་ལུ་ཁ་སྐོང་རྐྱབས་ དེ་ལས་ཁྱོད་རའི་གློག་རིག་ལོག་འགོ་བཙུགས:"
#. BdEXg
#: readme.xrm
@@ -645,7 +645,7 @@ msgctxt ""
"sdcc32asrc\n"
"readmeitem.text"
msgid "The Mozilla address book driver requires the <tt>SUNWzlib</tt> package. This package is not part of the minimum Solaris operating system installation. If you require access to the Mozilla address book, then add this package to your Solaris operating system using the command \"<tt>pkgadd</tt>\" from the installation CD."
-msgstr "མོ་ཛིལ་ལ་ཁ་བྱང་ཀི་དེབ་འདྲེན་བྱེད་དེ་ལུ་ སཱན་ཝིཛ་ལིབ་ཐུམ་སྒྲིལ་ དགོས་མཁོ་ཡོདཔ་ཨིན། འ་ནི་ཐུམ་སྒྲིལ་འདི་ཉུང་མཐའ་ཉི་དྲོད་བཀོལ་སྤྱོད་རིམ་ལུགས་གཞི་བཙུགས་འབད་ནིའི་ཡན་ལག་མེན། ཁྱོད་ལུ་མོ་ཛིལ་ལ་ཁ་བྱང་ཀི་དེབ་ཀྱི་དོན་ལས་འཛུལ་སྤྱོད་དགོཔ་ཨིན་པ་ཅིན་ གཞི་བཙུགས་འབད་ནིའི་སི་ཌི་ལས་བརྡ་བཀོད་ \"pkgadd\" དེ་ལག་ལེན་འཐབ་ཐོག་ འ་ནི་ཐུམ་སྒྲིལ་འདི་ཁྱོད་རའི་ཉི་དྲོད་བཀོལ་སྤྱོད་རིམ་ལུགས་ནང་ལུ་ཁ་སྐོང་རྐྱབས།"
+msgstr "མོ་ཛིལ་ལ་ཁ་བྱང་ཀི་དེབ་འདྲེན་བྱེད་དེ་ལུ་ སཱན་ཝིཛ་ལིབ་ཐུམ་སྒྲིལ་ དགོས་མཁོ་ཡོདཔ་ཨིན། འ་ནི་ཐུམ་སྒྲིལ་འདི་ཉུང་མཐའ་ཉི་དྲོད་བཀོལ་སྤྱོད་རིམ་ལུགས་གཞི་བཙུགས་འབད་ནིའི་ཡན་ལག་མེན། ཁྱོད་ལུ་མོ་ཛིལ་ལ་ཁ་བྱང་ཀི་དེབ་ཀྱི་དོན་ལས་འཛུལ་སྤྱོད་དགོཔ་ཨིན་པ་ཅིན་ གཞི་བཙུགས་འབད་ནིའི་སི་ཌི་ལས་བརྡ་བཀོད་ \"<tt>pkgadd</tt>\" དེ་ལག་ལེན་འཐབ་ཐོག་ འ་ནི་ཐུམ་སྒྲིལ་འདི་ཁྱོད་རའི་ཉི་དྲོད་བཀོལ་སྤྱོད་རིམ་ལུགས་ནང་ལུ་ཁ་སྐོང་རྐྱབས།"
#. YFEgC
#: readme.xrm
diff --git a/source/dz/sc/messages.po b/source/dz/sc/messages.po
index 74a76a148ea..daabf5f90fc 100644
--- a/source/dz/sc/messages.po
+++ b/source/dz/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25342,213 +25342,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30564,354 +30564,360 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "གདམ་ཁ།(~O)"
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "ཉུང་མཐའ།(_M)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "མང་མཐའ།(_M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "གནས་གོང་ཚུ།"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "བཀོལ་སྤྱོདཔ་ཚུ།(~p)"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "བཀོལ་སྤྱོདཔ་ཚུ།(~p)"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "བཀོལ་སྤྱོདཔ་ཚུ།(~p)"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "བཀོལ་སྤྱོདཔ་ཚུ།(~p)"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "གནས་གོང་ཚུ།"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "གནས་གོང་ཚུ།"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "གནས་གོང་ཚུ།"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "གནས་གོང་ཚུ།"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "རྩ་བསྐྲད་གཏང་།"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "རྩ་བསྐྲད་གཏང་།"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "རྩ་བསྐྲད་གཏང་།"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "རྩ་བསྐྲད་གཏང་།"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/dz/sd/messages.po b/source/dz/sd/messages.po
index 30e3418c780..f42be1c340a 100644
--- a/source/dz/sd/messages.po
+++ b/source/dz/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3911,116 +3911,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4424,12 +4424,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6761,219 +6755,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7938,12 +7932,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ཚིག་ཡིག་ཀྱི་བུར་གཞོང་།"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/dz/starmath/messages.po b/source/dz/starmath/messages.po
index cabecef3d07..b8490bb255c 100644
--- a/source/dz/starmath/messages.po
+++ b/source/dz/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2211,9 +2211,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/dz/svx/messages.po b/source/dz/svx/messages.po
index 933be8c3b7d..1d45c4e7d23 100644
--- a/source/dz/svx/messages.po
+++ b/source/dz/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Dzongkha <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/dz/>\n"
@@ -7345,10 +7345,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14218,13 +14218,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "འགྲུལ་བསྐྱོད་ཕྲ་རིང་།"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14248,10 +14248,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/dz/sw/messages.po b/source/dz/sw/messages.po
index 89079fae569..af0a4380076 100644
--- a/source/dz/sw/messages.po
+++ b/source/dz/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -21134,181 +21134,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22367,12 +22367,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ཚིག་ཡིག་ཀྱི་བུར་གཞོང་།"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/el/cui/messages.po b/source/el/cui/messages.po
index b943bddca68..4d5bd9e8edb 100644
--- a/source/el/cui/messages.po
+++ b/source/el/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-10-29 14:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/el/>\n"
"Language: el\n"
@@ -3401,7 +3401,7 @@ msgstr "Αδυνατείτε να τροποποιήσετε ή να διαγρ
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Χρειάζεστε να συμπληρώσετε μια σειρά; Επιλέξτε την περιοχή κελιών και Φύλλο ▸ Συμπλήρωση κελιών ▸ Συμπλήρωση σειρά και επιλέξτε γραμμική, αύξηση, ημερομηνία και αυτόματη συμπλήρωση."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Ανάπτυξη νέων φίλτρων XSLT και XML;"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Πατήστε Shift+F1 για να δείτε οποιεσδήποτε συμβουλές οθόνης στα πλαίσια διαλόγων, όταν οι \"Εκτεταμένες συμβουλές\" δεν είναι ενεργοποιημένες στο Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME ▸ Γενικά."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -5630,7 +5630,7 @@ msgstr "Καθ_ορισμένο από τον χρήστη:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Πατήστε άκρη ή γωνία για να κυκλική αλλαγή μεταξύ τριών καταστάσεων: ορισμένη, αμετάβλητη, καταργημένη."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5732,7 @@ msgstr "Α_πόσταση:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Πλάτος σκιάς"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
@@ -17064,20 +17064,20 @@ msgstr "Αριθμοί σελίδων:"
#: cui/uiconfig/ui/pageformatpage.ui:537
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
-msgstr ""
+msgstr "Χρήση του διάστιχου σελίδας"
#. DtZQG
#. xdds
#: cui/uiconfig/ui/pageformatpage.ui:541
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
-msgstr ""
+msgstr "Ενεργοποιεί το διάστιχο σελίδας (register-true) χρησιμοποιώντας την τεχνοτροπία αναφοράς"
#. p2egb
#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
-msgstr ""
+msgstr "Εάν ενεργοποιηθεί, τότε όλες οι τεχνοτροπίες παραγράφων με την επιλογή διάστιχο σελίδας ενεργό θα επηρεαστούν, αποδεχόμενοι το διάστιχο της τεχνοτροπίας αναφοράς. Αυτό θα τις στοιχίσει σε ένα αόρατο κάθετο πλέγμα σελίδας, ανεξάρτητα από το μέγεθος γραμματοσειράς τους, έτσι ώστε κάθε γραμμή να έχει το ίδιο ύψος."
#. 46djR
#: cui/uiconfig/ui/pageformatpage.ui:561
@@ -17323,7 +17323,7 @@ msgstr "Α_υτόματα"
#: cui/uiconfig/ui/paraindentspacing.ui:167
msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text"
msgid "Indent paragraph automatically according to font size and line spacing."
-msgstr ""
+msgstr "Αυτόματη εσοχή παραγράφου σύμφωνα με το μέγεθος της γραμματοσειράς και το διάστιχο."
#. L9iw7
#: cui/uiconfig/ui/paraindentspacing.ui:218
@@ -17353,7 +17353,7 @@ msgstr "Παρακάτω παράγρα_φος:"
#: cui/uiconfig/ui/paraindentspacing.ui:331
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Do not add space between paragraphs of the same style"
-msgstr ""
+msgstr "Μην προσθέτετε κανό μεταξύ παραγράφων της ίδιας τεχνοτροπίας"
#. hWQWQ
#: cui/uiconfig/ui/paraindentspacing.ui:353
@@ -17413,20 +17413,20 @@ msgstr "του"
#: cui/uiconfig/ui/paraindentspacing.ui:479
msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "Activate page li_ne-spacing"
-msgstr ""
+msgstr "Ενεργοποίηση του διάστιχου σελίδας"
#. uesRM
#. xdds
#: cui/uiconfig/ui/paraindentspacing.ui:482
msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text"
msgid "Applies page line-spacing (register-true) if set for the Page Style."
-msgstr ""
+msgstr "Εφαρμόζεται στο διάστιχο σελίδας (register-true) εάν οριστεί για την τεχνοτροπία σελίδας."
#. MwL9j
#: cui/uiconfig/ui/paraindentspacing.ui:488
msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER"
msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
-msgstr ""
+msgstr "Εάν το διάστιχο σελίδας είναι ενεργό και η τεχνοτροπία σελίδας χρησιμοποιεί διάκενο σελίδας, τότε αυτή η παράγραφος θα στιχιστεί σε ένα αόρατο κάθετο πλέγμα της σελίδας, ανεξάρτητα από το μέγεθος της γραμματοσειράς, έτσι ώστε κάθε γραμμή να έχει το ίδιο ύψος."
#. GxJB6
#: cui/uiconfig/ui/paraindentspacing.ui:506
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Επιλέξτε την αγαπημένη σας διεπαφή χρήστη"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Τυπική γραμμή εργαλείων"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Μονή γραμμή εργαλείων"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Πλευρική στήλη"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "Με καρτέλες"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "Συμπαγείς καρτέλες"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Συμπαγής ομαδοποιημένη γραμμή"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Ομαδοποιημένη γραμμή"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Συμπαγής ομαδοποιημένη γραμμή"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Μοναδική συμφραζομένων"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Ομάδες συμφραζομένων"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Μονή γραμμή εργαλείων"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Πλευρική στήλη"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/el/dictionaries/ko_KR.po b/source/el/dictionaries/ko_KR.po
index 21b95f5743b..30b5e91f9c5 100644
--- a/source/el/dictionaries/ko_KR.po
+++ b/source/el/dictionaries/ko_KR.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-11-26 16:36+0000\n"
+"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
+"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/dictionariesko_kr/el/>\n"
+"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
#. DbXEb
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Korean spellcheck dictionary"
-msgstr ""
+msgstr "Κορεάτικο ορθογραφικό λεξικό"
diff --git a/source/el/filter/messages.po b/source/el/filter/messages.po
index 4a8cd5cbe65..b6e611c30d4 100644
--- a/source/el/filter/messages.po
+++ b/source/el/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-10-17 08:35+0000\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562571243.000000\n"
#. 5AQgJ
@@ -381,7 +381,7 @@ msgstr "Επιλέγει συμπίεση εικόνων χωρίς απώλει
#: filter/uiconfig/ui/pdfgeneralpage.ui:241
msgctxt "pdfgeneralpage|reduceresolution"
msgid "Reduce ima_ge resolution"
-msgstr ""
+msgstr "Μείωση ανάλυσης ε_ικόνας"
#. bAtCV
#: filter/uiconfig/ui/pdfgeneralpage.ui:254
@@ -519,7 +519,7 @@ msgstr "Επιλέξτε για να γράψετε ετικέτες PDF. Αυτ
#: filter/uiconfig/ui/pdfgeneralpage.ui:556
msgctxt "pdfgeneralpage|forms"
msgid "Create PDF for_m"
-msgstr ""
+msgstr "Δημιουργία _μορφής PDF"
#. 3Vg8V
#: filter/uiconfig/ui/pdfgeneralpage.ui:560
@@ -603,13 +603,13 @@ msgstr "Μετατρέπει σε μορφή PDF/A-2b ή PDF/A-1b. Αυτό ορ
#: filter/uiconfig/ui/pdfgeneralpage.ui:735
msgctxt "pdfgeneralpage|pdfaversion"
msgid "PDF_/A version:"
-msgstr ""
+msgstr "PDF_/A έκδοση:"
#. VQGHi
#: filter/uiconfig/ui/pdfgeneralpage.ui:769
msgctxt "pdfgeneralpage|pdfua"
msgid "Universal Accessibilit_y (PDF/UA)"
-msgstr ""
+msgstr "Γενική π_ροσβασιμότητα (PDF/UA)"
#. 4B3FD
#: filter/uiconfig/ui/pdfgeneralpage.ui:773
@@ -627,7 +627,7 @@ msgstr "Γενικά"
#: filter/uiconfig/ui/pdfgeneralpage.ui:824
msgctxt "pdfgeneralpage|bookmarks"
msgid "Export outl_ines"
-msgstr ""
+msgstr "Εξαγωγή _διαρθρώσεων"
#. qw9My
#: filter/uiconfig/ui/pdfgeneralpage.ui:833
@@ -645,7 +645,7 @@ msgstr "Ε_ξαγωγή δεσμευτικών θέσεων"
#: filter/uiconfig/ui/pdfgeneralpage.ui:859
msgctxt "pdfgeneralpage|comments"
msgid "Comm_ents as PDF annotations"
-msgstr ""
+msgstr "Σ_χόλια ως σημειώσεις PDF"
#. SijbK
#: filter/uiconfig/ui/pdfgeneralpage.ui:868
@@ -1311,7 +1311,7 @@ msgstr "Επιλέξτε για να δημιουργήσετε αρχείο PDF
#: filter/uiconfig/ui/pdfviewpage.ui:73
msgctxt "pdfviewpage|outline"
msgid "Outl_ine and page"
-msgstr ""
+msgstr "_Διάρθρωση και σελίδα"
#. JAAHm
#: filter/uiconfig/ui/pdfviewpage.ui:83
@@ -1449,7 +1449,7 @@ msgstr "Επιλέξτε για τη δημιουργία αρχείου PDF π
#: filter/uiconfig/ui/pdfviewpage.ui:425
msgctxt "pdfviewpage|contlayout"
msgid "C_ontinuous"
-msgstr ""
+msgstr "Σ_υνεχής"
#. BRxps
#: filter/uiconfig/ui/pdfviewpage.ui:435
@@ -1461,7 +1461,7 @@ msgstr "Επιλέξτε για τη δημιουργία αρχείου PDF π
#: filter/uiconfig/ui/pdfviewpage.ui:446
msgctxt "pdfviewpage|contfacinglayout"
msgid "Co_ntinuous facing"
-msgstr ""
+msgstr "Συ_νεχής απέναντι"
#. YyCT7
#: filter/uiconfig/ui/pdfviewpage.ui:456
diff --git a/source/el/helpcontent2/source/text/sbasic/shared.po b/source/el/helpcontent2/source/text/sbasic/shared.po
index b3a80c51a69..78cf9b5b588 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared.po
+++ b/source/el/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-27 11:34+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/el/>\n"
@@ -12816,50 +12816,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Πρόταση MkDir\">Πρόταση MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Δημιουργεί ένα νέο κατάλογο στο μέσο αποθήκευσης δεδομένων."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
+msgid "Creates a new directory on a data medium."
+msgstr "Δημιουργεί ένα νέο κατάλογο στο μέσο αποθήκευσης δεδομένων."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Κάθε παράσταση συμβολοσειράς που καθορίζει το όνομα και τη διαδρομή του καταλόγου που πρόκειται να δημιουργηθεί. Η <link href=\"text/sbasic/shared/00000002.xhp\" name=\"γραφή URL\">γραφή URL</link> μπορεί επίσης να χρησιμοποιηθεί εδώ."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12870,15 +12861,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Εάν η διαδρομή δεν καθορίζεται, ο κατάλογος δημιουργείται στον τρέχοντα κατάλογο."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13140,14 +13122,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Διαγράφει έναν υπάρχοντα κατάλογο από το μέσο αποθήκευσης δεδομένων."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13158,15 +13140,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13185,15 +13158,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Αν δεν έχει καθοριστεί διαδρομή, η <emph>RmDir Statement</emph> θα αναζητήσει τον καθορισμένο κατάλογο στην τρέχουσα διαδρομή. Αν δεν βρεθεί εκεί, τότε εμφανίζεται ένα μήνυμα σφάλματος."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24606,23 +24570,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Σταματά την εκτέλεση του προγράμματος Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24858,41 +24813,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Πρόταση With\">Πρόταση With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Καθορίζει ένα αντικείμενο ως το προεπιλεγμένο αντικείμενο, στο οποίο αναφέρονται όλες οι ιδιότητες και μέθοδοι έως ότου κληθεί η πρόταση End With, με την προϋπόθεση ότι δεν έχει δοθεί άλλο όνομα αντικειμένου."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Μπορείτε να χρησιμοποιήσετε τις προτάσεις <emph>With</emph> και <emph>End With</emph> αν έχετε αρκετές ιδιότητες ή μεθόδους για ένα μοναδικό αντικείμενο."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34101,23 +34065,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Παράγει έναν ήχο από το ηχείο του υπολογιστή. Ο τόνος εξαρτάται από το σύστημα και η ένταση και οξύτητα σε γενικές γραμμές δεν μπορούν να τροποποιηθούν."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/el/helpcontent2/source/text/scalc.po b/source/el/helpcontent2/source/text/scalc.po
index 5cbf7f9893a..f61fccbb8d2 100644
--- a/source/el/helpcontent2/source/text/scalc.po
+++ b/source/el/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-07-25 13:35+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1494564783.000000\n"
#. ZxQeC
@@ -419,7 +419,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#object\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Το μενού <emph>Μορφή</emph> περιέχει εντολές μορφοποίησης επιλεγμένων κελιών, <link href=\"text/shared/00/00000005.xhp#object\" name=\"objects\">αντικειμένων</link> και περιεχομένων κελιών στο έγγραφό σας.</ahelp>"
#. Ly37n
#: main0105.xhp
@@ -545,7 +545,7 @@ msgctxt ""
"hd_id3148488\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap (Χάρτης εικόνας)</link>"
#. ToZU6
#: main0106.xhp
diff --git a/source/el/helpcontent2/source/text/scalc/00.po b/source/el/helpcontent2/source/text/scalc/00.po
index 7c9557c1e4f..bd3abf398c1 100644
--- a/source/el/helpcontent2/source/text/scalc/00.po
+++ b/source/el/helpcontent2/source/text/scalc/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-25 13:34+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1555963893.000000\n"
#. E9tti
@@ -509,7 +509,7 @@ msgctxt ""
"par_id3159173\n"
"help.text"
msgid "<variable id=\"logical\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"logical\"><emph>Εισαγωγή - Συνάρτηση</emph> - Κατηγορία <emph>Λογική</emph></variable>"
#. FqeXh
#: 00000404.xhp
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Επιλέξτε <item type=\"menuitem\">Προβολή - Διαίρεση παραθύρου</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Επιλέξτε <item type=\"menuitem\">Προβολή - Πάγωμα κελιών - Πάγωμα γραμμών και στηλών</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr "<variable id=\"fefix\">Επιλέξτε <item type=\"menuitem\">Προβολή - Πάγωμα γραμμών και στηλών</item>.</variable>"
#. BkQfX
#: 00000412.xhp
@@ -1949,7 +1949,7 @@ msgctxt ""
"par_id651551401041666\n"
"help.text"
msgid "This function is available since %PRODUCTNAME 7.1."
-msgstr ""
+msgstr "Αυτή η συνάρτηση είναι διαθέσιμη από το %PRODUCTNAME 7.1."
#. LSPBz
#: sheet_menu.xhp
diff --git a/source/el/helpcontent2/source/text/scalc/01.po b/source/el/helpcontent2/source/text/scalc/01.po
index 7d2f8b97336..7721d9325f1 100644
--- a/source/el/helpcontent2/source/text/scalc/01.po
+++ b/source/el/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:33+0100\n"
-"PO-Revision-Date: 2020-10-26 21:35+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562059311.000000\n"
@@ -9996,7 +9996,7 @@ msgctxt ""
"par_id3149312\n"
"help.text"
msgid "<variable id=\"logicaltext\">This category contains the <emph>Logical</emph> functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"logicaltext\">Αυτή η κατηγορία περιέχει τις <emph>λογικές</emph> συναρτήσεις.</variable>"
#. ADKTB
#: 04060105.xhp
@@ -42279,7 +42279,7 @@ msgctxt ""
"par_id401599494815994\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Παράδειγμα"
#. PcMRq
#: 04060199.xhp
@@ -52746,7 +52746,7 @@ msgctxt ""
"par_id221603980244052\n"
"help.text"
msgid "Only up to 255 characters are saved, when using Excel format."
-msgstr ""
+msgstr "Αποθηκεύονται μόνο μέχρι 255 χαρακτήρες , κατά τη χρήση μορφής Excel."
#. pfATZ
#: 12120100.xhp
@@ -54609,7 +54609,7 @@ msgctxt ""
"par_id1001601332672155\n"
"help.text"
msgid "This function is always recalculated whenever a recalculation occurs."
-msgstr ""
+msgstr "Αυτή η συνάρτηση επανυπολογίζεται πάντα, όταν συμβαίνει επανυπολογισμός."
#. 8DbP2
#: func_aggregate.xhp
@@ -56481,7 +56481,7 @@ msgctxt ""
"par_id831605805755075\n"
"help.text"
msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
-msgstr ""
+msgstr "Για να δουλέψετε αυτά τα παραδείγματα όπως περιγράφτηκε, εξασφαλίστε ότι είναι επιλεγμένο το <emph>Ενεργοποίηση κανονικών εκφράσεων σε τύπους</emph> στο <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Προτιμήσεις</menuitem></caseinline><defaultinline><menuitem>Εργαλεία - Επιλογές</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Υπολογισμός</menuitem>."
#. iHFsx
#: func_countifs.xhp
diff --git a/source/el/helpcontent2/source/text/scalc/05.po b/source/el/helpcontent2/source/text/scalc/05.po
index 96f6423fb23..c98d6ede139 100644
--- a/source/el/helpcontent2/source/text/scalc/05.po
+++ b/source/el/helpcontent2/source/text/scalc/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-03-25 20:28+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc05/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1555965749.000000\n"
@@ -330,7 +330,7 @@ msgctxt ""
"par_id3145635\n"
"help.text"
msgid "<emph>Compiler:</emph> an identifier in the formula exceeds 64 kB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 kB in size."
-msgstr ""
+msgstr "<emph>Μεταγλωττιστής:</emph> αναγνωριστικό στον τύπο που ξεπερνά τα 64 kB σε μέγεθος. <emph>Διερμηνευτής:</emph> αποτέλεσμα πράξης συμβολοσειράς που ξεπερνά τα 64 kB σε μέγεθος."
#. E7ohJ
#: 02140000.xhp
diff --git a/source/el/helpcontent2/source/text/scalc/guide.po b/source/el/helpcontent2/source/text/scalc/guide.po
index f3e1189e2a8..4453e6eb931 100644
--- a/source/el/helpcontent2/source/text/scalc/guide.po
+++ b/source/el/helpcontent2/source/text/scalc/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: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-07-25 17:00+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1549360115.000000\n"
@@ -7550,23 +7550,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Για να παγώσετε ταυτόχρονα οριζόντια και κάθετα, επιλέξτε το <emph>κελί</emph> που βρίσκεται κάτω από την γραμμή και δεξιά της στήλης που θέλετε να παγώσετε."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Επιλέξτε <item type=\"menuitem\">Προβολή - Πάγωμα κελιών - Πάγωμα γραμμών και στηλών</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr "Επιλέξτε <item type=\"menuitem\">Προβολή - Πάγωμα γραμμών και στηλών</item>."
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Για απενεργοποίηση, επιλέξτε <item type=\"menuitem\">Προβολή - Πάγωμα κελιών - Πάγωμα γραμμών και στηλών</item> ξανά."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr "Για απενεργοποίηση, επιλέξτε <item type=\"menuitem\">Προβολή - Πάγωμα γραμμών και στηλών</item> ξανά."
#. U7GBK
#: line_fix.xhp
@@ -7586,14 +7586,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Αν θέλετε να εκτυπώσετε μια συγκεκριμένη γραμμή σε όλες τις σελίδες ενός εγγράφου, επιλέξτε <item type=\"menuitem\">Μορφή - Περιοχές εκτύπωσης - Επεξεργασία</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Προβολή - Πάγωμα κελιών - Πάγωμα γραμμών και στηλών\">Προβολή - Πάγωμα κελιών - Πάγωμα γραμμών και στηλών</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Προβολή - Πάγωμα γραμμών και στηλών</link>"
#. RbKLt
#: line_fix.xhp
@@ -12590,7 +12590,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Edit Macros</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Εργαλεία - Μακροεντολές - Επεξεργασία μακροεντολών</menuitem>."
#. N4uB4
#: userdefined_function.xhp
@@ -12599,7 +12599,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "You will now see the Basic IDE."
-msgstr ""
+msgstr "Θα δείτε τώρα το βασικό IDE."
#. jXhZH
#: userdefined_function.xhp
@@ -12608,7 +12608,7 @@ msgctxt ""
"par_id651603905832952\n"
"help.text"
msgid "In the Object Catalog window, double-click on the module where you want to store your macro."
-msgstr ""
+msgstr "Στο παράθυρο καταλόγου αντικειμένων, διπλοπατήστε το επιθυμητό άρθρωμα για να αποθηκεύσετε τη μακροεντολή σας."
#. G6mwG
#: userdefined_function.xhp
@@ -12635,7 +12635,7 @@ msgctxt ""
"par_id3150043\n"
"help.text"
msgid "Your function is automatically saved in the selected module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
-msgstr ""
+msgstr "Η συνάρτησή σας αποθηκεύεται αυτόματα στο επιλεγμένο άρθρωμα και είναι τώρα διαθέσιμη. Εάν εφαρμόσετε τη συνάρτηση σε έγγραφο του Calc που πρόκειται να χρησιμοποιηθεί σε έναν άλλο υπολογιστή, μπορείτε να αντιγράψετε τη συνάρτηση στο έγγραφο Calc όπως περιγράφεται στην επόμενη ενότητα."
#. 3bcAE
#: userdefined_function.xhp
@@ -12671,7 +12671,7 @@ msgctxt ""
"par_id3150304\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Εργαλεία - Μακροεντολές - Οργάνωση μακροεντολών - Basic</menuitem>."
#. HZciB
#: userdefined_function.xhp
@@ -12707,7 +12707,7 @@ msgctxt ""
"par_id3150517\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem> ."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Εργαλεία - Μακροεντολές - Οργάνωση μακροεντολών - Basic</menuitem> ."
#. oTBX8
#: userdefined_function.xhp
diff --git a/source/el/helpcontent2/source/text/sdatabase.po b/source/el/helpcontent2/source/text/sdatabase.po
index 4df8cd3e176..104fa17a7a8 100644
--- a/source/el/helpcontent2/source/text/sdatabase.po
+++ b/source/el/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-08-01 07:35+0000\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
#. ugSgG
#: 02000000.xhp
@@ -166,7 +166,7 @@ msgctxt ""
"hd_id3153379\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Σχεδίαση ερωτήματος</link>"
#. 3JCfK
#: 02000000.xhp
@@ -184,7 +184,7 @@ msgctxt ""
"hd_id3153968\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Through Several Tables\">Query Through Several Tables</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Through Several Tables\">Ερώτημα μέσα από πολλούς πίνακες</link>"
#. ASeVi
#: 02000000.xhp
@@ -202,7 +202,7 @@ msgctxt ""
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Formulating Query Criteria\">Formulating Query Criteria</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Formulating Query Criteria\">Διαμόρφωση κριτηρίων ερωτήματος</link>"
#. JTXBF
#: 02000000.xhp
@@ -220,7 +220,7 @@ msgctxt ""
"hd_id3156212\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Executing Functions\">Executing Functions</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Executing Functions\">Εκτέλεση συναρτήσεων</link>"
#. FWCVa
#: 02000000.xhp
@@ -301,7 +301,7 @@ msgctxt ""
"par_id3166461\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/sdatabase/02010100.xhp\" name=\"Design View\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
-msgstr ""
+msgstr "<ahelp hid=\".\">Σας επιτρέπει να ανοίξετε το ερώτημα στην <link href=\"text/sdatabase/02010100.xhp\" name=\"Design View\">Προβολή σχεδίασης</link> παρά τα ελλείποντα στοιχεία.</ahelp> Αυτή η επιλογή σας επιτρέπει επίσης να καθορίσετε εάν άλλα σφάλματα χρειάζεται να αγνοηθούν."
#. DX2vA
#: 02000002.xhp
@@ -328,7 +328,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to open the query design in the <link href=\"text/sdatabase/02010100.xhp\" name=\"SQL Mode\">SQL Mode</link> and to interpret the query as a <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">Native SQL</link>.</ahelp> You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)."
-msgstr ""
+msgstr "<ahelp hid=\".\">Σας επιτρέπει να ανοίξετε τη σχεδίαση ερωτήματος στην <link href=\"text/sdatabase/02010100.xhp\" name=\"SQL Mode\">Κατάσταση SQL</link> και να ερμηνεύσετε το ερώτημα ως <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">εγγενές SQL</link>.</ahelp> Μπορείτε να εγκαταλείψετε την εγγενή κατάσταση SQL μόνο όταν η πρόταση του $[officename] έχει πλήρως ερμηνευτεί (εφικτό μόνο εάν οι χρησιμοποιούμενοι πίνακες ή πεδία στο ερώτημα υπάρχουν πραγματικά)."
#. 2N4uG
#: 02000002.xhp
@@ -373,7 +373,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Query Design"
-msgstr ""
+msgstr "Σχεδίαση ερωτήματος"
#. Ys2sC
#: 02010100.xhp
diff --git a/source/el/helpcontent2/source/text/sdraw.po b/source/el/helpcontent2/source/text/sdraw.po
index ea7028ab92c..0439b9fc385 100644
--- a/source/el/helpcontent2/source/text/sdraw.po
+++ b/source/el/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-06-29 11:28+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558008542.000000\n"
#. dHbww
@@ -113,7 +113,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "View (menu in Draw)"
-msgstr ""
+msgstr "Προβολή (μενού στο Draw)"
#. hWYJ3
#: main0103.xhp
@@ -158,7 +158,7 @@ msgctxt ""
"par_idN105B2\n"
"help.text"
msgid "Master"
-msgstr ""
+msgstr "Κύριο"
#. eSnQZ
#: main0103.xhp
@@ -167,7 +167,7 @@ msgctxt ""
"par_idN105B6\n"
"help.text"
msgid "Switch to the master view."
-msgstr ""
+msgstr "Εναλλαγή στην κύρια προβολή."
#. nstgU
#: main0103.xhp
@@ -176,7 +176,7 @@ msgctxt ""
"hd_id221605492986383\n"
"help.text"
msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">Διεπαφή χρήστη</link>"
#. tYxbF
#: main0103.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"par_id761605493042236\n"
"help.text"
msgid "Opens dialog box for selecting layout of user interface."
-msgstr ""
+msgstr "Ανοίγει το πλαίσιο διαλόγου επιλογής διάταξης διεπαφής χρήστη."
#. JChXS
#: main0103.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"hd_id102720151746522815\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Σχόλια"
#. XjZkS
#: main0103.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"par_id102720150112252143\n"
"help.text"
msgid "Show or hide annotations on the page."
-msgstr ""
+msgstr "Εμφάνιση ή απόκρυψη σχολίων στη σελίδα."
#. Y3uKu
#: main0103.xhp
@@ -212,7 +212,7 @@ msgctxt ""
"hd_id961605560845125\n"
"help.text"
msgid "Shift"
-msgstr ""
+msgstr "Μετακίνηση"
#. 3Eaeo
#: main0103.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"par_id301605560855098\n"
"help.text"
msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
-msgstr ""
+msgstr "Χρήση για μετακίνηση της θέσης της σελίδας στο παράθυρο. Όταν ενεργοποιηθεί, η εμφάνιση του δείκτη του ποντικιού αλλάζει. Πατήστε τη σελίδα και σύρτε στην επιθυμητή θέση."
#. 7AgpR
#: main0103.xhp
@@ -563,7 +563,7 @@ msgctxt ""
"hd_id3146313\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Προσκόλληση στους οδηγούς προσκόλλησης</link>"
#. eUTG8
#: main0213.xhp
diff --git a/source/el/helpcontent2/source/text/sdraw/00.po b/source/el/helpcontent2/source/text/sdraw/00.po
index 7cbf6e0db5a..c5226c740c2 100644
--- a/source/el/helpcontent2/source/text/sdraw/00.po
+++ b/source/el/helpcontent2/source/text/sdraw/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-03-05 16:15+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw00/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558009098.000000\n"
#. EDSDr
@@ -50,7 +50,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <menuitem>Page - Page Properties</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Επιλέξτε <menuitem>Σελίδα - Ιδιότητες σελίδας</menuitem>…</variable>"
#. h9HDn
#: page_menu.xhp
@@ -59,7 +59,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <menuitem>Page - Page Properties</menuitem> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Επιλέξτε <menuitem>Σελίδα - Ιδιότητες σελίδας</menuitem> και έπειτα πατήστε την καρτέλα <emph>Σελίδα</emph>…</variable>"
#. 6eTqD
#: page_menu.xhp
@@ -68,7 +68,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <menuitem>Page - Page Properties</menuitem> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Επιλέξτε <menuitem>Σελίδα - Ιδιότητες σελίδας</menuitem> και έπειτα πατήστε την καρτέλα <emph>Παρασκήνιο</emph>…</variable>"
#. UqCyU
#: page_menu.xhp
@@ -77,7 +77,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Page - Master Page</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Επιλέξτε <menuitem>Σελίδα - Κύρια σελίδα</menuitem>…</variable>"
#. paRMk
#: page_menu.xhp
@@ -86,7 +86,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <menuitem>Page - New Page</menuitem>"
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Σελίδα - Νέα σελίδα</menuitem>"
#. EpBTa
#: page_menu.xhp
diff --git a/source/el/helpcontent2/source/text/sdraw/01.po b/source/el/helpcontent2/source/text/sdraw/01.po
index d6e29768978..34242935fc5 100644
--- a/source/el/helpcontent2/source/text/sdraw/01.po
+++ b/source/el/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-10 16:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/el/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Καθορίζει τον προσανατολισμό, τα περιθώρια, το παρασκήνιο και άλλες επιλογές διάταξης της σελίδας.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Για να αλλάξετε το παρασκήνιο σε όλες τις σελίδες του ενεργού αρχείου, επιλέξτε ένα παρασκήνιο, πατήστε <emph>Εντάξει</emph> και ύστερα στο <emph>Ναι</emph> στον διάλογο <emph>Ρυθμίσεις σελίδας</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/el/helpcontent2/source/text/shared.po b/source/el/helpcontent2/source/text/shared.po
index 79c30bc5774..b34ffab37a0 100644
--- a/source/el/helpcontent2/source/text/shared.po
+++ b/source/el/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-07-28 14:35+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textshared/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1548756678.000000\n"
#. DBz3U
@@ -905,7 +905,7 @@ msgctxt ""
"par_id3157910\n"
"help.text"
msgid "The Navigation bar is only visible for forms connected to a database. In the <link href=\"text/sdatabase/04030000.xhp\" name=\"Design view\">Design view</link> of a form, the Navigation bar is not available. See also <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Table Data bar</link>."
-msgstr ""
+msgstr "Η γραμμή πλοήγησης είναι ορατή μόνο για φόρμες συνδεμένες με βάση δεδομένων. Στην <link href=\"text/sdatabase/04030000.xhp\" name=\"Design view\">Προβολή σχεδίασης</link> μιας φόρμας, η γραμμή πλοήγησης δεν είναι διαθέσιμη. Δείτε επίσης <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Γραμμή δεδομένων πίνακα</link>."
#. tqTbR
#: main0213.xhp
diff --git a/source/el/helpcontent2/source/text/shared/00.po b/source/el/helpcontent2/source/text/shared/00.po
index 2f6ed092dc3..59c2c06dfad 100644
--- a/source/el/helpcontent2/source/text/shared/00.po
+++ b/source/el/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-26 21:35+0000\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1557496868.000000\n"
@@ -2121,7 +2121,7 @@ msgctxt ""
"par_id3151176\n"
"help.text"
msgid "Enable CTL support using <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>."
-msgstr ""
+msgstr "Ενεργοποιήστε την υποστήριξη CTL χρησιμοποιώντας το <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Προτιμήσεις</menuitem></caseinline><defaultinline><menuitem>Εργαλεία - Επιλογές</menuitem></defaultinline></switchinline><menuitem> - Ρυθμίσεις γλώσσας - Γλώσσες</menuitem>."
#. AP8vJ
#: 00000005.xhp
@@ -2193,7 +2193,7 @@ msgctxt ""
"par_id3147287\n"
"help.text"
msgid "You can remove direct formatting from your document by selecting the entire text with the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode> and then choosing <menuitem>Format - Clear Direct Formatting</menuitem>."
-msgstr ""
+msgstr "Μπορείτε να αφαιρέσετε την άμεση μορφοποίηση από το έγγραφό σας επιλέγοντας ολόκληρο το κείμενο με τα πλήκτρα συντόμευσης <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode> και επιλέγοντας έπειτα <menuitem>μορφή - Καθαρισμός άμεσης μορφοποίησης</menuitem>."
#. aUcVk
#: 00000005.xhp
@@ -2229,7 +2229,7 @@ msgctxt ""
"par_id3147233\n"
"help.text"
msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key.</variable>"
-msgstr ""
+msgstr "<variable id=\"andock2\">Για αποπροσάρτηση και επαναπροσάρτηση, κρατήστε πατημένο το πλήκτρο <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, διπλοπατήστε μια κενή περιοχή στο παράθυρο. Στο παράθυρο τεχνοτροπίες, μπορείτε επίσης να διπλοπατήσετε ένα γκρίζο τμήμα του παραθύρου δίπλα στα εικονίδια, ενώ κρατάτε πατημένο το πλήκτρο <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>.</variable>"
#. MCMsr
#: 00000005.xhp
@@ -2409,7 +2409,7 @@ msgctxt ""
"par_id3150092\n"
"help.text"
msgid "The <menuitem>Links to External Files</menuitem> command is found in the <menuitem>Edit</menuitem> menu. The command can only be activated when at least one link is contained in the current document. When you insert a picture, for example, you can either insert the picture directly into the document or insert the picture as a link."
-msgstr ""
+msgstr "Η εντολή <menuitem>Σύνδεσμοι με εξωτερικά αρχεία</menuitem> βρίσκεται στο μενού <menuitem>Επεξεργασία</menuitem>. Η εντολή μπορεί να ενεργοποιηθεί μόνο όταν περιέχεται τουλάχιστον ένας σύνδεσμος στο τρέχον έγγραφο. Όταν εισάγεται μια εικόνα, π.χ., μπορείτε είτε να εισάγετε την εικόνα άμεσα στο έγγραφο, είτε να εισάγετε την εικόνα ως σύνδεσμο."
#. ePu6N
#: 00000005.xhp
@@ -2436,7 +2436,7 @@ msgctxt ""
"par_id3153334\n"
"help.text"
msgid "Use <menuitem>Edit - Links to External Files</menuitem> to see which files are inserted as links. The links can be removed if required. This will break the link and insert the object directly."
-msgstr ""
+msgstr "Χρησιμοποιήστε <menuitem>Επεξεργασία - Σύνδεσμοι σε εξωτερικά αρχεία</menuitem> για να δείτε ποια αρχεία εισάγονται ως σύνδεσμοι. Οι σύνδεσμοι μπορεί να αφαιρεθούν εάν χρειάζεται. Αυτό τα σπάσει τον σύνδεσμο και θα εισαχθεί το αντικείμενο απευθείας."
#. 6TLPo
#: 00000005.xhp
@@ -2526,7 +2526,7 @@ msgctxt ""
"par_id3153956\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The 32bit ODBC functions required here can be installed on your system at any time with the help of the setup program supplied with your database. You can then amend the properties through the Control Panel.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Οι συναρτήσεις 32bit ODBC που απαιτούνται εδώ, μπορούν να εγκατασταθούν στο σύστημά σας οποτεδήποτε με τη βοήθεια του προγράμματος εγκατάστασης που παρέχεται με τη βάση δεδομένων σας. Μπορείτε έπειτα να τροποποιήσετε τις ιδιότητες μέσω του Πίνακα Ελέγχου.</caseinline></switchinline>"
#. fEdsV
#: 00000005.xhp
@@ -2670,7 +2670,7 @@ msgctxt ""
"bm_id3147315\n"
"help.text"
msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>αληθής καταχώριση (register-true); ορισμός</bookmark_value><bookmark_value>διάστιχο σελίδας; ορισμός</bookmark_value>"
#. ygQrE
#: 00000005.xhp
@@ -2679,7 +2679,7 @@ msgctxt ""
"hd_id551604189872115\n"
"help.text"
msgid "Page line-spacing (register-true)"
-msgstr ""
+msgstr "Διάστιχο σελίδας (αληθής καταχώριση (register-true))"
#. yspD9
#: 00000005.xhp
@@ -2688,7 +2688,7 @@ msgctxt ""
"par_id3145230\n"
"help.text"
msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
-msgstr ""
+msgstr "Στο %PRODUCTNAME, το γνώρισμα αληθής καταχώριση (register-true) ονομάζεται <emph>Διάστιχο σελίδας</emph>."
#. WxQBJ
#: 00000005.xhp
@@ -2697,7 +2697,7 @@ msgctxt ""
"par_id3154223\n"
"help.text"
msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
-msgstr ""
+msgstr "Το διάστιχο σελίδας αναφέρεται στην ταυτόχρονη αποτύπωση των γραμμών μέσα σε περιοχή πληκτρολόγησης στην μπροστινή και πίσω πλευρά σελίδας. Το γνώρισμα διάστιχο σελίδας κάνει μια σελίδα πιο ευανάγνωστη αποφεύγοντας γκρίζες σκιές από λάμψη μεταξύ των γραμμών του κειμένου. Ο όρος διάστιχο σελίδας αναφέρεται επίσης στις γραμμές σε γειτονικές στήλες κειμένου, όπου οι γραμμές σε διαφορετικές στήλες χρησιμοποιούν το ίδιο κάθετο πλέγμα, στοιχίζοντας τες συνεπώς κάθετα μεταξύ τους."
#. BNJUC
#: 00000005.xhp
@@ -2706,7 +2706,7 @@ msgctxt ""
"par_id761604345191168\n"
"help.text"
msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
-msgstr ""
+msgstr "Η εκτύπωση διάστιχου σελίδας είναι ιδιαίτερα χρήσιμη για έγγραφα που θα έχουν δύο σελίδες τοποθετημένες δίπλα- δίπλα μεταξύ τους (π.χ., σε βιβλίο, ή φυλλάδιο), για διατάξεις πολλαπλών στηλών και για έγγραφα προοριζόμενα για εκτύπωση διπλής όψης."
#. Es2pF
#: 00000005.xhp
@@ -2742,7 +2742,7 @@ msgctxt ""
"par_id3146919\n"
"help.text"
msgid "In various dialogs (for example, <menuitem>Tools - AutoText</menuitem>) you can select whether you want to save files relatively or absolutely."
-msgstr ""
+msgstr "Σε διάφορους διαλόγους (π.χ., <menuitem>Εργαλεία - Αυτόματο κείμενο</menuitem>), μπορείτε να επιλέξετε εάν θέλετε να αποθηκεύσετε σχετικά ή απόλυτα αρχεία."
#. vUiBY
#: 00000005.xhp
@@ -6099,7 +6099,7 @@ msgctxt ""
"par_id3154812\n"
"help.text"
msgid "Choose <menuitem>File - New</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Νέο</menuitem>."
#. 4rLdL
#: 00000401.xhp
@@ -6117,7 +6117,7 @@ msgctxt ""
"par_id3150127\n"
"help.text"
msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156053\">Icon New</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156053\">Εικονίδιο νέου</alt></image>"
#. ED9Aa
#: 00000401.xhp
@@ -6135,7 +6135,7 @@ msgctxt ""
"par_id3154894\n"
"help.text"
msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+N</keycode>"
-msgstr ""
+msgstr "Πλήκτρα <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+N</keycode>"
#. TkkUE
#: 00000401.xhp
@@ -6144,7 +6144,7 @@ msgctxt ""
"par_id3157898\n"
"help.text"
msgid "Menu <menuitem>File - New - Templates</menuitem>."
-msgstr ""
+msgstr "Μενού <menuitem>Αρχείο - Νέο - Πρότυπα</menuitem>."
#. x6c5g
#: 00000401.xhp
@@ -6153,7 +6153,7 @@ msgctxt ""
"par_id3149140\n"
"help.text"
msgid "Key <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+N</keycode>"
-msgstr ""
+msgstr "Πλήκτρα <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+N</keycode>"
#. chsce
#: 00000401.xhp
@@ -6171,7 +6171,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<variable id=\"etikettenein\">Choose <menuitem>File - New - Labels - Labels</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"etikettenein\">Επιλέξτε την καρτέλα <menuitem>Αρχείο - Νέο - Ετικέτες - Ετικέτες</menuitem>.</variable>"
#. aFjHG
#: 00000401.xhp
@@ -6261,7 +6261,7 @@ msgctxt ""
"par_id3146137\n"
"help.text"
msgid "Choose <menuitem>File - Open</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Άνοιγμα</menuitem>."
#. L593b
#: 00000401.xhp
@@ -6270,7 +6270,7 @@ msgctxt ""
"par_id3152944\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+O</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+O</keycode>"
#. 8MEFY
#: 00000401.xhp
@@ -6288,7 +6288,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149415\">Icon Open</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149415\">Εικονίδιο ανοίγματος</alt></image>"
#. GTEAT
#: 00000401.xhp
@@ -6306,7 +6306,7 @@ msgctxt ""
"par_id3155388\n"
"help.text"
msgid "Menu <menuitem>File - Open</menuitem>, File type <emph>Text Encoded</emph> selected."
-msgstr ""
+msgstr "Μενού <menuitem>Αρχείο - Άνοιγμα</menuitem>, επιλεγμένος τύπος αρχείου <emph>Κωδικοποιημένο κείμενο</emph>."
#. D6LxF
#: 00000401.xhp
@@ -6315,7 +6315,7 @@ msgctxt ""
"par_id3154174\n"
"help.text"
msgid "Menu <menuitem>File - Save As</menuitem>, File type <emph>Text Encoded</emph> selected."
-msgstr ""
+msgstr "Μενού <menuitem>Αρχείο - Αποθήκευση ως</menuitem>, επιλεγμένος τύπος αρχείου <emph>Κωδικοποιημένο κείμενο</emph>."
#. NUYpz
#: 00000401.xhp
@@ -6675,7 +6675,7 @@ msgctxt ""
"par_id3156717\n"
"help.text"
msgid "Choose <menuitem>File - Save</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Αποθήκευση</menuitem>."
#. BiNBE
#: 00000401.xhp
@@ -6684,7 +6684,7 @@ msgctxt ""
"par_id3147533\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+S</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+S</keycode>"
#. 8UBzJ
#: 00000401.xhp
@@ -6702,7 +6702,7 @@ msgctxt ""
"par_id3156712\n"
"help.text"
msgid "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155939\">Icon Save</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155939\">Εικονίδιο αποθήκευσης</alt></image>"
#. aa2WD
#: 00000401.xhp
@@ -6720,7 +6720,7 @@ msgctxt ""
"par_idN10F11\n"
"help.text"
msgid "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8276619\">Icon Save as</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8276619\">Εικονίδιο αποθήκευση ως</alt></image>"
#. AugfN
#: 00000401.xhp
@@ -6810,7 +6810,7 @@ msgctxt ""
"par_id3154901\n"
"help.text"
msgid "<variable id=\"saveall\">Choose <menuitem>File - Save All</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"saveall\">Επιλέξτε <menuitem>Αρχείο - Αποθήκευση όλων</menuitem>.</variable>"
#. 73K3b
#: 00000401.xhp
@@ -6819,7 +6819,7 @@ msgctxt ""
"par_id3152479\n"
"help.text"
msgid "<variable id=\"saveas\">Choose <menuitem>File - Save As</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"saveas\">Επιλέξτε <menuitem>Αρχείο - Αποθήκευση ως</menuitem>.</variable>"
#. 7xzGF
#: 00000401.xhp
@@ -6828,7 +6828,7 @@ msgctxt ""
"par_id3148392\n"
"help.text"
msgid "Choose <menuitem>File - Reload</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Επαναφόρτωση</menuitem>."
#. qdS25
#: 00000401.xhp
@@ -6837,7 +6837,7 @@ msgctxt ""
"par_id3166425\n"
"help.text"
msgid "<variable id=\"info1\">Choose <menuitem>File - Properties</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"info1\">Επιλέξτε <menuitem>Αρχείο - Ιδιότητες</menuitem>.</variable>"
#. HCGtN
#: 00000401.xhp
@@ -6846,7 +6846,7 @@ msgctxt ""
"par_id3150381\n"
"help.text"
msgid "<variable id=\"info2\">Choose <menuitem>File - Properties - General</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"info2\">Επιλέξτε την καρτέλα <menuitem>Αρχείο - Ιδιότητες - Γενικά</menuitem>.</variable>"
#. btEP2
#: 00000401.xhp
@@ -6855,7 +6855,7 @@ msgctxt ""
"par_id181526424294565\n"
"help.text"
msgid "Choose <menuitem>File - Digital Signatures - Sign Existing PDF</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Ψηφιακές υπογραφές - Υπογραφή υφιστάμενου PDF</menuitem>."
#. BT3B5
#: 00000401.xhp
@@ -6873,7 +6873,7 @@ msgctxt ""
"par_idN11163\n"
"help.text"
msgid "<variable id=\"digitalsigs\">Choose <menuitem>File - Digital Signatures - Digital Signatures</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"digitalsigs\">Επιλέξτε <menuitem>Αρχείο - Ψηφιακές υπογραφές - Ψηφιακές υπογραφές</menuitem>.</variable>"
#. QA6UC
#: 00000401.xhp
@@ -6882,7 +6882,7 @@ msgctxt ""
"par_idN11168\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Digital Signature</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Εργαλεία - Μακροεντολές - Ψηφιακή υπογραφή</menuitem>."
#. u6Rcy
#: 00000401.xhp
@@ -6891,7 +6891,7 @@ msgctxt ""
"par_idN11156\n"
"help.text"
msgid "Choose <menuitem>File - Properties - General</menuitem> tab, click <emph>Digital Signatures</emph> button."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Αρχείο - Ιδιότητες - Γενικά</menuitem>, πατήστε το πλήκτρο <emph>Ψηφιακές υπογραφές</emph>."
#. G3b6A
#: 00000401.xhp
@@ -6909,7 +6909,7 @@ msgctxt ""
"par_idN11173\n"
"help.text"
msgid "<variable id=\"digitalsigsel\">Choose <menuitem>File - Properties - General</menuitem> tab, press <emph>Digital Signatures</emph> button, then click <emph>Sign Document</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"digitalsigsel\">Επιλέξτε την καρτέλα <menuitem>Αρχείο - Ιδιότητες - Γενικά</menuitem>, πατήστε το πλήκτρο <emph>Ψηφιακές υπογραφές</emph>, έπειτα πατήστε το πλήκτρο <emph>Υπογραφή εγγράφου</emph>.</variable>"
#. EpJQ7
#: 00000401.xhp
@@ -6918,7 +6918,7 @@ msgctxt ""
"par_id3150662\n"
"help.text"
msgid "<variable id=\"info3\">Choose <menuitem>File - Properties - Description</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"info3\">Επιλέξτε την καρτέλα <menuitem>Αρχείο - Ιδιότητες - Περιγραφή</menuitem>.</variable>"
#. GjKt9
#: 00000401.xhp
@@ -6927,7 +6927,7 @@ msgctxt ""
"par_id3153792\n"
"help.text"
msgid "<variable id=\"info4\">Choose <menuitem>File - Properties - Custom Properties</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"info4\">Επιλέξτε την καρτέλα <menuitem>Αρχείο - Ιδιότητες - Προσαρμοσμένες ιδιότητες</menuitem>.</variable>"
#. U55Xg
#: 00000401.xhp
@@ -6936,7 +6936,7 @@ msgctxt ""
"par_id3153701\n"
"help.text"
msgid "<variable id=\"info5\">Choose <menuitem>File - Properties - Statistics</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"info5\">Επιλέξτε την καρτέλα <menuitem>Αρχείο - Ιδιότητες - Στατιστικά</menuitem>.</variable>"
#. zpMha
#: 00000401.xhp
@@ -6945,7 +6945,7 @@ msgctxt ""
"par_id315370199\n"
"help.text"
msgid "<variable id=\"infosec\">Choose <menuitem>File - Properties - Security</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"infosec\">Επιλέξτε την καρτέλα <menuitem>Αρχείο - Ιδιότητες - Ασφάλεια</menuitem>.</variable>"
#. pSZak
#: 00000401.xhp
@@ -6954,7 +6954,7 @@ msgctxt ""
"par_id3149570\n"
"help.text"
msgid "<variable id=\"info6\">Choose <menuitem>File - Properties - CMIS Properties</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"info6\">Επιλέξτε την καρτέλα <menuitem>Αρχείο - Ιδιότητες - Ιδιότητες CMIS</menuitem>.</variable>"
#. EdFtp
#: 00000401.xhp
@@ -6963,7 +6963,7 @@ msgctxt ""
"par_id3150382\n"
"help.text"
msgid "<variable id=\"info7\">Choose <menuitem>File - Properties - Font</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"info7\">Επιλέξτε την καρτέλα <menuitem>Αρχείο - Ιδιότητες - Γραμματοσειρά</menuitem>.</variable>"
#. FJjaY
#: 00000401.xhp
@@ -6972,7 +6972,7 @@ msgctxt ""
"par_id3154930\n"
"help.text"
msgid "Menu <menuitem>File - Print Preview</menuitem>."
-msgstr ""
+msgstr "Μενού <menuitem>Αρχείο - Προεπισκόπηση εκτύπωσης</menuitem>."
#. 9y98N
#: 00000401.xhp
@@ -6981,7 +6981,7 @@ msgctxt ""
"par_idN11366\n"
"help.text"
msgid "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2603534\">Icon Print preview</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2603534\">Εικονίδιο προεπισκόπησης εκτύπωσης</alt></image>"
#. jR2YD
#: 00000401.xhp
@@ -6999,7 +6999,7 @@ msgctxt ""
"par_id3163722\n"
"help.text"
msgid "Choose <menuitem>File - Printer Settings</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Ρυθμίσεις εκτυπωτή</menuitem>."
#. Dpv6i
#: 00000401.xhp
@@ -7008,7 +7008,7 @@ msgctxt ""
"par_id3155529\n"
"help.text"
msgid "<variable id=\"senden\">Menu <menuitem>File - Send</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"senden\">Μενού <menuitem>Αρχείο - Αποστολή</menuitem>.</variable>"
#. 9pQyS
#: 00000401.xhp
@@ -7017,7 +7017,7 @@ msgctxt ""
"par_id3145386\n"
"help.text"
msgid "Choose <menuitem>File - Send - Email Document</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Αποστολή - Έγγραφο ηλ. αλληλογραφίας</menuitem>."
#. Qg6LH
#: 00000401.xhp
@@ -7026,7 +7026,7 @@ msgctxt ""
"par_idN113AB\n"
"help.text"
msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id4044007\">Icon Email Document</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id4044007\">Εικονίδιο εγγράφου ηλ. αλληλογραφίας</alt></image>"
#. iYxXg
#: 00000401.xhp
@@ -7044,7 +7044,7 @@ msgctxt ""
"par_id3145269\n"
"help.text"
msgid "<variable id=\"export\">Choose <menuitem>File - Export</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"export\">Επιλέξτε <menuitem>Αρχείο - Εξαγωγή</menuitem>.</variable>"
#. uGwBS
#: 00000401.xhp
@@ -7053,7 +7053,7 @@ msgctxt ""
"par_id621525017637963\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as EPUB</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Εξαγωγή ως - Εξαγωγή ως EPUB</menuitem>."
#. eA3gr
#: 00000401.xhp
@@ -7062,7 +7062,7 @@ msgctxt ""
"par_id121525017890767\n"
"help.text"
msgid "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id51525017890767\"> Icon Export as EPUB</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id51525017890767\"> Εικονίδιο εξαγωγής ως EPUB</alt></image>"
#. tGZDr
#: 00000401.xhp
@@ -7080,7 +7080,7 @@ msgctxt ""
"par_id3163421\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - Digital Signatures</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Αρχείο - Εξαγωγή ως - Εξαγωγή ως PDF - Ψηφιακές υπογραφές</menuitem>."
#. MgPsT
#: 00000401.xhp
@@ -7089,7 +7089,7 @@ msgctxt ""
"par_id671574090639995\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - Security</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Αρχείο - Εξαγωγή ως - Εξαγωγή ως PDF - Ασφάλεια</menuitem>."
#. ApDfF
#: 00000401.xhp
@@ -7098,7 +7098,7 @@ msgctxt ""
"par_id211574090645188\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - General</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Αρχείο - Εξαγωγή ως - Εξαγωγή ως PDF - Γενικά</menuitem>."
#. Axgsj
#: 00000401.xhp
@@ -7107,7 +7107,7 @@ msgctxt ""
"par_id601574090650587\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - Initial View</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Αρχείο - Εξαγωγή ως - Εξαγωγή ως PDF - Αρχική προβολή</menuitem>."
#. MJnhd
#: 00000401.xhp
@@ -7116,7 +7116,7 @@ msgctxt ""
"par_id51574090655835\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - Links</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Αρχείο - Εξαγωγή ως - Εξαγωγή ως PDF - Σύνδεσμοι</menuitem>."
#. tEeN5
#: 00000401.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"par_id541574090661437\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - User Interface</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Αρχείο - Εξαγωγή ως - Εξαγωγή ως PDF - Διεπαφή χρήστη</menuitem>."
#. B8yCN
#: 00000401.xhp
@@ -7134,7 +7134,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Εξαγωγή ως - Εξαγωγή ως PDF</menuitem>."
#. JCWGU
#: 00000401.xhp
@@ -7143,7 +7143,7 @@ msgctxt ""
"par_id3150521\n"
"help.text"
msgid "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147306\">Icon Export Directly as PDF</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147306\">Εικονίδιο άμεσης εξαγωγής ως PDF</alt></image>"
#. XtDBf
#: 00000401.xhp
@@ -7161,7 +7161,7 @@ msgctxt ""
"par_id3145410\n"
"help.text"
msgid "Choose <menuitem>File - Send - Email as PDF</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Αποστολή - Ηλ. αλληλογραφία ως PDF</menuitem>."
#. kiHmE
#: 00000401.xhp
@@ -7170,7 +7170,7 @@ msgctxt ""
"par_id3159160\n"
"help.text"
msgid "<variable id=\"glo\">Choose <menuitem>File - Send - Create Master Document</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"glo\">Επιλέξτε <menuitem>Αρχείο - Αποστολή - Δημιουργία κύριου εγγράφου</menuitem>.</variable>"
#. 6yCud
#: 00000401.xhp
@@ -7179,7 +7179,7 @@ msgctxt ""
"par_id3149951\n"
"help.text"
msgid "Choose <menuitem>File - Print</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Εκτύπωση</menuitem>."
#. mXCMo
#: 00000401.xhp
@@ -7188,7 +7188,7 @@ msgctxt ""
"par_id3155259\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+P</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+P</keycode>"
#. DAFSE
#: 00000401.xhp
@@ -7206,7 +7206,7 @@ msgctxt ""
"par_id3155187\n"
"help.text"
msgid "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153318\">Icon Print File Directly</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153318\">Εικονίδιο άμεσης εκτύπωσης αρχείου</alt></image>"
#. DvJva
#: 00000401.xhp
@@ -7233,7 +7233,7 @@ msgctxt ""
"par_id3153068\n"
"help.text"
msgid "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155362\">Icon Print Page Preview</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155362\">Εικονίδιο προεπισκόπησης εκτύπωσης σελίδας</alt></image>"
#. veMRC
#: 00000401.xhp
@@ -7251,7 +7251,7 @@ msgctxt ""
"par_id3155869\n"
"help.text"
msgid "Choose <menuitem>File - Exit %PRODUCTNAME</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Έξοδος %PRODUCTNAME</menuitem>."
#. DjhX3
#: 00000401.xhp
@@ -7260,7 +7260,7 @@ msgctxt ""
"par_id3152382\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Q</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Q</keycode>"
#. BeZ8e
#: 00000401.xhp
@@ -7269,7 +7269,7 @@ msgctxt ""
"par_id3149328\n"
"help.text"
msgid "<variable id=\"neuglobal\">Choose <menuitem>File - New - Master Document</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"neuglobal\">Επιλέξτε <menuitem>Αρχείο - Νέο - Κύριο έγγραφο</menuitem>.</variable>"
#. CGcrC
#: 00000401.xhp
@@ -7278,7 +7278,7 @@ msgctxt ""
"par_id3145827\n"
"help.text"
msgid "Choose <menuitem>File - Open - File type</menuitem>, select <emph>Text CSV</emph>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο - Άνοιγμα - Τύπος αρχείου</menuitem>, επιλέξτε <emph>Κείμενο CSV</emph>."
#. LCAQJ
#: 00000401.xhp
@@ -7287,7 +7287,7 @@ msgctxt ""
"par_id6071352\n"
"help.text"
msgid "Choose <menuitem>Data - Text to Columns</menuitem> (Calc)."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Δεδομένα - Κείμενο σε στήλες</menuitem> (Calc)."
#. 9uDDp
#: 00000401.xhp
@@ -7296,7 +7296,7 @@ msgctxt ""
"par_id3148608\n"
"help.text"
msgid "<variable id=\"epsexport\">Choose <menuitem>File - Export</menuitem>, if EPS is selected as file type, this dialog opens automatically.</variable>"
-msgstr ""
+msgstr "<variable id=\"epsexport\">Επιλέξτε <menuitem>Αρχείο Εξαγωγή</menuitem>, εάν το EPS είναι επιλεγμένο ως τύπος αρχείου, αυτός ο διάλογος ανοίγει αυτόματα.</variable>"
#. ADXoF
#: 00000401.xhp
@@ -7305,7 +7305,7 @@ msgctxt ""
"par_id3150107\n"
"help.text"
msgid "<variable id=\"pbmppmpgm\">Choose <menuitem>File - Export</menuitem>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically.</variable>"
-msgstr ""
+msgstr "<variable id=\"pbmppmpgm\">Επιλέξτε <menuitem>Αρχείο - Εξαγωγή</menuitem>, εάν είναι επιλεγμένο PBM, PPM ή PGM ως τύπος αρχείου, ο διάλογος ανοίγει αυτόματα.</variable>"
#. eu9SA
#: 00000401.xhp
@@ -7341,7 +7341,7 @@ msgctxt ""
"par_id3146936\n"
"help.text"
msgid "Choose <menuitem>View - Zoom - Zoom</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Εστίαση - Εστίαση</menuitem>."
#. 2CFCv
#: 00000403.xhp
@@ -7359,7 +7359,7 @@ msgctxt ""
"par_id3152895\n"
"help.text"
msgid "Click or right-click the field on the <emph>Status</emph> bar."
-msgstr ""
+msgstr "Πατήστε ή δεξιοπατήστε το πεδίο στη γραμμή <emph>Κατάσταση</emph>."
#. juxFA
#: 00000403.xhp
@@ -7368,7 +7368,7 @@ msgctxt ""
"par_id3156183\n"
"help.text"
msgid "Choose <menuitem>View - Toolbars</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Γραμμές εργαλείων</menuitem>."
#. aAbgp
#: 00000403.xhp
@@ -7377,7 +7377,7 @@ msgctxt ""
"par_id3166445\n"
"help.text"
msgid "<variable id=\"funktion\">Choose <menuitem>View - Toolbars - Standard</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"funktion\">Επιλέξτε <menuitem>Προβολή - Γραμμές εργαλείων - Τυπικό</menuitem>.</variable>"
#. G2jzx
#: 00000403.xhp
@@ -7386,7 +7386,7 @@ msgctxt ""
"par_id3153748\n"
"help.text"
msgid "<variable id=\"werkzeug\">Choose <menuitem>View - Toolbars - Tools</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"werkzeug\">Επιλέξτε <menuitem>Προβολή - Γραμμές εργαλείων - Εργαλεία</menuitem>.</variable>"
#. Ts9yE
#: 00000403.xhp
@@ -7395,7 +7395,7 @@ msgctxt ""
"par_id3154317\n"
"help.text"
msgid "<variable id=\"task\">Choose <menuitem>View - Status Bar</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"task\">Επιλέξτε <menuitem>Προβολή - Γραμμή κατάστασης</menuitem>.</variable>"
#. 9VGHF
#: 00000403.xhp
diff --git a/source/el/helpcontent2/source/text/shared/01.po b/source/el/helpcontent2/source/text/shared/01.po
index fad74f6e844..82ce5a46738 100644
--- a/source/el/helpcontent2/source/text/shared/01.po
+++ b/source/el/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-26 21:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/el/>\n"
@@ -8000,14 +8000,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "Ο χαρακτήρας αναπαριστάνεται από τον οκταψήφιο δεκαεξαδικό κώδικα Unicode (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "Για συγκεκριμένες γραμματοσειρές συμβόλων ο κωδικός Unicode για ειδικούς χαρακτήρες μπορεί να εξαρτάται από την χρησιμοποιούμενη γραμματοσειρά. Οι κωδικοί Unicode μπορούν να προβληθούν επιλέγοντας <menuitem>Εισαγωγή - Ειδικός χαρακτήρας</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
diff --git a/source/el/helpcontent2/source/text/shared/05.po b/source/el/helpcontent2/source/text/shared/05.po
index 67e86d3e9cf..80e866a1d3d 100644
--- a/source/el/helpcontent2/source/text/shared/05.po
+++ b/source/el/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-07-27 11:28+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textshared05/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1540892992.000000\n"
#. WPTtk
@@ -1283,7 +1283,7 @@ msgctxt ""
"par_id131592238966436\n"
"help.text"
msgid "The page does not exist and must be created."
-msgstr ""
+msgstr "Η σελίδα δεν υπάρχει και πρέπει να δημιουργηθεί."
#. wBHiJ
#: err_html.xhp
diff --git a/source/el/helpcontent2/source/text/shared/06.po b/source/el/helpcontent2/source/text/shared/06.po
index 89606a505cc..d64ac98f79b 100644
--- a/source/el/helpcontent2/source/text/shared/06.po
+++ b/source/el/helpcontent2/source/text/shared/06.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-26 21:35+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textshared06/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1540893036.000000\n"
#. EUcrc
@@ -203,7 +203,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Calc Screenshots"
-msgstr ""
+msgstr "Στιγμιότυπα Calc"
#. QaaKZ
#: sc_screenshots.xhp
@@ -302,7 +302,7 @@ msgctxt ""
"par_id521601001943409\n"
"help.text"
msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Σελίδα καρτέλας Πλάγια και γωνιακή ακτίνα</alt></image>"
#. agtWk
#: simpress_screenshots.xhp
diff --git a/source/el/helpcontent2/source/text/shared/autopi.po b/source/el/helpcontent2/source/text/shared/autopi.po
index b773a74e9bf..38e472cda72 100644
--- a/source/el/helpcontent2/source/text/shared/autopi.po
+++ b/source/el/helpcontent2/source/text/shared/autopi.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-07-28 14:35+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
+"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedautopi/el/>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1526451998.000000\n"
#. hCAzG
@@ -5729,7 +5729,7 @@ msgctxt ""
"hd_id3147089\n"
"help.text"
msgid "Email address"
-msgstr ""
+msgstr "Διεύθυνση ηλ. αλληλογραφίας"
#. Bm9Gp
#: 01110400.xhp
@@ -5738,7 +5738,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/emailEntry\">Specifies the email address.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/emailEntry\">Καθορίζει τη διεύθυνση ηλ. αλληλογραφίας.</ahelp>"
#. VhjgN
#: 01110400.xhp
diff --git a/source/el/helpcontent2/source/text/shared/explorer/database.po b/source/el/helpcontent2/source/text/shared/explorer/database.po
index da29fba307c..ce62a2cf001 100644
--- a/source/el/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/el/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-10-26 21:35+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1548881222.000000\n"
#. fUPBC
@@ -2903,7 +2903,7 @@ msgctxt ""
"par_id3154860\n"
"help.text"
msgid "To run an SQL query for filtering data in the database, use the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design View</link>."
-msgstr ""
+msgstr "Για να εκτελέσετε ένα ερώτημα SQL φιλτραρίσματος δεδομένων στη βάση δεδομένων, χρησιμοποιήστε την <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Προβολή σχεδίασης ερωτήματος</link>."
#. Ck9G4
#: 11080000.xhp
@@ -7097,7 +7097,7 @@ msgctxt ""
"par_idN105F8\n"
"help.text"
msgid "Email Document"
-msgstr ""
+msgstr "Έγγραφο ηλ. αλληλογραφίας"
#. Qxg2W
#: menufile.xhp
@@ -7106,7 +7106,7 @@ msgctxt ""
"par_idN105FC\n"
"help.text"
msgid "Opens the default email application to send a new email. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body."
-msgstr ""
+msgstr "Ανοίγει την προεπιλεγμένη εφαρμογή ηλ. αλληλογραφίας για αποστολή νέας ηλ. αλληλογραφίας. Το τρέχον αρχείο βάσης δεδομένων προσαρτάται ως συνημμένο. Μπορείτε να εισάγετε το θέμα, τους παραλήπτες και το σώμα της αλληλογραφίας."
#. 9WihT
#: menufile.xhp
@@ -7115,7 +7115,7 @@ msgctxt ""
"par_idN105FF\n"
"help.text"
msgid "Report as Email"
-msgstr ""
+msgstr "Παραπομπή ως ηλ. αλληλογραφία"
#. XWAoV
#: menufile.xhp
@@ -7124,7 +7124,7 @@ msgctxt ""
"par_idN10603\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the default email application to send a new email. The selected report is appended as an attachment. You can enter the subject, the recipients and a mail body. A dynamic report is exported as a copy of the database contents at the time of export.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ανοίγει την προεπιλεγμένη εφαρμογή ηλ. αλληλογραφίας για να στείλετε μια νέα ηλ. αλληλογραφία. Η επιλεγμένη παραπομπή προσαρτάται ως συνημμένο. Μπορείτε να εισάγετε το θέμα, τους παραλήπτες και το σώμα της αλληλογραφίας. Μια δυναμική παραπομπή εξάγεται ως αντίγραφο των περιεχομένων της βάσης δεδομένων τη στιγμή της εξαγωγής.</ahelp>"
#. 9cSVg
#: menufile.xhp
diff --git a/source/el/helpcontent2/source/text/shared/guide.po b/source/el/helpcontent2/source/text/shared/guide.po
index fb4ba1058ee..e04fc487be4 100644
--- a/source/el/helpcontent2/source/text/shared/guide.po
+++ b/source/el/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-01 07:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/el/>\n"
@@ -98,6 +98,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Εργασία με το %PRODUCTNAME\">Εργασία με το <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3527,15 +3536,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Έγγραφο HTML"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3779,24 +3779,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "Κείμενο OpenDocument (απλό XML)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Έγγραφο κειμένου του OpenOffice.org 1.0"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Έγγραφο κειμένου του OpenOffice.org 1.0"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3806,24 +3788,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Έγγραφο κειμένου του OpenOffice.org 1.0"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Φορητή μορφή εγγράφου"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Φορητή μορφή εγγράφου"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3878,24 +3842,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "Έγγραφο T602"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Κείμενο"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Κείμενο"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5165,15 +5111,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "Φίλτρα για GRAPHICFILTER"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Ψηφιογραφία Windows"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5201,15 +5138,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD Interchange Format"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF - Βελτιωμένο μετα-αρχείο"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5219,15 +5147,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF - Βελτιωμένο μετα-αρχείο"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Encapsulated PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5237,15 +5156,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Encapsulated PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr "GIF - Ανταλλαγή γραφικών"
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5255,24 +5165,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr "GIF - Ανταλλαγή γραφικών"
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "κείμενο/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5291,24 +5183,6 @@ msgctxt ""
msgid "text/html"
msgstr "κείμενο/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5318,15 +5192,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET - Μετα-αρχείο OS/2"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5345,15 +5210,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - Μορφή αρχείου QuickTime"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5390,15 +5246,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr "PCD - Photo CD Base4"
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT - Mac Pict"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5417,15 +5264,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Portable Graymap"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5435,33 +5273,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Φορητά γραφικά δικτύου"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Φορητά γραφικά δικτύου"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Φορητά γραφικά δικτύου"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5471,15 +5282,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Φορητά γραφικά δικτύου"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Φορητό Pixelmap"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5498,15 +5300,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Sun Raster Image"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5516,33 +5309,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Image"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5570,15 +5336,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά Draw"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr "SVM - StarView Meta File"
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5597,15 +5354,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF - Μορφή αρχείων εικόνων με ετικέτες"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5615,15 +5363,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Μορφή αρχείων εικόνων με ετικέτες"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Μετα-αρχείο Windows"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5642,15 +5381,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitmap"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10718,149 +10448,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Εργαλείο αναφοράς σφαλμάτων"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Εργαλείο αναφοράς σφαλμάτων</bookmark_value> <bookmark_value>αναφορές;αναφορές σφαλμάτων</bookmark_value> <bookmark_value>αναφορές κατάρρευσης</bookmark_value> <bookmark_value>ενεργοποίηση;Εργαλείο αναφοράς σφαλμάτων</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Εργαλείο αναφοράς σφαλμάτων\">Εργαλείο αναφοράς σφαλμάτων</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Το εργαλείο αναφοράς σφαλμάτων ξεκινάει αυτόματα όταν το πρόγραμμα καταρρέει."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Το εργαλείο αναφοράς σφαλμάτων συλλέγει όλες τις απαραίτητες πληροφορίες που μπορούν να βοηθήσουν τους developers του προγράμματος για να βελτιώσουν τον κώδικα, έτσι ώστε σε μελλοντικές εκδόσεις το σφάλμα να αποφευχθεί όσο είναι δυνατόν. Σας παρακαλούμε να μας βοηθήσετε να βελτιώσουμε το λογισμικό και στείλτε την αναφορά σφάλματος που δημιουργήθηκε."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Εκκίνηση του εργαλείου αναφοράς σφαλμάτων"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Με τα περισσότερα κολλήματα εφαρμογών το Εργαλείο Αναφοράς Σφαλμάτων ξεκινάει αυτόματα."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Συμπλήρωση της αναφοράς"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Στο κύριο παράθυρο διαλόγου του εργαλείου αναφοράς σφαλμάτων, μπορείτε να εισάγετε μερικές πρόσθετες πληροφορίες που μπορεί να βοηθήσουν τους προγραμματιστές να εντοπίσουν το λάθος. Για παράδειγμα, αν το λάθος εμφανίζεται μόνο μετά από αλλαγή στο δικό σας περιβάλλον hardware ή λογισμικού, ή όταν κάνετε κλικ σε ένα πεδίο επιλογής, παρακαλείστε να περιλαμβάνετε την πληροφορία."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Αποστολή της αναφοράς σφάλματος"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Το εργαλείο αναφοράς σφαλμάτων χρησιμοποιεί το πρωτόκολλο HTTP PUT / SOAP για να αποστείλει τα δεδομένα αναφοράς. Προαιρετικά μπορείτε να βάλετε και ένα κείμενο περιγραφής του προβλήματος που θα μας βοηθήσει να αναγνωρίσουμε τις συνθήκες κατάρρευσης του προγράμματος. Τότε κάντε κλικ στο <emph>Αποστολή</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Δεν θα πάρετε απάντηση στην αναφορά σφάλματός που στείλατε. Αν θέλετε υποστήριξη, παρακαλούμε να επισκεφθείτε το <link href=\"text/shared/main0108.xhp\">φόρουμ υποστήριξης</link> στο Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Τι δεδομένα αποστέλλονται;"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Η αναφορά σφάλματος συνίσταται από πολλά αρχεία. Το βασικό αρχείο περιέχει πληροφορίες σχετικά με τον τύπο του σφάλματος, όνομα και έκδοση λειτουργικού συστήματος, χρήση μνήμης, και την περιγραφή που δώσατε. Μπορείτε να κάνετε κλικ στο <emph>Προβολή αναφοράς</emph> στο κύριο παράθυρο διαλόγου του εργαλείου για να προβάλετε τι θα σταλεί στο βασικό αρχείο."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Επιπλέον, συλλέγονται σχετικά περιεχόμενα μνήμης και στοίβες από ίχνη από μερικά στάνταρντ εργαλεία συστήματος (\"dbhhelp.dll\" σε συστήματα Windows, \"pstack\" σε συστήματα UNIX). Και αυτές οι πληροφορίες θα σταλούν επίσης."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22076,32 +21797,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Να θυμάστε ότι πρέπει να δημιουργείτε ξεχωριστή εργασία εκτύπωσης για κάθε φαξ, διαφορετικά, ο πρώτος παραλήπτης θα λάβει όλα τα φαξ. Στο παράθυρο διαλόγου <emph>Εργαλεία - Συγχώνευση αλληλογραφίας</emph> ενεργοποιήστε την επιλογή <emph>Εκτυπωτής</emph> και, στη συνέχεια, το πεδίο σήμανσης <emph>Μεμονωμένες εργασίες εκτύπωσης</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Αλλαγή προεπιλεγμένων προτύπων"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>τροποποίηση, βλέπε αλλαγή</bookmark_value><bookmark_value>αλλαγή, βλέπε επίσης επεξεργασία και αντικατάσταση</bookmark_value><bookmark_value>προεπιλεγμένα πρότυπα; αλλαγή</bookmark_value><bookmark_value>προεπιλογές;έγγραφα</bookmark_value><bookmark_value>προσαρμοσμένα πρότυπα</bookmark_value><bookmark_value>ενημέρωση; πρότυπα</bookmark_value><bookmark_value>επεξεργασία;πρότυπα</bookmark_value><bookmark_value>πρότυπα;επεξεργασία και αποθήκευση</bookmark_value><bookmark_value>αποθήκευση;πρότυπα</bookmark_value><bookmark_value>επαναφορά;πρότυπα</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Αλλαγή προεπιλεγμένων προτύπων\">Αλλαγή προεπιλεγμένων προτύπων</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22112,113 +21833,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Όταν ανοίγετε ένα νέο έγγραφο με την επιλογή <emph>Αρχείο - Δημιουργία</emph>, εμφανίζεται ένα κενό έγγραφο βασισμένο σε πρότυπο του $[officename]. Μπορείτε να επεξεργαστείτε, να τροποποιήσετε ή να αντικαταστήσετε το πρότυπο αυτό, ώστε το νέο έγγραφο να περιέχει τις προσαρμοσμένες τεχνοτροπίες ή άλλα περιεχόμενα."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Τροποποίηση προεπιλεγμένων προτύπων"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Κατ' αρχήν, ανοίξτε είτε ένα υπάρχον πρότυπο $[officename] και επεξεργαστείτε το, ή ανοίξτε ένα νέο έγγραφο και επεξεργαστείτε το όσο χρειάζεται για να δημιουργήσετε το επιθυμητό πρότυπο."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Μπορείτε να ορίσετε ένα πρότυπο για κάθε λειτουργική μονάδα του $[officename]. Ακολουθεί περιγραφή της διαδικασίας για έγγραφα κειμένου."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Αποθηκεύστε το έγγραφο επιλέγοντας <emph>Αρχείο - Πρότυπα - Αποθήκευση ως πρότυπο</emph> και αποθηκεύστε το έγγραφο στην κατηγορία <emph>Τα πρότυπά μου</emph>."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Επιλέξτε <emph>Αρχείο - Δημιουργία - Πρότυπα</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Διπλοπατήστε <emph>Τα πρότυπά μου</emph> στον κατάλογο. Θα δείτε τα πρότυπα του χρήστη στον κατάλογο του χρήστη που ορίζεται στο <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Προτιμήσεις</emph></caseinline><defaultinline><emph>Εργαλεία - Επιλογές</emph></defaultinline></switchinline><emph> -%PRODUCTNAME - Διαδρομές</emph>. Επιλέξτε το πρότυπο που μόλις αποθηκεύσατε."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Επιλέξτε <emph>Ορισμός ως προεπιλογή</emph>. Την επόμενη φορά που θα ανοίξετε ένα νέο έγγραφο κειμένου, το νέο έγγραφο θα βασίζεται στο νέο προεπιλεγμένο πρότυπο."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Χρήση προσαρμοσμένων προτύπων"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Υπάρχουν πολλοί τρόποι για να κάνετε πιο εύκολη τη δουλειά σας χρησιμοποιώντας τα δικά σας προσαρμοσμένα πρότυπα."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Πρότυπα στο φάκελο προτύπων"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Μπορείτε να αποθηκεύσετε ένα νέο πρότυπο με <emph>Αρχείο - Πρότυπα - Αποθήκευση ως πρότυπο</emph> ή επιλέγοντας τύπο αρχείου \"Πρότυπο\" σε οποιοδήποτε διάλογο αποθήκευσης. Αποθηκεύστε το πρότυπο στον κατάλογο χρήστη που ορίζεται στο <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Προτιμήσεις</emph></caseinline><defaultinline><emph>Εργαλεία-Επιλογές</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Διαδρομές</emph> για να μπορείτε να προσπελάζετε το πρότυπο μέσα από τον διάλογο <emph>Αρχείο - Νέο - Πρότυπα</emph>."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Για άνοιγμα του προτύπου για επεξεργασία, διαλέξτε <emph>Αρχείο - Δημιουργία - Πρότυπα</emph>, επιλέξτε το πρότυπο και πατήστε το κουμπί <emph>Επεξεργασία</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24254,14 +24101,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Δείτε <link href=\"text/swriter/guide/templates_styles.xhp\">Πρότυπα και τεχνοτροπίες</link> για σχετικές πληροφορίες."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Δείτε <link href=\"text/swriter/guide/template_create.xhp\">Δημιουργία προτύπου εγγράφου</link> για σχετικές πληροφορίες."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/el/helpcontent2/source/text/shared/optionen.po b/source/el/helpcontent2/source/text/shared/optionen.po
index 39afd6bf062..04caeb3296a 100644
--- a/source/el/helpcontent2/source/text/shared/optionen.po
+++ b/source/el/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-25 17:00+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/el/>\n"
@@ -3428,14 +3428,14 @@ msgctxt ""
msgid "View"
msgstr "Προβολή"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>προβολές; προεπιλογές</bookmark_value> <bookmark_value>προεπιλογές; προβολές</bookmark_value> <bookmark_value>ρυθμίσεις; προβολές</bookmark_value> <bookmark_value>εικονίδια; μεγέθη</bookmark_value> <bookmark_value>εικονίδια; τεχνοτροπίες</bookmark_value> <bookmark_value>WYSIWYG στους καταλόγους γραμματοσειρών</bookmark_value> <bookmark_value>προεπισκοπήσεις; κατάλογοι γραμματοσειρών</bookmark_value> <bookmark_value>κατάλογοι γραμματοσειρών</bookmark_value> <bookmark_value>πλαίσιο ονόματος γραμματοσειράς</bookmark_value> <bookmark_value>ποντίκι; τοποθέτηση</bookmark_value> <bookmark_value>πρόχειρο; πρόχειρο επιλογής</bookmark_value> <bookmark_value>πρόχειρο επιλογής</bookmark_value> <bookmark_value>OpenGL;ρυθμίσεις</bookmark_value> <bookmark_value>OpenGL;μαύρος κατάλογος</bookmark_value> <bookmark_value>OpenGL;λευκός κατάλογος</bookmark_value> <bookmark_value>OpenGL;έξοδος γραφικών</bookmark_value> <bookmark_value>γραμμή σημειωματαρίου;μέγεθος εικονιδίου</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3455,59 +3455,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Καθορίζει τις επιλογές προβολής."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Διεπαφή χρήστη"
+msgid "Icon style"
+msgstr "Τεχνοτροπία εικονιδίου"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Μέγεθος εικονιδίου γραμμής εργαλείων"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Καθορίζει την τεχνοτροπία εικονιδίου για τα εικονίδια στις γραμμές εργαλείων και στους διαλόγους.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Καθορίζει το μέγεθος της εμφάνισης των εικονιδίων της γραμμής εργαλείων.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">Η επιλογή <emph>Αυτόματα</emph> χρησιμοποιεί τις ρυθμίσεις μεγέθους γραμματοσειράς για τα μενού του λειτουργικού σας συστήματος.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Μέγεθος εικονιδίου πλευρικής στήλης"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Καθορίζει το μέγεθος εμφάνισης των εικονιδίων της πλευρικής στήλης.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Μέγεθος εικονιδίων γραμμής σημειωματαρίου"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3518,50 +3518,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Καθορίζει το μέγεθος εμφάνισης των εικονιδίων της <link href=\"text/shared/01/notebook_bar.xhp\">γραμμής σημειωματαρίου</link>.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Τεχνοτροπία εικονιδίου"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Καθορίζει την τεχνοτροπία εικονιδίου για τα εικονίδια στις γραμμές εργαλείων και στους διαλόγους.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Καθορίζει το μέγεθος εμφάνισης των εικονιδίων της πλευρικής στήλης.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Εξομάλυνση γραμματοσειράς οθόνης"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Επιλέξτε για να εξομαλύνετε την εμφάνιση του κειμένου στην οθόνη.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Εισάγετε το μικρότερο μέγεθος γραμματοσειράς στο οποίο θα εφαρμόζεται η εξομάλυνση.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Εμφανίζει τα εικονίδια δίπλα στα αντίστοιχα στοιχεία μενού. Επιλέξτε από \"Αυτόματα\", \"Απόκρυψη\" και \"Εμφάνιση\". Το \"Αυτόματα\" εμφανίζει τα εικονίδια ανάλογα με τις ρυθμίσεις του συστήματος και των θεμάτων.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3572,14 +3590,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Ποντίκι"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Τοποθέτηση ποντικιού"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3590,14 +3608,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Καθορίζει εάν και πώς ο δείκτης του ποντικιού θα τοποθετηθεί σε πρόσφατα ανοιγμένους διαλόγους.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Μεσαίο πλήκτρο ποντικιού"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3734,23 +3752,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "Η τελευταία σημειωμένη επιλογή είναι το περιεχόμενο του προχείρου επιλογής."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Εξαγωγή γραφικών"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Πιέστε Shift+Ctrl+R ώστε να επαναφέρετε ή να ανανεώσετε την προβολή του παρόντος εγγράφου.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Πιέστε Shift+Ctrl+R ώστε να επαναφέρετε ή να ανανεώσετε την προβολή του παρόντος εγγράφου.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3788,68 +3806,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Αν υποστηρίζεται από το σύστημα σας, μπορείτε να ενεργοποιήσετε και να απενεργοποιήσετε την εξομάλυνση των γραφικών. Με ενεργή την εξομάλυνση, η εμφάνιση των περισσοτέρων γραφικών αντικειμένων φαίνεται ομαλότερη και με λιγότερες παράσιτα.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Χρήση του OpenGL για κάθε απόδοση (στην επανεκκίνηση)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Χρήση της βιβλιοθήκης υψηλής απόδοσης Open Graphics (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) για να αποδώσετε όλα τα οπτικά στοιχεία της εφαρμογής, που συμπεριλαμβάνουν παράθυρα, μενού, γραμμές εργαλείων και εικονίδια.</ahelp> Το OpenGL χρησιμοποιεί τη συσκευή γραφικών του υπολογιστή για να επιταχύνει την απόδοση των γραφικών. Εάν η συσκευή είναι στον μαύρο κατάλογο (δείτε παρακάτω), αυτή η επιλογή δεν θα είναι ενεργή."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Εξαναγκασμός του OpenGL ακόμα κι αν είναι στον μαύρο κατάλογο (στην επανεκκίνηση)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Εξαναγκάζει τη χρησιμοποίηση του OpenGL ακόμα κι αν η συσκευή γραφικών είναι στον μαύρο κατάλογο.</ahelp> Μια συσκευή είναι στον μαύρο κατάλογο όταν είναι με σφάλμα ή μπορεί να αποδώσει τα γραφικά με φτωχή ποιότητα."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Μενού"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Εικονίδια σε μενού"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Εμφανίζει τα εικονίδια δίπλα στα αντίστοιχα στοιχεία μενού. Επιλέξτε από \"Αυτόματα\", \"Απόκρυψη\" και \"Εμφάνιση\". Το \"Αυτόματα\" εμφανίζει τα εικονίδια ανάλογα με τις ρυθμίσεις του συστήματος και των θεμάτων.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3878,6 +3887,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Εμφανίζει τα ονόματα των επιλέξιμων γραμματοσειρών στην αντίστοιχη γραμματοσειρά, π.χ., γραμματοσειρές στο πλαίσιο γραμματοσειρών στη γραμμή <emph>Μορφοποίηση</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Εξομάλυνση γραμματοσειράς οθόνης"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Επιλέξτε για να εξομαλύνετε την εμφάνιση του κειμένου στην οθόνη.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Εισάγετε το μικρότερο μέγεθος γραμματοσειράς στο οποίο θα εφαρμόζεται η εξομάλυνση.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/simpress.po b/source/el/helpcontent2/source/text/simpress.po
index 9c382d1ffd6..4c1969124ec 100644
--- a/source/el/helpcontent2/source/text/simpress.po
+++ b/source/el/helpcontent2/source/text/simpress.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-06-29 11:28+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558008035.000000\n"
#. 2Va4w
@@ -1589,7 +1589,7 @@ msgctxt ""
"hd_id3149499\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Object and Shape</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Αντικείμενο και σχήμα</link>"
#. XrW2e
#: main_format.xhp
diff --git a/source/el/helpcontent2/source/text/simpress/00.po b/source/el/helpcontent2/source/text/simpress/00.po
index 622188709b9..063e8d35678 100644
--- a/source/el/helpcontent2/source/text/simpress/00.po
+++ b/source/el/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:43+0100\n"
-"PO-Revision-Date: 2020-03-05 16:15+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress00/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558008671.000000\n"
#. sqmGT
@@ -410,7 +410,7 @@ msgctxt ""
"par_id3151264\n"
"help.text"
msgid "Choose <emph>View - Master Slide</emph>"
-msgstr ""
+msgstr "Επιλέξτε <emph>Προβολή - Κύρια διαφάνεια</emph>"
#. DxBby
#: 00000403.xhp
@@ -1400,7 +1400,7 @@ msgctxt ""
"par_id3155530\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <menuitem>Slide - Slide Properties</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Επιλέξτε <menuitem>Διαφάνεια - Ιδιότητες διαφάνειας</menuitem>…</variable>"
#. FRMtM
#: slide_menu.xhp
@@ -1409,7 +1409,7 @@ msgctxt ""
"par_id3145386\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <menuitem>Slide - Slide Properties</menuitem> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Επιλέξτε <menuitem>Διαφάνεια - Ιδιότητες διαφάνειας</menuitem> και έπειτα πατήστε την καρτέλα <emph>Σελίδα</emph>…</variable>"
#. DTpAq
#: slide_menu.xhp
@@ -1418,7 +1418,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <menuitem>Slide - Slide Properties</menuitem> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Επιλέξτε <menuitem>Διαφάνεια - Ιδιότητες διαφάνειας</menuitem> και έπειτα πατήστε την καρτέλα <emph>Παρασκήνιο</emph>…</variable>"
#. y5oEX
#: slide_menu.xhp
@@ -1427,7 +1427,7 @@ msgctxt ""
"par_id3155266\n"
"help.text"
msgid "<variable id=\"adnsei\">Choose <menuitem>Slide - Slide Layout</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"adnsei\">Επιλέξτε <menuitem>Διαφάνεια - Διάταξη διαφάνειας</menuitem>…</variable>"
#. j5KeJ
#: slide_menu.xhp
@@ -1436,7 +1436,7 @@ msgctxt ""
"par_id3153012\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Slide - Change Slide Master</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Επιλέξτε <menuitem>Διαφάνεια - Αλλαγή κύριας διαφάνειας</menuitem>…</variable>"
#. Whnor
#: slide_menu.xhp
@@ -1445,7 +1445,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <menuitem>Slide - New Slide</menuitem>"
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Διαφάνεια - Νέα διαφάνεια</menuitem>"
#. 7tbCN
#: slide_menu.xhp
diff --git a/source/el/helpcontent2/source/text/simpress/02.po b/source/el/helpcontent2/source/text/simpress/02.po
index 9228c432690..465ffb97a47 100644
--- a/source/el/helpcontent2/source/text/simpress/02.po
+++ b/source/el/helpcontent2/source/text/simpress/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-03-26 21:16+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558008947.000000\n"
#. AiACn
@@ -5702,7 +5702,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Snap to Snap Guides"
-msgstr ""
+msgstr "Προσκόλληση στους οδηγούς προσκόλλησης"
#. DQ4DB
#: 13140000.xhp
@@ -5711,7 +5711,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Προσκόλληση στους οδηγούς προσκόλλησης</link>"
#. GXfRk
#: 13140000.xhp
@@ -5720,7 +5720,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Εικονίδιο</alt></image>"
#. wYSJV
#: 13140000.xhp
@@ -5729,7 +5729,7 @@ msgctxt ""
"par_id3154255\n"
"help.text"
msgid "Snap to Snap Guides"
-msgstr ""
+msgstr "Προσκόλληση στους οδηγούς προσκόλλησης"
#. oXWsX
#: 13150000.xhp
diff --git a/source/el/helpcontent2/source/text/smath.po b/source/el/helpcontent2/source/text/smath.po
index ee9aa9ff43c..2b56efd94ee 100644
--- a/source/el/helpcontent2/source/text/smath.po
+++ b/source/el/helpcontent2/source/text/smath.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:43+0100\n"
-"PO-Revision-Date: 2018-12-29 07:32+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath/el/>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1546068731.000000\n"
#. yKBT5
@@ -176,7 +176,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements pane with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><menuitem>View - Elements</menuitem></link>."
-msgstr ""
+msgstr "Ορίζει την κλίμακα εμφάνισης και καθορίζει ποια στοιχεία θέλετε να είναι ορατά. Οι περισσότερες από τις εντολές που μπορείτε να εισάγετε στο παράθυρο <emph>Εντολές</emph> μπορούν επίσης να προσπελαστούν μέσω πατήματος του ποντικιού , εάν έχετε ήδη ανοίξει το παράθυρο στοιχείων με <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><menuitem>Προβολή - Στοιχεία</menuitem></link>."
#. ZJSDS
#: main0103.xhp
diff --git a/source/el/helpcontent2/source/text/smath/01.po b/source/el/helpcontent2/source/text/smath/01.po
index c4b3f4f7554..727195959b5 100644
--- a/source/el/helpcontent2/source/text/smath/01.po
+++ b/source/el/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-07-05 09:08+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559036979.000000\n"
#. QmNGE
@@ -4613,7 +4613,7 @@ msgctxt ""
"par_id3145230\n"
"help.text"
msgid "For more information about formatting in %PRODUCTNAME Math, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link>."
-msgstr ""
+msgstr "Για περισσότερες πληροφορίες για τη μορφοποίηση στο %PRODUCTNAME Math, δείτε <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Αγκύλες και ομαδοποίηση</link>."
#. 5WAfz
#: 03090600.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/00.po b/source/el/helpcontent2/source/text/swriter/00.po
index 9da6e72d7ca..1fd11116f9c 100644
--- a/source/el/helpcontent2/source/text/swriter/00.po
+++ b/source/el/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-27 11:28+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter00/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1548755711.000000\n"
#. E9tti
@@ -401,7 +401,7 @@ msgctxt ""
"par_id3149502\n"
"help.text"
msgid "<variable id=\"lineal\">Choose <menuitem>View - Rulers - Rulers</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"lineal\">Επιλέξτε <menuitem>Προβολή - Χάρακες - Χάρακες</menuitem></variable>"
#. 6RRMA
#: 00000403.xhp
@@ -410,7 +410,7 @@ msgctxt ""
"par_id3148871\n"
"help.text"
msgid "<variable id=\"textbegrenzungen\">Choose <menuitem>View - Text Boundaries</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"textbegrenzungen\">Επιλέξτε <menuitem>Προβολή - Όρια κειμένου</menuitem> </variable>"
#. nnySY
#: 00000403.xhp
@@ -419,7 +419,7 @@ msgctxt ""
"par_id3153248\n"
"help.text"
msgid "Choose <menuitem>View - Field Shadings</menuitem>"
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Σκίαση πεδίου</menuitem>"
#. JRFUp
#: 00000403.xhp
@@ -428,7 +428,7 @@ msgctxt ""
"par_id3154763\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>"
#. wYngB
#: 00000403.xhp
@@ -437,7 +437,7 @@ msgctxt ""
"par_id3149052\n"
"help.text"
msgid "Choose <menuitem>View - Field Names</menuitem>"
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Ονόματα πεδίων</menuitem>"
#. krDbj
#: 00000403.xhp
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3151387\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F9</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F9</keycode>"
#. VgPmS
#: 00000403.xhp
@@ -455,7 +455,7 @@ msgctxt ""
"par_id3155625\n"
"help.text"
msgid "Choose <menuitem>View - Formatting Marks</menuitem>"
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Σημάδια μορφοποίησης</menuitem>"
#. ZPf6L
#: 00000403.xhp
@@ -464,7 +464,7 @@ msgctxt ""
"par_id3145823\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F10</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F10</keycode>"
#. jRY7j
#: 00000403.xhp
@@ -500,7 +500,7 @@ msgctxt ""
"par_id3149712\n"
"help.text"
msgid "Choose <menuitem>View - Web</menuitem>"
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Ιστός</menuitem>"
#. owBsk
#: 00000403.xhp
@@ -536,7 +536,7 @@ msgctxt ""
"par_id3151176\n"
"help.text"
msgid "Choose <menuitem>View - Normal</menuitem>"
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Κανονική</menuitem>"
#. xjXHF
#: 00000403.xhp
@@ -545,7 +545,7 @@ msgctxt ""
"par_id3149808\n"
"help.text"
msgid "<variable id=\"hidden_para\">Choose <menuitem>View - Hidden Paragraphs</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"hidden_para\">Επιλέξτε <menuitem>Προβολή - Κρυφές παράγραφοι</menuitem></variable>"
#. yDXA6
#: 00000404.xhp
@@ -572,7 +572,7 @@ msgctxt ""
"par_id3149130\n"
"help.text"
msgid "<variable id=\"ManualBreak\">Choose <menuitem>Insert - More Breaks - Manual Break</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"ManualBreak\">Επιλέξτε <menuitem>Εισαγωγή - Περισσότερες αλλαγές - Χειροκίνητη αλλαγή</menuitem></variable>"
#. qv3kV
#: 00000404.xhp
@@ -581,7 +581,7 @@ msgctxt ""
"par_id281601655468613\n"
"help.text"
msgid "<variable id=\"morebreaks\">Choose <menuitem>Insert - More Breaks</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"morebreaks\">Επιλέξτε <menuitem>Εισαγωγή - Περισσότερες αλλαγές</menuitem></variable>"
#. HX3xL
#: 00000404.xhp
@@ -824,7 +824,7 @@ msgctxt ""
"par_id3154197\n"
"help.text"
msgid "<variable id=\"sectionindents\">Choose <menuitem>Insert > Section > Indents</menuitem> tab or choose <menuitem>Format > Sections</menuitem> - <widget>Options</widget> button - <emph>Indents</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"sectionindents\">Επιλέξτε την καρτέλα <menuitem>Εισαγωγή - Ενότητα - Εσοχές</menuitem> ή επιλέξτε <menuitem>Μορφή - Ενότητες</menuitem> - πλήκτρο <widget>Επιλογές</widget> - καρτέλα <emph>Εσοχές</emph></variable>"
#. oCG8Q
#: 00000404.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"par_id651578069976376\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>). Right-click any paragraph style. Choose <menuitem>New - Condition</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Τεχνοτροπίες</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>). Δεξιοπατήστε οποιαδήποτε τεχνοτροπία παραγράφου. Επιλέξτε την καρτέλα <menuitem>Νέα - Συνθήκη</menuitem>."
#. EtKWE
#: 00000405.xhp
@@ -1526,7 +1526,7 @@ msgctxt ""
"par_id51579866880596\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>"
-msgstr ""
+msgstr "Πατήστε <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>"
#. Bkgcd
#: 00000405.xhp
@@ -1562,7 +1562,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Page Styles - open context menu for selected style - <emph>New/Modify</emph>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Τεχνοτροπίες</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - επιλέξτε τεχνοτροπίες σελίδας - ανοίξτε το μενού περιβάλλοντος για την επιλεγμένη τεχνοτροπία - <emph>Νέα/Τροποποίηση</emph>."
#. JW9yE
#: 00000405.xhp
@@ -1616,7 +1616,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - <emph>Page Styles</emph> - open context menu for selected page style - <menuitem>Modify/New - Columns</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Τεχνοτροπίες</menuitem> - <emph>Τεχνοτροπίες σελίδας</emph> - ανοίξτε το μενού περιβάλλοντος για την επιλεγμένη τεχνοτροπία σελίδας καρτέλα - <menuitem>Τροποποίηση/Νέα - Στήλες</menuitem>."
#. 9sMo7
#: 00000405.xhp
@@ -1643,7 +1643,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <menuitem>Insert - Section - Columns</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Εισαγωγή - Ενότητα - Στήλες</menuitem>."
#. ZCfVD
#: 00000405.xhp
@@ -1652,7 +1652,7 @@ msgctxt ""
"par_id461604680991423\n"
"help.text"
msgid "Choose <menuitem>Format - Section - </menuitem><widget>Options</widget> button - <menuitem>Columns</menuitem> tab."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Ενότητα - </menuitem> πλήκτρο <widget>Επιλογές</widget> - καρτέλα <menuitem>Στήλες</menuitem>."
#. Gdf8J
#: 00000405.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/01.po b/source/el/helpcontent2/source/text/swriter/01.po
index 326d0c8b9bf..c1b33167eed 100644
--- a/source/el/helpcontent2/source/text/swriter/01.po
+++ b/source/el/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-10 16:35+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1558008619.000000\n"
@@ -690,7 +690,7 @@ msgctxt ""
"hd_id3151177\n"
"help.text"
msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
-msgstr ""
+msgstr "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Πλοηγητής</link></variable>"
#. uXgCi
#: 02110000.xhp
@@ -708,7 +708,7 @@ msgctxt ""
"par_id3154475\n"
"help.text"
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
-msgstr ""
+msgstr "Για να ανοίξετε την πλοήγηση, επιλέξτε <menuitem>Προβολή - πλοήγηση</menuitem> (<keycode>F5</keycode>). Για να μετακινήσετε τον πλοηγητή, σύρτε τη γραμμή τίτλου του. Για να προσαρτήσετε τον Πλοηγητή, σύρτε τη γραμμή τίτλου του στα αριστερά, δεξιά ή στο κάτω άκρο του χώρου εργασίας. Για να αποπροσαρτήσετε τον Πλοηγητή, κρατήστε πατημένο το πλήκτρο <keycode>Ctrl</keycode> και διπλοπατήστε σε μια γκρίζα περιοχή του πλοηγητή."
#. FqB3h
#: 02110000.xhp
@@ -717,7 +717,7 @@ msgctxt ""
"par_id3149490\n"
"help.text"
msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
-msgstr ""
+msgstr "Πατήστε το σύμβολο συν (<widget>+</widget>) (ή βέλος) δίπλα σε μια κατηγορία στον πλοηγητή για να προβάλετε τα στοιχεία στην κατηγορία. Για να προβάλετε τον αριθμό των στοιχείων σε μια κατηγορία, αφήστε τον δείκτη του ποντικιού σας πάνω από την κατηγορία στον πλοηγητή. Για να μεταβείτε σε ένα στοιχείο στο έγγραφο, διπλοπατήστε το στοιχείο στον πλοηγητή."
#. WD2Zz
#: 02110000.xhp
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3149106\n"
"help.text"
msgid "To jump to the next or previous item in a document, use the <emph>Navigate by</emph> box to select the item category, and then click the up or down arrows."
-msgstr ""
+msgstr "Για να μεταβείτε στο επόμενο ή στο προηγούμενο στοιχείο σε έγγραφο, χρησιμοποιήστε το πλαίσιο <emph>Πλοήγηση κατά</emph> για να επιλέξετε την κατηγορία στοιχείου και έπειτα πατήστε το πάνω ή κάτω βέλος."
#. 87cKG
#: 02110000.xhp
@@ -735,7 +735,7 @@ msgctxt ""
"hd_id321603114930016\n"
"help.text"
msgid "Navigate By"
-msgstr ""
+msgstr "Πλοήγηση κατά"
#. rBGnd
#: 02110000.xhp
@@ -744,7 +744,7 @@ msgctxt ""
"par_id171603114951991\n"
"help.text"
msgid "Use selection box to choose which type of item should be navigated, when using the Previous and Next buttons."
-msgstr ""
+msgstr "Χρησιμοποιήστε το πλαίσιο επιλογής για να επιλέξετε με ποιον τύπο στοιχείου πρέπει να πλοηγηθείτε, κατά τη χρήση των πλήκτρων προηγούμενο και επόμενο."
#. GVCyP
#: 02110000.xhp
@@ -762,7 +762,7 @@ msgctxt ""
"par_id3148784\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Μεταβαίνει στο προηγούμενο στοιχείο στο έγγραφο. Για να καθορίσετε τον τύπο του στοιχείου προς μετάβαση, πατήστε το εικονίδιο <emph>Πλοηγητής</emph> και έπειτα πατήστε μια κατηγορία στοιχείου - π.χ., \"Εικόνες (Images)\".</ahelp> Μεταβείτε στο προηγούμενο στοιχείο στο έγγραφο, όπως ορίζεται στο <emph>πλοήγηση κατά</emph>."
#. LH5bG
#: 02110000.xhp
@@ -771,7 +771,7 @@ msgctxt ""
"par_id3154616\n"
"help.text"
msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Εικονίδιο προηγούμενου αντικειμένου</alt></image>"
#. z3HC5
#: 02110000.xhp
@@ -780,7 +780,7 @@ msgctxt ""
"par_id3150659\n"
"help.text"
msgid "Previous Item"
-msgstr ""
+msgstr "Προηγούμενο στοιχείο"
#. fBDbi
#: 02110000.xhp
@@ -798,7 +798,7 @@ msgctxt ""
"par_id3154028\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Μεταβαίνει στο επόμενο στοιχείο στο έγγραφο. Για να καθορίσετε τον τύπο του στοιχείου προς μετάβαση, πατήστε το εικονίδιο <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Πλοηγητής</emph></link> και έπειτα πατήστε σε μια κατηγορία στοιχείου - π.χ., \"Εικόνες (Images)\".</ahelp> Μεταβείτε στο επόμενο στοιχείο στο έγγραφο, όπως ορίζεται στο <emph>Πλοήγηση κατά</emph>."
#. pHVYb
#: 02110000.xhp
@@ -807,7 +807,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Εικονίδιο επόμενου αντικειμένου</alt></image>"
#. xyGWM
#: 02110000.xhp
@@ -816,7 +816,7 @@ msgctxt ""
"par_id3155359\n"
"help.text"
msgid "Next Item"
-msgstr ""
+msgstr "Επόμενο στοιχείο"
#. EdFsn
#: 02110000.xhp
@@ -834,7 +834,7 @@ msgctxt ""
"par_id3155548\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/numericfield\">Type the number of the page that you want to jump to, and then press Enter. Use the spin buttons to navigate.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/numericfield\">Πληκτρολογήστε τον αριθμό της σελίδας στην οποία θέλετε να μεταβείτε και έπειτα πατήστε Enter. Χρησιμοποιήστε τα κουμπιά αυξομείωσης για πλοήγηση.</ahelp>"
#. w7aQ7
#: 02110000.xhp
@@ -861,7 +861,7 @@ msgctxt ""
"par_id471603110016087\n"
"help.text"
msgid "Context menus use a selection of commands found on this help page. The commands in a context menu change, depending on which category or item is selected."
-msgstr ""
+msgstr "Τα μενού περιβάλλοντος χρησιμοποιούν μια επιλογή εντολών που βρίσκεται σε αυτήν τη σελίδα βοήθειας. Οι εντολές σε μενού περιβάλλοντος αλλάζουν, ανάλογα με το ποια κατηγορία ή στοιχείο επιλέγεται."
#. wjRi9
#: 02110000.xhp
@@ -888,7 +888,7 @@ msgctxt ""
"par_id531603287134620\n"
"help.text"
msgid "Icon"
-msgstr ""
+msgstr "Εικονίδιο"
#. FpEuq
#: 02110000.xhp
@@ -897,7 +897,7 @@ msgctxt ""
"par_id911603287134620\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Κατηγορία"
#. Ja23j
#: 02110000.xhp
@@ -906,7 +906,7 @@ msgctxt ""
"par_id31603287134620\n"
"help.text"
msgid "Context Menu"
-msgstr ""
+msgstr "Mενού περιβάλλοντος"
#. JiJpY
#: 02110000.xhp
@@ -915,7 +915,7 @@ msgctxt ""
"par_id721603290925895\n"
"help.text"
msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Εικονίδιο επικεφαλίδων</alt></image>"
#. KF8gH
#: 02110000.xhp
@@ -924,7 +924,7 @@ msgctxt ""
"par_id581603287134620\n"
"help.text"
msgid "Headings"
-msgstr ""
+msgstr "Επικεφαλίδες"
#. xFGwj
#: 02110000.xhp
@@ -933,7 +933,7 @@ msgctxt ""
"par_id431603287134620\n"
"help.text"
msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
-msgstr ""
+msgstr "Σύμπτυξη/Ανάπτυξη όλων, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Αποστολή διάρθρωσης στο πρόχειρο</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Ορατότητα περιεχομένου διάρθρωσης</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Παρακολούθηση διάρθρωσης</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Επίπεδο διάρθρωσης</link>"
#. uH7Av
#: 02110000.xhp
@@ -942,7 +942,7 @@ msgctxt ""
"par_id151603291732283\n"
"help.text"
msgid "Heading item"
-msgstr ""
+msgstr "Στοιχείο επικεφαλίδας"
#. fVaAR
#: 02110000.xhp
@@ -951,7 +951,7 @@ msgctxt ""
"par_id611603291783875\n"
"help.text"
msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
-msgstr ""
+msgstr "Σύμπτυξη/Ανάπτυξη όλων, Μετάβαση σε, Επιλογή, Διαγραφή, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Προβιβασμός κεφαλαίου</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Υποβιβασμός κεφαλαίου</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Προβιβασμός επιπέδου</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">υποβιβασμός επιπέδου</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Ορατότητα περιεχομένου διάρθρωσης</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Παρακολούθηση διάρθρωσης</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Επίπεδο διάρθρωσης</link>"
#. bdbZB
#: 02110000.xhp
@@ -960,7 +960,7 @@ msgctxt ""
"par_id721603287623090\n"
"help.text"
msgid "<image src=\"cmd/sc_inserttable.svg\" id=\"img_id301603287623090\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603287623090\">Tables Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_inserttable.svg\" id=\"img_id301603287623090\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603287623090\">Εικονίδιο πινάκων</alt></image>"
#. jAnQW
#: 02110000.xhp
@@ -969,7 +969,7 @@ msgctxt ""
"par_id611603290378376\n"
"help.text"
msgid "Tables"
-msgstr ""
+msgstr "Πίνακες"
#. hiFCt
#: 02110000.xhp
@@ -978,7 +978,7 @@ msgctxt ""
"par_id531603530756147\n"
"help.text"
msgid "Table items"
-msgstr ""
+msgstr "Στοιχεία πινάκων"
#. Kj4pw
#: 02110000.xhp
@@ -987,7 +987,7 @@ msgctxt ""
"par_id291603290382271\n"
"help.text"
msgid "Go to, Select, Edit, Delete, Rename"
-msgstr ""
+msgstr "Μετάβαση σε, Επιλογή, Επεξεργασία, Διαγραφή, Μετονομασία"
#. raARd
#: 02110000.xhp
@@ -996,7 +996,7 @@ msgctxt ""
"par_id771603291076318\n"
"help.text"
msgid "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Frames icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Εικονίδιο πλαισίων</alt></image>"
#. HakR3
#: 02110000.xhp
@@ -1005,7 +1005,7 @@ msgctxt ""
"par_id191603290368002\n"
"help.text"
msgid "Frames"
-msgstr ""
+msgstr "Πλαίσια"
#. qDEB2
#: 02110000.xhp
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id801603532799021\n"
"help.text"
msgid "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Images Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Εικονίδιο εικόνων</alt></image>"
#. 4Zuo5
#: 02110000.xhp
@@ -1023,7 +1023,7 @@ msgctxt ""
"par_id581603532733359\n"
"help.text"
msgid "Images"
-msgstr ""
+msgstr "Εικόνες"
#. s8NFi
#: 02110000.xhp
@@ -1032,7 +1032,7 @@ msgctxt ""
"par_id8016035394621021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">OLE Objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Εικονίδιο αντικειμένων OLE</alt></image>"
#. DF7be
#: 02110000.xhp
@@ -1041,7 +1041,7 @@ msgctxt ""
"par_id581603532723769\n"
"help.text"
msgid "OLE Objects"
-msgstr ""
+msgstr "Αντικείμενα OLE"
#. gY9hD
#: 02110000.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"par_id801636822799021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Bookmarks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Εικονίδιο σελιδοδεικτών</alt></image>"
#. FABsh
#: 02110000.xhp
@@ -1059,7 +1059,7 @@ msgctxt ""
"par_id581603532733956\n"
"help.text"
msgid "Bookmarks"
-msgstr ""
+msgstr "Σελιδοδείκτες"
#. Vk58Q
#: 02110000.xhp
@@ -1068,7 +1068,7 @@ msgctxt ""
"par_id411603531074035\n"
"help.text"
msgid "Frame, Image, OLE Objects, Bookmark items"
-msgstr ""
+msgstr "Πλαίσιο, Εικόνα, Αντικείμενα OLE, Στοιχεία σελιδοδείκτη"
#. ZqgVB
#: 02110000.xhp
@@ -1077,7 +1077,7 @@ msgctxt ""
"par_id611603290373033\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Μετάβαση σε, Επεξεργασία, Διαγραφή, Μετονομασία"
#. wRDwv
#: 02110000.xhp
@@ -1086,7 +1086,7 @@ msgctxt ""
"par_id741603570764762\n"
"help.text"
msgid "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Sections Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Εικονίδιο ενοτήτων</alt></image>"
#. SLmBP
#: 02110000.xhp
@@ -1095,7 +1095,7 @@ msgctxt ""
"par_id621603570764762\n"
"help.text"
msgid "Sections"
-msgstr ""
+msgstr "Ενότητες"
#. EQFyT
#: 02110000.xhp
@@ -1104,7 +1104,7 @@ msgctxt ""
"par_id111603570764762\n"
"help.text"
msgid "Section items"
-msgstr ""
+msgstr "Στοιχεία ενοτήτων"
#. ZFCBK
#: 02110000.xhp
@@ -1113,7 +1113,7 @@ msgctxt ""
"par_id291694280382271\n"
"help.text"
msgid "Go to, Select, Edit, Rename"
-msgstr ""
+msgstr "Μετάβαση σε, Επιλογή, Επεξεργασία, Μετονομασία"
#. RTDr9
#: 02110000.xhp
@@ -1122,7 +1122,7 @@ msgctxt ""
"par_id461603570542532\n"
"help.text"
msgid "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Hyperlinks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Εικονίδιο υπερσυνδέσμων</alt></image>"
#. yve5A
#: 02110000.xhp
@@ -1131,7 +1131,7 @@ msgctxt ""
"par_id801603570516284\n"
"help.text"
msgid "Hyperlinks"
-msgstr ""
+msgstr "Υπερσύνδεσμοι"
#. YCGxB
#: 02110000.xhp
@@ -1140,7 +1140,7 @@ msgctxt ""
"par_id81603570505590\n"
"help.text"
msgid "Hyperlink items"
-msgstr ""
+msgstr "Στοιχεία υπερσυνδέσμου"
#. RT7Pi
#: 02110000.xhp
@@ -1149,7 +1149,7 @@ msgctxt ""
"par_id961603570483539\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Μετάβαση σε, Επεξεργασία, Διαγραφή, Μετονομασία"
#. MmCsC
#: 02110000.xhp
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id901603571492300\n"
"help.text"
msgid "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">References Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">Εικονίδιο παραπομπών</alt></image>"
#. iDyLx
#: 02110000.xhp
@@ -1167,7 +1167,7 @@ msgctxt ""
"par_id91603571492300\n"
"help.text"
msgid "References"
-msgstr ""
+msgstr "Παραπομπές"
#. AdAzM
#: 02110000.xhp
@@ -1176,7 +1176,7 @@ msgctxt ""
"par_id121603573019324\n"
"help.text"
msgid "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Indexes Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Εικονίδιο ευρετηρίων</alt></image>"
#. DJW2V
#: 02110000.xhp
@@ -1185,7 +1185,7 @@ msgctxt ""
"par_id591603573019324\n"
"help.text"
msgid "Indexes"
-msgstr ""
+msgstr "Ευρετήρια"
#. SpEBB
#: 02110000.xhp
@@ -1194,7 +1194,7 @@ msgctxt ""
"par_id911603571492300\n"
"help.text"
msgid "References, Indexes items"
-msgstr ""
+msgstr "Παραπομπές, Στοιχεία ευρετηρίων"
#. JJh5o
#: 02110000.xhp
@@ -1203,7 +1203,7 @@ msgctxt ""
"par_id29160996782271\n"
"help.text"
msgid "Go to"
-msgstr ""
+msgstr "Μετάβαση σε"
#. DY5cm
#: 02110000.xhp
@@ -1212,7 +1212,7 @@ msgctxt ""
"par_id741603572161942\n"
"help.text"
msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Comments Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Εικονίδιο σχολίων</alt></image>"
#. BRGDd
#: 02110000.xhp
@@ -1221,7 +1221,7 @@ msgctxt ""
"par_id41603572161942\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Σχόλια"
#. XJRCd
#: 02110000.xhp
@@ -1230,7 +1230,7 @@ msgctxt ""
"par_id711603572473016\n"
"help.text"
msgid "Show All, Hide All, Delete All"
-msgstr ""
+msgstr "Εμφάνιση όλων, Απόκρυψη όλων, Διαγραφή όλων"
#. WMdde
#: 02110000.xhp
@@ -1239,7 +1239,7 @@ msgctxt ""
"par_id751603572161943\n"
"help.text"
msgid "Comments items"
-msgstr ""
+msgstr "Στοιχεία σχολίων"
#. VzhmF
#: 02110000.xhp
@@ -1248,7 +1248,7 @@ msgctxt ""
"par_id291604453382271\n"
"help.text"
msgid "Go to, Edit, Delete"
-msgstr ""
+msgstr "Μετάβαση σε, Επεξεργασία, Διαγραφή"
#. E5dpv
#: 02110000.xhp
@@ -1257,7 +1257,7 @@ msgctxt ""
"par_id951603571856944\n"
"help.text"
msgid "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Drawing objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Εικονίδιο αντικειμένων σχεδίασης</alt></image>"
#. apAFN
#: 02110000.xhp
@@ -1266,7 +1266,7 @@ msgctxt ""
"par_id351603571856944\n"
"help.text"
msgid "Drawing objects"
-msgstr ""
+msgstr "Αντικείμενα σχεδίασης"
#. PnfNJ
#: 02110000.xhp
@@ -1275,7 +1275,7 @@ msgctxt ""
"par_id461603571856945\n"
"help.text"
msgid "Drawing objects items"
-msgstr ""
+msgstr "Στοιχεία αντικειμένων σχεδίασης"
#. DDAda
#: 02110000.xhp
@@ -1284,7 +1284,7 @@ msgctxt ""
"par_id291603347382271\n"
"help.text"
msgid "Go to, Delete, Rename"
-msgstr ""
+msgstr "Μετάβαση σε, Διαγραφή, Μετονομασία"
#. vGwzZ
#: 02110000.xhp
@@ -1293,7 +1293,7 @@ msgctxt ""
"par_id781603291428300\n"
"help.text"
msgid "All"
-msgstr ""
+msgstr "Όλα"
#. AChDj
#: 02110000.xhp
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id711603291482148\n"
"help.text"
msgid "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Drag Mode\">Drag Mode</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"display\">Display</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Drag Mode\">Κατάσταση μεταφοράς</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"display\">Εμφάνιση</link>"
#. SMFgG
#: 02110000.xhp
@@ -1509,7 +1509,7 @@ msgctxt ""
"hd_id3150507\n"
"help.text"
msgid "<variable id=\"outlinelvl\">Outline Level</variable>"
-msgstr ""
+msgstr "<variable id=\"outlinelvl\">Επίπεδο διάρθρωσης</variable>"
#. rjaS7
#: 02110000.xhp
@@ -1599,7 +1599,7 @@ msgctxt ""
"hd_id3151338\n"
"help.text"
msgid "<variable id=\"promotelevel\">Promote Level</variable>"
-msgstr ""
+msgstr "<variable id=\"promotelevel\">Προβιβασμός επιπέδου</variable>"
#. KzmQ5
#: 02110000.xhp
@@ -1617,7 +1617,7 @@ msgctxt ""
"par_id3155414\n"
"help.text"
msgid "<image id=\"img_id3155420\" src=\"sw/res/sc20172.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155420\">Icon Promote level</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155420\" src=\"sw/res/sc20172.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155420\">Εικονίδιο προβιβασμού επιπέδου</alt></image>"
#. z6Cg8
#: 02110000.xhp
@@ -1635,7 +1635,7 @@ msgctxt ""
"hd_id3153714\n"
"help.text"
msgid "<variable id=\"demotelevel\">Demote Level</variable>"
-msgstr ""
+msgstr "<variable id=\"demotelevel\">Υποβιβασμός επιπέδου</variable>"
#. LKaFU
#: 02110000.xhp
@@ -1653,7 +1653,7 @@ msgctxt ""
"par_id3148414\n"
"help.text"
msgid "<image id=\"img_id3148420\" src=\"sw/res/sc20173.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148420\">Icon Demote level</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148420\" src=\"sw/res/sc20173.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148420\">Εικονίδιο υποβιβασμού επιπέδου</alt></image>"
#. Ydmmz
#: 02110000.xhp
@@ -1671,7 +1671,7 @@ msgctxt ""
"hd_id3145571\n"
"help.text"
msgid "<variable id=\"promotechap\">Promote Chapter</variable>"
-msgstr ""
+msgstr "<variable id=\"promotechap\">Προβιβασμός κεφαλαίου</variable>"
#. CXMjY
#: 02110000.xhp
@@ -1689,7 +1689,7 @@ msgctxt ""
"par_id3153268\n"
"help.text"
msgid "<image id=\"img_id3153275\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153275\">Icon Chapter Up</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153275\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153275\">Εικονίδιο κεφαλαίου προς τα πάνω</alt></image>"
#. aTBif
#: 02110000.xhp
@@ -1707,7 +1707,7 @@ msgctxt ""
"hd_id3154424\n"
"help.text"
msgid "<variable id=\"demotechap\">Demote Chapter</variable>"
-msgstr ""
+msgstr "<variable id=\"demotechap\">Υποβιβασμός κεφαλαίου</variable>"
#. GFDsR
#: 02110000.xhp
@@ -1725,7 +1725,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "<image id=\"img_id3150828\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150828\">Icon Chapter down</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150828\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150828\">Εικονίδιο κεφαλαίου προς τα κάτω</alt></image>"
#. rYRtE
#: 02110000.xhp
@@ -1752,7 +1752,7 @@ msgctxt ""
"hd_id3154292\n"
"help.text"
msgid "<variable id=\"dragmode\">Drag Mode</variable>"
-msgstr ""
+msgstr "<variable id=\"dragmode\">Κατάσταση μεταφοράς</variable>"
#. G5FvJ
#: 02110000.xhp
@@ -1770,7 +1770,7 @@ msgctxt ""
"par_id3155120\n"
"help.text"
msgid "<image id=\"img_id3155126\" src=\"sw/res/sc20235.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155126\">Icon Drag mode</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155126\" src=\"sw/res/sc20235.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155126\">Εικονίδιο κατάστασης μεταφοράς</alt></image>"
#. zDXiV
#: 02110000.xhp
@@ -1842,7 +1842,7 @@ msgctxt ""
"hd_id3147340\n"
"help.text"
msgid "<variable id=\"display\">Open Documents</variable>"
-msgstr ""
+msgstr "<variable id=\"display\">Άνοιγμα εγγράφων</variable>"
#. rZmAa
#: 02110000.xhp
@@ -1869,7 +1869,7 @@ msgctxt ""
"hd_id541603882412689\n"
"help.text"
msgid "<variable id=\"outlinetracking\">Outline Tracking</variable>"
-msgstr ""
+msgstr "<variable id=\"outlinetracking\">Παρακολούθηση διάρθρωσης</variable>"
#. nrCtR
#: 02110000.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/02.po b/source/el/helpcontent2/source/text/swriter/02.po
index be6adf1088e..ce402e44f16 100644
--- a/source/el/helpcontent2/source/text/swriter/02.po
+++ b/source/el/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-03-03 11:15+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter02/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1513247844.000000\n"
#. SGjBV
@@ -1292,7 +1292,7 @@ msgctxt ""
"bm_id3149687\n"
"help.text"
msgid "<bookmark_value>formulas; in text documents</bookmark_value><bookmark_value>operators; in table formulas</bookmark_value><bookmark_value>statistical functions in tables</bookmark_value><bookmark_value>mathematical functions in tables</bookmark_value><bookmark_value>trigonometric functions in tables</bookmark_value><bookmark_value>pages;number of pages in table formulas</bookmark_value><bookmark_value>variables;document properties in table formulas</bookmark_value><bookmark_value>arithmetical operators in formulas</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>τύποι; σε έγγραφα κειμένου</bookmark_value><bookmark_value>τελεστές; σε τύπους πίνακα</bookmark_value><bookmark_value>στατιστικές συναρτήσεις σε πίνακες</bookmark_value><bookmark_value>μαθηματικές συναρτήσεις σε πίνακες</bookmark_value><bookmark_value>τριγωνομετρικές συναρτήσεις σε πίνακες</bookmark_value><bookmark_value>σελίδες;αριθμός σελίδων σε τύπους πίνακα</bookmark_value><bookmark_value>μεταβλητές;ιδιότητες εγγράφου σε τύπους πίνακα</bookmark_value><bookmark_value>αριθμητικοί τελεστές σε τύπους</bookmark_value>"
#. piUZw
#: 14020000.xhp
@@ -1328,7 +1328,7 @@ msgctxt ""
"par_id621599564033048\n"
"help.text"
msgid "With the cursor in a table, press <keycode>F2</keycode>"
-msgstr ""
+msgstr "Με τον δρομέα σε πίνακα, πατήστε <keycode>F2</keycode>"
#. NdBeD
#: 14020000.xhp
@@ -1337,7 +1337,7 @@ msgctxt ""
"par_id101599562003431\n"
"help.text"
msgid "In the Table toolbar, press the <emph>Formula</emph> icon."
-msgstr ""
+msgstr "Στη γραμμή εργαλείων πίνακα, πατήστε το εικονίδιο <emph>Τύπος</emph>."
#. cgzyx
#: 14020000.xhp
@@ -1346,7 +1346,7 @@ msgctxt ""
"par_id3155142\n"
"help.text"
msgid "<image id=\"img_id3155148\" src=\"sw/res/sc20556.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155148\">Formula icon in Table toolbar</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155148\" src=\"sw/res/sc20556.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155148\">Εικονίδιο τύπου σε γραμμή εργαλείων πίνακα</alt></image>"
#. DbZyc
#: 14020000.xhp
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id221599495805480\n"
"help.text"
msgid "Operation"
-msgstr ""
+msgstr "Πράξη"
#. 7KcQ9
#: 14020000.xhp
@@ -1391,7 +1391,7 @@ msgctxt ""
"par_id641599495805481\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. QywKU
#: 14020000.xhp
@@ -1400,7 +1400,7 @@ msgctxt ""
"par_id121599495851064\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Παράδειγμα"
#. 6VYWD
#: 14020000.xhp
@@ -1544,7 +1544,7 @@ msgctxt ""
"par_id121599495989098\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Συνάρτηση"
#. T7Ybo
#: 14020000.xhp
@@ -1553,7 +1553,7 @@ msgctxt ""
"par_id901599495989100\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. 2fE5r
#: 14020000.xhp
@@ -1562,7 +1562,7 @@ msgctxt ""
"par_id501599496006870\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Παράδειγμα"
#. KwSwL
#: 14020000.xhp
@@ -1724,7 +1724,7 @@ msgctxt ""
"par_id61599496064739\n"
"help.text"
msgid "Operator"
-msgstr ""
+msgstr "Τελεστής"
#. HCUeF
#: 14020000.xhp
@@ -1733,7 +1733,7 @@ msgctxt ""
"par_id611599496064740\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. CNZiw
#: 14020000.xhp
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id461599496082741\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Παράδειγμα"
#. kN6pM
#: 14020000.xhp
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_id541599496194035\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Συνάρτηση"
#. fLyDG
#: 14020000.xhp
@@ -2111,7 +2111,7 @@ msgctxt ""
"par_id481599496194036\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. z9BBL
#: 14020000.xhp
@@ -2120,7 +2120,7 @@ msgctxt ""
"par_id331599524563749\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Παράδειγμα"
#. SimgP
#: 14020000.xhp
@@ -2210,7 +2210,7 @@ msgctxt ""
"par_id21599557699262\n"
"help.text"
msgid "Product"
-msgstr ""
+msgstr "Γινόμενο"
#. 5caRN
#: 14020000.xhp
@@ -2219,7 +2219,7 @@ msgctxt ""
"par_id671599563830630\n"
"help.text"
msgid "Calculates the product of the selected cells."
-msgstr ""
+msgstr "Υπολογίζει το γινόμενο των επιλεγμένων κελιών."
#. bwMRb
#: 14020000.xhp
@@ -2228,7 +2228,7 @@ msgctxt ""
"par_id631599557734781\n"
"help.text"
msgid "Example: PRODUCT <A2:C2> displays the product of the values in cells A2 to C2"
-msgstr ""
+msgstr "Παράδειγμα: PRODUCT <A2:C2> εμφανίζει το γινόμενο των τιμών στα κελιά A2 έως C2"
#. DXVgk
#: 14020000.xhp
@@ -2237,7 +2237,7 @@ msgctxt ""
"par_id31599557699262\n"
"help.text"
msgid "Count"
-msgstr ""
+msgstr "Πλήθος"
#. 53YC3
#: 14020000.xhp
@@ -2246,7 +2246,7 @@ msgctxt ""
"par_id331599557734781\n"
"help.text"
msgid "Counts the number of non empty cells."
-msgstr ""
+msgstr "μετρά τον αριθμό των μη κενών κελιών."
#. zj2px
#: 14020000.xhp
@@ -2255,7 +2255,7 @@ msgctxt ""
"par_id141599563739504\n"
"help.text"
msgid "Example: COUNT <A2:C2> displays the number of non empty cells in A2 to C2."
-msgstr ""
+msgstr "Παράδειγμα: COUNT <A2:C2> εμφανίζει τον αριθμό των μη κενών κελιών στα A2 έως C2."
#. SJ9rR
#: 14020000.xhp
@@ -2264,7 +2264,7 @@ msgctxt ""
"hd_id3153200\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Συναρτήσεις"
#. gRWF7
#: 14020000.xhp
@@ -2273,7 +2273,7 @@ msgctxt ""
"par_id3153226\n"
"help.text"
msgid "<ahelp hid=\".\">You can choose from the following functions:</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Μπορείτε να επιλέξετε από τις ακόλουθες συναρτήσεις:</ahelp>"
#. CYmFE
#: 14020000.xhp
@@ -2282,7 +2282,7 @@ msgctxt ""
"par_id341599524600306\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Συνάρτηση"
#. zUhbC
#: 14020000.xhp
@@ -2291,7 +2291,7 @@ msgctxt ""
"par_id521599524600307\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. S6FE9
#: 14020000.xhp
@@ -2300,7 +2300,7 @@ msgctxt ""
"par_id831599524616362\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Παράδειγμα"
#. HmrvU
#: 14020000.xhp
@@ -2471,7 +2471,7 @@ msgctxt ""
"par_id591599557967519\n"
"help.text"
msgid "Absolute value"
-msgstr ""
+msgstr "Απόλυτη τιμή"
#. 2tt8G
#: 14020000.xhp
@@ -2480,7 +2480,7 @@ msgctxt ""
"par_id211593557987787\n"
"help.text"
msgid "Returns the absolute value of the number."
-msgstr ""
+msgstr "Επιστρέφει την απόλυτη τιμή του αριθμού."
#. jYyUX
#: 14020000.xhp
@@ -2489,7 +2489,7 @@ msgctxt ""
"par_id301599563956612\n"
"help.text"
msgid "Example: ABS -34 returns 34"
-msgstr ""
+msgstr "Παράδειγμα: ABS -34 επιστρέφει 34"
#. zEe8j
#: 14020000.xhp
@@ -2498,7 +2498,7 @@ msgctxt ""
"par_id591599557963519\n"
"help.text"
msgid "Sign"
-msgstr ""
+msgstr "Πρόσημο"
#. 8Y984
#: 14020000.xhp
@@ -2507,7 +2507,7 @@ msgctxt ""
"par_id211599557987787\n"
"help.text"
msgid "Returns the algebraic sign of the number."
-msgstr ""
+msgstr "Επιστρέφει το αλγεβρικό πρόσημο του αριθμού."
#. wDJs9
#: 14020000.xhp
@@ -2516,7 +2516,7 @@ msgctxt ""
"par_id941599563922458\n"
"help.text"
msgid "Example: SIGN -23 returns -1"
-msgstr ""
+msgstr "Παράδειγμα: SIGN -23 επιστρέφει -1"
#. sHz7K
#: 14020000.xhp
@@ -2543,7 +2543,7 @@ msgctxt ""
"par_id901599524662588\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. vmA7Y
#: 14020000.xhp
@@ -2552,7 +2552,7 @@ msgctxt ""
"par_id741599524662589\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Περιγραφή"
#. Mehmy
#: 14020000.xhp
@@ -2633,7 +2633,7 @@ msgctxt ""
"par_id981599524696609\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Περιγραφή"
#. gnbPF
#: 14020000.xhp
@@ -2642,7 +2642,7 @@ msgctxt ""
"par_id101599524696610\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. FFwhP
#: 14020000.xhp
@@ -2651,7 +2651,7 @@ msgctxt ""
"par_id731599524730168\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Τιμή"
#. 7QQ8G
#: 14020000.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/guide.po b/source/el/helpcontent2/source/text/swriter/guide.po
index dee36e9422e..de4a80edbb4 100644
--- a/source/el/helpcontent2/source/text/swriter/guide.po
+++ b/source/el/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-07-25 17:00+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/el/>\n"
"Language: el\n"
@@ -1221,7 +1221,7 @@ msgctxt ""
"par_id3155390\n"
"help.text"
msgid "Choose <menuitem>Format - Character</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Χαρακτήρας</menuitem>."
#. vv3Ti
#: background.xhp
@@ -1230,7 +1230,7 @@ msgctxt ""
"par_id3153665\n"
"help.text"
msgid "Click the <emph>Highlighting</emph> tab, select the background color."
-msgstr ""
+msgstr "Πατήστε την καρτέλα <emph>Τονισμός</emph>, επιλέξτε το χρώμα παρασκηνίου."
#. tfUge
#: background.xhp
@@ -1266,7 +1266,7 @@ msgctxt ""
"par_id3151245\n"
"help.text"
msgid "On the <emph>Area</emph> tab page, select the background color or a background graphic."
-msgstr ""
+msgstr "Στην καρτέλα <emph>Περιοχή</emph>, επιλέξτε το χρώμα παρασκηνίου ή γραφικό παρασκηνίου."
#. k9Qm3
#: background.xhp
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3148664\n"
"help.text"
msgid "Choose <menuitem>Table - Properties</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Πίνακας - Ιδιότητες</menuitem>."
#. wLrJQ
#: background.xhp
@@ -2382,7 +2382,7 @@ msgctxt ""
"bm_id3149909\n"
"help.text"
msgid "<bookmark_value>calculating; in text</bookmark_value> <bookmark_value>formulas; calculating in text</bookmark_value> <bookmark_value>references;in Writer tables</bookmark_value> <bookmark_value>=;in Writer tables</bookmark_value> <bookmark_value>tables;starting cell with =</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>υπολογισμός; σε κείμενο</bookmark_value> <bookmark_value>τύποι; υπολογισμός σε κείμενο</bookmark_value> <bookmark_value>παραπομπές;σε πίνακες Writer</bookmark_value> <bookmark_value>=;σε πίνακες Writer</bookmark_value> <bookmark_value>πίνακες;έναρξη κελιού με =</bookmark_value>"
#. ArJvi
#: calculate.xhp
@@ -2445,7 +2445,7 @@ msgctxt ""
"hd_id971605353826552\n"
"help.text"
msgid "Cell Entries that Start with Equal Sign (<keycode>=</keycode>)"
-msgstr ""
+msgstr "Καταχωρίσεις κελιού που αρχίζουν με το σύμβολο ισότητας (<keycode>=</keycode>)"
#. hXyjD
#: calculate.xhp
@@ -2454,7 +2454,7 @@ msgctxt ""
"par_id981605353389582\n"
"help.text"
msgid "To make a table cell entry that starts with <keycode>=</keycode> sign, first enter a space, then the <keycode>=</keycode> sign, and then delete the space."
-msgstr ""
+msgstr "Για να κάνετε καταχώριση κελιού πίνακα που αρχίζει με το σύμβολο <keycode>=</keycode>, εισάγετε πρώτα ένα κενό, έπειτα το σύμβολο <keycode>=</keycode> και έπειτα διαγράψτε το κενό."
#. i3E8j
#: calculate_clipboard.xhp
@@ -4956,7 +4956,7 @@ msgctxt ""
"par_id3147294\n"
"help.text"
msgid "Email address"
-msgstr ""
+msgstr "Διεύθυνση ηλ. αλληλογραφίας"
#. eGMqy
#: fields_userdata.xhp
@@ -5964,7 +5964,7 @@ msgctxt ""
"par_id3150502\n"
"help.text"
msgid "To create a form letter, you need a text document that contains fields for address data, and an address database. Then you combine or merge the address data and the text document to either print the letters or send them by email."
-msgstr ""
+msgstr "Για να δημιουργήσετε φόρμα επιστολής, χρειάζεστε κείμενο εγγράφου που περιέχει πεδία για δεδομένα διεύθυνσης και μια βάση δεδομένων διευθύνσεων. Έπειτα, συνδυάζετε ή συγχωνεύετε τα δεδομένα και το έγγραφο κειμένου είτε για να εκτυπώσετε τις επιστολές ή να τις στείλετε με ηλ. διεύθυνση."
#. DYaLA
#: form_letters_main.xhp
@@ -5973,7 +5973,7 @@ msgctxt ""
"par_id0805200801132382\n"
"help.text"
msgid "If the document is in HTML format, any embedded or linked images will not be sent with the email."
-msgstr ""
+msgstr "Εάν το έγγραφο είναι σε μορφή HTML, οποιεσδήποτε ενσωματωμένες ή συνδεμένες εικόνες δεν θα αποσταλούν με το ηλ. μήνυμα."
#. AZu9p
#: form_letters_main.xhp
@@ -7134,7 +7134,7 @@ msgctxt ""
"hd_id3148856\n"
"help.text"
msgid "<variable id=\"hidden_text\"><link href=\"text/swriter/guide/hidden_text.xhp\" name=\"Hiding Text\">Hiding Text</link></variable>"
-msgstr ""
+msgstr "<variable id=\"hidden_text\"><link href=\"text/swriter/guide/hidden_text.xhp\" name=\"Hiding Text\">Απόκρυψη κειμένου</link></variable>"
#. W7T3G
#: hidden_text.xhp
@@ -7314,7 +7314,7 @@ msgctxt ""
"par_id3154872\n"
"help.text"
msgid "Choose <menuitem>Insert - Field - More Fields</menuitem> and click the <emph>Functions</emph> tab."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Εισαγωγή - Πεδίο - Περισσότερα πεδία</menuitem> και πατήστε την καρτέλα <emph>Συναρτήσεις</emph>."
#. pBHeU
#: hidden_text.xhp
@@ -7350,7 +7350,7 @@ msgctxt ""
"par_id3793450\n"
"help.text"
msgid "You must enable this feature by removing the check mark <emph>Hidden Paragraphs</emph> in the dialog <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <menuitem>%PRODUCTNAME Writer - View</menuitem>. When the check mark is set, you cannot hide any paragraph."
-msgstr ""
+msgstr "Πρέπει να ενεργοποιήσετε αυτό το γνώρισμα αφαιρώντας το σημάδι ελέγχου <emph>Κρυφές παράγραφοι</emph> στον διάλογο <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Προτιμήσεις</menuitem></caseinline><defaultinline><menuitem>Εργαλεία - Επιλογές</menuitem></defaultinline></switchinline> - <menuitem>%PRODUCTNAME Writer - Προβολή</menuitem>. Όταν το σημάδι ελέγχου οριστεί, δεν μπορείτε να αποκρύψετε καμία παράγραφο."
#. v2rEL
#: hidden_text.xhp
@@ -7377,7 +7377,7 @@ msgctxt ""
"par_id3153019\n"
"help.text"
msgid "Choose <menuitem>Insert - Section</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Εισαγωγή - Ενότητα</menuitem>."
#. jFn7h
#: hidden_text.xhp
@@ -12518,13 +12518,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12563,13 +12563,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12590,58 +12590,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12671,13 +12653,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16910,14 +16892,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Εάν δεν το καθορίσετε διαφορετικά, κάθε νέο έγγραφο κειμένου του $[officename] θα βασίζεται στο προεπιλεγμένο πρότυπο."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "Το $[officename] έχει έναν αριθμό <link href=\"text/swriter/01/05130000.xhp\" name=\"προκαθορισμένων προτύπων\">προκαθορισμένων προτύπων</link> που μπορείτε να χρησιμοποιήσετε για να δημιουργήσετε διαφορετικούς τύπους εγγράφων κειμένου, όπως επαγγελματικές επιστολές."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17270,14 +17252,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Για τον ορισμό της συμπεριφοράς του άμεσου δρομέα, επιλέξτε <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Προτιμήσεις</emph></caseinline><defaultinline><emph>Εργαλεία - Επιλογές</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Βοηθήματα μορφοποίησης</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Στη γραμμή <item type=\"menuitem\">Εργαλεία</item>, πατήστε στο εικονίδιο <item type=\"menuitem\">Άμεσος δρομέας</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Εικονίδιο</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17288,32 +17270,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Κάντε κλικ σε ελεύθερο χώρο στο έγγραφο κειμένου. Το σχήμα του δείκτη του ποντικιού αλλάζει για να αντανακλά τη στοίχιση που θα εφαρμοστεί στο κείμενο που θα πληκτρολογήσετε:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Εικονίδιο</alt></image> Στοίχιση αριστερά"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Εικονίδιο</alt></image> Στο κέντρο"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Εικονίδιο</alt></image> Στοίχιση δεξιά"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/librelogo.po b/source/el/helpcontent2/source/text/swriter/librelogo.po
index 5943290b34f..c2bb0966384 100644
--- a/source/el/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/el/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-03-04 14:15+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterlibrelogo/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1494914588.000000\n"
@@ -2274,7 +2274,7 @@ msgctxt ""
"par_2490\n"
"help.text"
msgid "; Python-like list generation<br/> PRINT LIST RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 3 ; print [3, 6, 9]<br/> <br/> FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]<br/> FORWARD i<br/> LEFT 90<br/> ]<br/>"
-msgstr ""
+msgstr "; γενιά καταλόγων παρόμοιων με Python<br/> PRINT LIST RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 3 ; print [3, 6, 9]<br/> <br/> FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]<br/> FORWARD i<br/> LEFT 90<br/> ]<br/>"
#. 2849D
#: LibreLogo.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/menu.po b/source/el/helpcontent2/source/text/swriter/menu.po
index 690a4888066..e031fbe4132 100644
--- a/source/el/helpcontent2/source/text/swriter/menu.po
+++ b/source/el/helpcontent2/source/text/swriter/menu.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2016-05-10 13:38+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textswritermenu/el/>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1462887506.000000\n"
#. tP5yN
@@ -176,7 +176,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "More Breaks (submenu)"
-msgstr ""
+msgstr "Περισσότερες αλλαγές (υπομενού)"
#. smw7v
#: submenu_more_breaks.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"hd_id651601651730204\n"
"help.text"
msgid "<link href=\"text/swriter/menu/submenu_more_breaks.xhp\" name=\"morebreaks\">More Breaks</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/menu/submenu_more_breaks.xhp\" name=\"morebreaks\">Περισσότερες αλλαγές</link>"
#. CLUjA
#: submenu_more_breaks.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"par_id911601651828340\n"
"help.text"
msgid "<ahelp hid=\".\">Submenu with additional row, column, and page breaks</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Υπομενού με πρόσθετη γραμμή, στήλη και αλλαγές σελίδας</ahelp>"
#. t534N
#: submenu_more_breaks.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"hd_id41601652439817\n"
"help.text"
msgid "Insert Manual Row Break"
-msgstr ""
+msgstr "Εισαγωγή χειροκίνητης αλλαγής γραμμής"
#. AEbaf
#: submenu_more_breaks.xhp
@@ -212,7 +212,7 @@ msgctxt ""
"par_id41601888013000\n"
"help.text"
msgid "<image src=\"cmd/lc_insertlinebreak.svg\" id=\"img_id281601888013000\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381601888013000\">Manual Row Break Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertlinebreak.svg\" id=\"img_id281601888013000\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381601888013000\">Εικονίδιο χειροκίνητης αλλαγής γραμμής</alt></image>"
#. QGmjC
#: submenu_more_breaks.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"bm_id651604885957774\n"
"help.text"
msgid "<bookmark_value>text documents; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>έγγραφα κειμένου; εισαγωγή αλλαγών στήλης</bookmark_value><bookmark_value>αλλαγές στήλης; εισαγωγή</bookmark_value><bookmark_value>εισαγωγή; χειροκίνητες αλλαγές στήλης</bookmark_value><bookmark_value>χειροκίνητες αλλαγές στήλης</bookmark_value>"
#. XBU67
#: submenu_more_breaks.xhp
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id531601652875225\n"
"help.text"
msgid "Insert Manual Column Break"
-msgstr ""
+msgstr "Εισαγωγή χειροκίνητης αλλαγής στήλης"
#. jBj9E
#: submenu_more_breaks.xhp
@@ -239,7 +239,7 @@ msgctxt ""
"par_id121601888786076\n"
"help.text"
msgid "<image src=\"cmd/lc_insertcolumnbreak.svg\" id=\"img_id851601888786076\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id881601888786076\">Manual Column Break Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertcolumnbreak.svg\" id=\"img_id851601888786076\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id881601888786076\">Εικονίδιο χειροκίνητης αλλαγής στήλης</alt></image>"
#. Mx6DD
#: submenu_more_breaks.xhp
@@ -248,7 +248,7 @@ msgctxt ""
"hd_id281601654787535\n"
"help.text"
msgid "<link href=\"text/swriter/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04010000.xhp\" name=\"Manual Break\">Χειροκίνητη αλλαγή</link>"
#. XACTx
#: submenu_more_breaks.xhp
@@ -257,4 +257,4 @@ msgctxt ""
"par_id621601889272427\n"
"help.text"
msgid "<image src=\"cmd/lc_insertbreak.svg\" id=\"img_id461601889272427\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id31601889272427\">Manual Break icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertbreak.svg\" id=\"img_id461601889272427\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id31601889272427\">Εικονίδιο χειροκίνητης αλλαγής</alt></image>"
diff --git a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
index e4530801b6c..7f103123711 100644
--- a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-29 14:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562571877.000000\n"
@@ -8027,15 +8027,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Απόκρυ~ψη διαφάνειας"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Κεί~μενο..."
+msgid "Te~xt Attributes..."
+msgstr "Γνωρίσματα ~κειμένου…"
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -8805,7 +8805,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page Properties..."
-msgstr ""
+msgstr "Ιδιότητες σελίδας…"
#. W6trc
#: DrawImpressCommands.xcu
@@ -8825,7 +8825,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide Properties..."
-msgstr ""
+msgstr "Ιδιότητες διαφάνειας…"
#. bhvTx
#: DrawImpressCommands.xcu
@@ -13575,7 +13575,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Κανονικό τρίγωνο"
#. BUJ28
#: Effects.xcu
@@ -25509,25 +25509,25 @@ msgctxt ""
msgid "~File"
msgstr "~Αρχείο"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Σ~τοίχιση"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Σ~τοίχιση"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -29887,7 +29887,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Εμφάνιση ~παρακολουθούμενων αλλαγών"
#. sMgCx
#: WriterCommands.xcu
@@ -31099,15 +31099,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Επιλογή έως το τέλος της παραγράφου"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Επιλογή έως την δεξιά λέξη"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/el/sc/messages.po b/source/el/sc/messages.po
index 81f9cb60c3f..a8c720cedc6 100644
--- a/source/el/sc/messages.po
+++ b/source/el/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-29 14:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562572014.000000\n"
#. kBovX
@@ -1469,7 +1469,7 @@ msgstr "Εισαγωγή Dif"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Προεπιλογή"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -14683,7 +14683,7 @@ msgstr "Το αποτέλεσμα της συνάρτησης αν ο έλεγχ
#: sc/inc/scfuncs.hrc:3606
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value."
-msgstr ""
+msgstr "Συγκρίνει την έκφραση ως προς τον κατάλογο των ζευγών τιμής/αποτελέσματος και επιστρέφει το αποτέλεσμα για την πρώτη τιμή που συμφωνεί με την έκφραση. Εάν η έκφραση δεν ταιριάζει με καμία τιμή, επιστρέφεται μια προεπιλεγμένη τιμή, εάν είναι τοποθετημένη ως τελευταίο στοιχείο σε κατάλογο παραμέτρων χωρίς τιμή."
#. PneN8
#: sc/inc/scfuncs.hrc:3607
@@ -14695,7 +14695,7 @@ msgstr "Παράσταση"
#: sc/inc/scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to be compared against value1…valueN (N ≤ 127)"
-msgstr ""
+msgstr "Τιμή για σύγκριση ως προς τιμή1…τιμήΝ (Ν≤127)"
#. 9wcvj
#: sc/inc/scfuncs.hrc:3609
@@ -14707,7 +14707,7 @@ msgstr "Τιμή"
#: sc/inc/scfuncs.hrc:3610
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to compare against expression. If no result is given, then value is returned as default result."
-msgstr ""
+msgstr "Τιμή σύγκρισης ως προς την παράσταση. Εάν δεν δίνεται αποτέλεσμα, τότε η τιμή επιστρέφεται ως προεπιλεγμένο αποτέλεσμα."
#. dsARv
#: sc/inc/scfuncs.hrc:3611
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "Α~ρχείο"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Ορισμός των περιγραμμάτων των επιλεγμένων κελιών."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Αύξηση εσοχής"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Μείωση εσοχής"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Α_ρχή"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Αρ~χή (Home)"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Πε_δίο"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Ε_ισαγωγή"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Εισαγωγή"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Στοίχιση αντικειμένου"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Διάταξη"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Διάταξη"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Στατιστικά"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Δεδομένα"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Δεδομένα"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Επι_θεώρηση"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Επι~θεώρηση"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Προ_βολή"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Προβολή"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ει_κόνα"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ει~κόνα"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Σ_χέδιο"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Σ~χέδιο"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Μετατροπή"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Α_ντικείμενο"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Α~ντικείμενο"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Μέσα"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Μέσα"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ε_κτύπωση"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Εκ~τύπωση"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Φόρμα"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Φόρμα"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Ε_πέκταση"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ε~πέκταση"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Εργαλεία"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Εργαλεία"
@@ -25214,13 +25214,13 @@ msgstr "Τονισμένο 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "Επικεφαλίδα 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "Επικεφαλίδα 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -28628,7 +28628,7 @@ msgstr "Ορίζει ότι, όταν κάνετε επικόλληση κελι
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
msgctxt "scgeneralpage|enter_paste_mode_cb"
msgid "Press Enter to paste and clear clipboard"
-msgstr ""
+msgstr "Πατήστε Enter για επικόλληση και καθαρισμό του προχείρου"
#. LFenu
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
@@ -29626,338 +29626,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Επίλυση"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr "Επα_ναφορά όλων"
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_Επιλογές..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Ανοίγει τον διάλογο Επιλογές επιλύτη."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Επίλυση"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Κελί _προορισμού"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Βελτιστοποίηση αποτελέσματος σε"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Αλλάζοντας κελιά"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Ε_λάχιστο"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Εισάγετε την περιοχή κελιών που μπορεί να αλλαχθεί."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Μέγιστο"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Εισάγετε την περιοχή κελιών που μπορεί να αλλαχθεί."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Εισάγετε την περιοχή κελιών που μπορεί να αλλαχθεί."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Εισάγετε ή πατήστε την αναφορά κελιού του κελιού προορισμού. Αυτό το πεδίο παίρνει τη διεύθυνση του κελιού του οποίου η τιμή πρόκειται να βελτιστοποιηθεί."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Τιμή του"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Εισάγετε την περιοχή κελιών που μπορεί να αλλαχθεί."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Εισάγετε την περιοχή κελιών που μπορεί να αλλαχθεί."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Αναφορά _κελιού"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Τελεστής"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Τ_ιμή"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Αναφορά κελιού"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Αναφορά κελιού"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Αναφορά κελιού"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Αναφορά κελιού"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Ακέραιος"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Δυαδικό"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Τελεστής"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Ακέραιος"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Δυαδικό"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Τελεστής"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Ακέραιος"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Δυαδικό"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Τελεστής"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Ακέραιος"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Δυαδικό"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Τελεστής"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Τιμή"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Τιμή"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Τιμή"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Τιμή"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Αφαίρεση"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Αφαίρεση"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Αφαίρεση"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Αφαίρεση"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Περιοριστικές συνθήκες"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Ανοίγει τον διάλογο επίλυσης. Μία επίλυση σας επιτρέπει να λύσετε μαθηματικά προβλήματα με πολλές άγνωστες μεταβλητές και ένα σύνολο περιορισμών των μεταβλητών με μεθόδους αναζήτησης στόχου."
diff --git a/source/el/sd/messages.po b/source/el/sd/messages.po
index f2f56fec88f..910eea11c25 100644
--- a/source/el/sd/messages.po
+++ b/source/el/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-14 19:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/el/>\n"
"Language: el\n"
@@ -2121,7 +2121,7 @@ msgstr "Εισαγωγή σελίδας"
#: sd/inc/strings.hrc:325
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
-msgstr ""
+msgstr "Ιδιότητες διαφάνειας"
#. pA7rP
#: sd/inc/strings.hrc:327
@@ -3359,7 +3359,7 @@ msgstr "Επισήμανση"
#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8
msgctxt "drawpagedialog|DrawPageDialog"
msgid "Page Properties"
-msgstr ""
+msgstr "Ιδιότητες σελίδας"
#. Py4db
#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136
@@ -3819,116 +3819,116 @@ msgstr "~Πίνακας"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Μετατροπή"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ει_κόνα"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ει~κόνα"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Σ_χέδιο"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Σ~χέδιο"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Α_ντικείμενο"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Α~ντικείμενο"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Μέσα"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Μέσα"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Φόρμα"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Φόρμα"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_Δ"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~Δ"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Κύριο"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Κύριο"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ε_πέκταση"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ε~πέκταση"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Εργαλεία"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ε~ργαλεία"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Μενού"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ε_πέκταση"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "~Αρχείο"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Α_ρχή"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Α_ρχή (Home)"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Πε_δίο"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Ε_ισαγωγή"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Ε~ισαγωγή"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Διάταξη"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Διάταξη"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Προβολή _διαφανειών"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Προβολή διαφανειών"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Επι_θεώρηση"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Επι~θεώρηση"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Προ_βολή"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Προβολή"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Πίνακας"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Πίνακας"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Μετατροπή"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ει_κόνα"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ει~κόνα"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Σ_χέδιο"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Σχέδιο"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Α_ντικείμενο"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Α~ντικείμενο"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Μέσα"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Μέσα"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Φόρμα"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Φόρμα"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Κύρια"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Κύριο"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "Προ_βολή"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Διάρ~θρωση"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_δ"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~δ"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ε_πέκταση"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ε~πέκταση"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Εργαλεία"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ε~ργαλεία"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Επεξεργασία περιγράμματος"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ε_πέκταση"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/el/sfx2/messages.po b/source/el/sfx2/messages.po
index b3bfcda3b09..533c5cc97a3 100644
--- a/source/el/sfx2/messages.po
+++ b/source/el/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-29 14:35+0000\n"
+"PO-Revision-Date: 2020-11-23 20:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559714005.000000\n"
#. bHbFE
@@ -4133,37 +4133,37 @@ msgstr "Διαγραφή..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Αγκίστρωση"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Απαγκίστρωση"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Κλείσιμο πλευρικής γραμμής"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Προσαρμογή"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Επαναφορά προεπιλογής"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Ρυθμίσεις πλευρικής γραμμής"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/el/starmath/messages.po b/source/el/starmath/messages.po
index b7719ea8672..24990ad966d 100644
--- a/source/el/starmath/messages.po
+++ b/source/el/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-07-24 04:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-26 16:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/el/>\n"
"Language: el\n"
@@ -507,7 +507,7 @@ msgstr "Διαίρεση (Κλάσμα)"
#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Κλάσμα"
#. 37Fw8
#: starmath/inc/strings.hrc:47
@@ -1401,13 +1401,13 @@ msgstr "Κόκκινο χρώμα"
#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Θαλασσί χρώμα"
#. 6zGQ2
#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Χρώμα φούξια"
#. em3aA
#: starmath/inc/strings.hrc:197
@@ -1473,79 +1473,79 @@ msgstr "Χρώμα RGB"
#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Χρώμα RGBA"
#. UxFDW
#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
-msgstr ""
+msgstr "Δεκαεξαδικό χρώμα"
#. MGdCv
#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
-msgstr ""
+msgstr "Κοραλλί χρώμα"
#. gPCCe
#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
-msgstr ""
+msgstr "Πορφυρό χρώμα"
#. oDRbR
#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
-msgstr ""
+msgstr "Σκούρο γαλάζιο χρώμα"
#. 4aCMu
#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
-msgstr ""
+msgstr "Ιώδες χρώμα"
#. Qivdb
#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
-msgstr ""
+msgstr "Πορτοκαλί χρώμα"
#. CVygm
#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
-msgstr ""
+msgstr "Βαθύ πορτοκαλί χρώμα"
#. LbfRK
#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
-msgstr ""
+msgstr "Πράσινο της θάλασσας"
#. DKivY
#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
-msgstr ""
+msgstr "Λουλακί χρώμα"
#. TZQzN
#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
-msgstr ""
+msgstr "Έντονο ροζ χρώμα"
#. GHgTB
#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
-msgstr ""
+msgstr "Ανοιχτό βιολετί χρώμα"
#. HQmw7
#: starmath/inc/strings.hrc:219
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
-msgstr ""
+msgstr "Έντονο λευκό"
#. A2GQ4
#: starmath/inc/strings.hrc:220
@@ -1695,7 +1695,7 @@ msgstr "Κάτω άγκιστρα (κλιμακώσιμα)"
#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Αξιολόγηση"
#. vfpuY
#: starmath/inc/strings.hrc:245
@@ -2169,7 +2169,7 @@ msgstr "Πυθαγόρειο θεώρημα"
#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Σειρά Τέιλορ"
#. MuqjR
#: starmath/inc/strings.hrc:325
@@ -2181,17 +2181,17 @@ msgstr "Κατανομή Γκάους"
#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Εξίσωση Όιλερ-Λαγκράνζ"
#. LnNNA
#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Θεμελιώδες θεώρημα λογισμού"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
@@ -2199,25 +2199,25 @@ msgstr ""
#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Ταυτότητα του Όιλερ"
#. m3ukF
#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Δεύτερος νόμος του Νεύτωνα"
#. ZmaUU
#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Γενική σχετικότητα"
#. ADBy9
#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Ειδική σχετικότητα"
#. u47dF
#: starmath/inc/strings.hrc:334
@@ -2265,13 +2265,13 @@ msgstr "κόκκινο"
#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "νερό"
#. GLy7q
#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "φούξια"
#. fZKES
#: starmath/inc/strings.hrc:343
@@ -2331,67 +2331,67 @@ msgstr "κίτρινο"
#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
-msgstr ""
+msgstr "κοραλί"
#. RZSh6
#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
-msgstr ""
+msgstr "πορφυρό"
#. QGibF
#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
-msgstr ""
+msgstr "μεσονύκτιο"
#. NKAkW
#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
-msgstr ""
+msgstr "ιώδες"
#. sF9zc
#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
-msgstr ""
+msgstr "πορτοκαλί"
#. CXMyK
#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
-msgstr ""
+msgstr "βαθύ πορτοκαλί"
#. Ak3yd
#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
-msgstr ""
+msgstr "Ανοιχτό βιολετί"
#. DLUaV
#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
-msgstr ""
+msgstr "έντονο λευκό"
#. QDTEU
#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
-msgstr ""
+msgstr "γαλαζοπράσινο"
#. PNveS
#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
-msgstr ""
+msgstr "λουλακί"
#. r5S8P
#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
-msgstr ""
+msgstr "έντονο ροζ"
#. NNmRT
#: starmath/inc/strings.hrc:363
@@ -2403,13 +2403,13 @@ msgstr "rgb"
#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "δεκαεξαδικό"
#. CCpNs
#: starmath/inc/strings.hrc:366
@@ -2547,7 +2547,7 @@ msgstr "Δεν επιτρέπονται διπλοί εκθέτες/δείκτε
#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Αναμενόμενος αριθμός"
#. ZWBDD
#: starmath/inc/strings.hrc:389
diff --git a/source/el/svtools/messages.po b/source/el/svtools/messages.po
index 077033ea0be..c1eb921191c 100644
--- a/source/el/svtools/messages.po
+++ b/source/el/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: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-25 00:44+0000\n"
+"PO-Revision-Date: 2020-11-26 16:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559713778.000000\n"
#. fLdeV
@@ -1281,19 +1281,19 @@ msgstr "$user$'s $service$"
#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
-msgstr ""
+msgstr "Το %PRODUCTNAME χρειάζεται το Java runtime environment (JRE) για να εκτελέσει αυτήν την εργασία. Παρακαλούμε, εγκαταστήστε ένα JRE και επανεκκινήστε το %PRODUCTNAME. %FAQLINK"
#. SBgjA
#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
-msgstr ""
+msgstr "Το %PRODUCTNAME χρειάζεται ένα %BITNESS-bit Java runtime environment (JRE) για να εκτελέσει αυτήν την εργασία. Εγκαταστήστε ένα JRE και επανεκκινήστε το %PRODUCTNAME."
#. FY49S
#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
-msgstr ""
+msgstr "Το %PRODUCTNAME χρειάζεται το Oracle's Java Development Kit (JDK) σε macOS 10.10 ή νεότερο για να εκτελέσει αυτήν την εργασία. Εγκαταστήστε το και επανεκκινήστε το %PRODUCTNAME. %FAQLINK"
#. 76BEm
#: include/svtools/strings.hrc:266
diff --git a/source/el/svx/messages.po b/source/el/svx/messages.po
index a2c36f0be19..a9da1a21920 100644
--- a/source/el/svx/messages.po
+++ b/source/el/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-29 14:36+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-11-26 16:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/el/>\n"
"Language: el\n"
@@ -584,13 +584,13 @@ msgstr "EMFs"
#: include/svx/strings.hrc:119
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#. tc3Jb
#: include/svx/strings.hrc:120
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
-msgstr ""
+msgstr "PDFs"
#. b3os5
#: include/svx/strings.hrc:121
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Προσαρμογή ολίσθησης στο τρέχον παράθυρο."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Αδυναμία φόρτωσης όλων των SmartArts. Η αποθήκευση στο Microsoft Office 2010 ή μεταγενέστερα θα απέφευγε αυτό το πρόβλημα."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -10074,7 +10074,7 @@ msgstr "Αναβόσβησμα"
#: include/svx/svxitems.hrc:69
msgctxt "RID_ATTR_NAMES"
msgid "Page line-spacing"
-msgstr ""
+msgstr "Διάστιχο σελίδας"
#. t2uX7
#: include/svx/svxitems.hrc:70
@@ -11364,7 +11364,7 @@ msgstr "Περιοχή κειμένου σελίδας"
#: svx/inc/swframeposstrings.hrc:46
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area top"
-msgstr ""
+msgstr "Πάνω περιοχή κειμένου σελίδας"
#. vWEe2
#: svx/inc/swframeposstrings.hrc:47
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Γραμμή περιήγησης"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Η αναφορά κατάρρευσης μεταφορτώθηκε επιτυχώς.\n"
-"Μπορείτε να βρείτε σύντομα την αναφορά στο:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Α_ποστολή αναφοράς κατάρρευσης"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Να _μην σταλεί"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -16336,7 +16333,7 @@ msgstr "_Σύμβολα υποκατάστασης"
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
msgid "Comme_nts"
-msgstr ""
+msgstr "Σ_χόλια"
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/el/sw/messages.po b/source/el/sw/messages.po
index 1de316ea04c..80479dfda1f 100644
--- a/source/el/sw/messages.po
+++ b/source/el/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-03 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/el/>\n"
"Language: el\n"
@@ -98,13 +98,13 @@ msgstr "Οι πίνακες δεν πρέπει να περιέχουν επικ
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Διατηρείστε τα ταξινομημένα επίπεδα επικεφαλίδων. Το επίπεδο επικεφαλίδας %LEVEL_CURRENT% δεν πρέπει να πάει μετά το %LEVEL_PREV%."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr "Να αποφεύγονται τα αντικείμενα Fontwork στα έγγραφά σας. Εξασφαλίστε ότι τα χρησιμοποιείτε για δείγματα ή άλλο κείμενο χωρίς νόημα."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Αριθμημένες παράγραφοι"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Χαρακτήρας άμεσης μορφοποίησης"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Παράγραφος άμεσης μορφοποίησης"
#. YUbUQ
#. Format names
@@ -747,7 +747,7 @@ msgstr "Χαρακτήρας απόστασης κάτω περιγράμματ
#: sw/inc/inspectorproperties.hrc:55
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Case Map"
-msgstr ""
+msgstr "Χαρακτήρας χάρτη πεζών-κεφαλαίων"
#. AxVck
#: sw/inc/inspectorproperties.hrc:56
@@ -1851,31 +1851,31 @@ msgstr "Απόσταση δεξιού ορίου"
#: sw/inc/inspectorproperties.hrc:239
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Rsid"
-msgstr ""
+msgstr "Rsid"
#. Uoosp
#: sw/inc/inspectorproperties.hrc:240
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Adjust"
-msgstr ""
+msgstr "Προσαρμογή Ruby"
#. 3WwCU
#: sw/inc/inspectorproperties.hrc:241
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Char Style Name"
-msgstr ""
+msgstr "Όνομα τεχνοτροπίας χαρακτήρα Ruby"
#. DqMAX
#: sw/inc/inspectorproperties.hrc:242
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby is Above"
-msgstr ""
+msgstr "Η Ruby είναι από πάνω"
#. w8jgs
#: sw/inc/inspectorproperties.hrc:243
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Position"
-msgstr ""
+msgstr "Θέση Ruby"
#. ZREEa
#: sw/inc/inspectorproperties.hrc:244
@@ -1905,7 +1905,7 @@ msgstr "Πεδίο κειμένου"
#: sw/inc/inspectorproperties.hrc:248
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text Frame"
-msgstr ""
+msgstr "Πλαίσιο κειμένου"
#. CNyuR
#: sw/inc/inspectorproperties.hrc:249
@@ -1929,25 +1929,25 @@ msgstr "Πίνακας κειμένου"
#: sw/inc/inspectorproperties.hrc:252
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text User Defined Attributes"
-msgstr ""
+msgstr "Καθορισμένα χαρακτηριστικά χρήστη για το κείμενο"
#. ZG6rS
#: sw/inc/inspectorproperties.hrc:253
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Top Border"
-msgstr ""
+msgstr "Άνω όριο"
#. 6qBJD
#: sw/inc/inspectorproperties.hrc:254
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Top Border Distance"
-msgstr ""
+msgstr "Απόσταση άνω ορίου"
#. RwtPi
#: sw/inc/inspectorproperties.hrc:255
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Unvisited Char Style Name"
-msgstr ""
+msgstr "Όνομα τεχνοτροπίας χαρακτήρων χωρίς επίσκεψη"
#. xcMEF
#: sw/inc/inspectorproperties.hrc:256
@@ -2895,13 +2895,13 @@ msgstr "Σχήμα"
#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
-msgstr ""
+msgstr "Παραλήπτης"
#. PvoVz
#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
-msgstr ""
+msgstr "Αποστολέας"
#. AChE4
#: sw/inc/strings.hrc:146
@@ -3197,7 +3197,7 @@ msgstr "Δεξιά σελίδα"
#: sw/inc/strings.hrc:196
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
-msgstr ""
+msgstr "Φάκελος"
#. jGSGz
#: sw/inc/strings.hrc:197
@@ -5750,19 +5750,19 @@ msgstr "Ανενεργό"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Πάτημα για εναλλαγή ορατότητας περιεχομένου"
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "δεξιό πάτημα για συμπερίληψη υποεπιπέδων"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Πάτημα για εναλλαγή ορατότητας περιεχομένου"
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -5786,13 +5786,13 @@ msgstr "Εναλλαγή"
#: sw/inc/strings.hrc:652
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
-msgstr ""
+msgstr "Εμφάνιση όλων"
#. ZUuCQ
#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
-msgstr ""
+msgstr "Απόκρυψη όλων"
#. 9Fipd
#: sw/inc/strings.hrc:655
@@ -8012,7 +8012,7 @@ msgstr "Χωρίς κεφαλίδα"
#: sw/inc/strings.hrc:1084
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
-msgstr ""
+msgstr "Βέλτιστο"
#. HEuGy
#: sw/inc/strings.hrc:1085
@@ -8030,19 +8030,19 @@ msgstr "Δια μέσου"
#: sw/inc/strings.hrc:1087
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
-msgstr ""
+msgstr "Παράλληλο"
#. hyEQ5
#: sw/inc/strings.hrc:1088
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
-msgstr ""
+msgstr "Πριν από"
#. bGBtQ
#: sw/inc/strings.hrc:1089
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
-msgstr ""
+msgstr "Μετά από"
#. SrG3D
#: sw/inc/strings.hrc:1090
@@ -8138,13 +8138,13 @@ msgstr "Βάση γραμμής"
#: sw/inc/strings.hrc:1105
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
-msgstr ""
+msgstr "Διάστιχο σελίδας"
#. Cui3U
#: sw/inc/strings.hrc:1106
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
-msgstr ""
+msgstr "Χωρίς διάστιχο σελίδας"
#. 4RL9X
#: sw/inc/strings.hrc:1107
@@ -9998,7 +9998,7 @@ msgstr "Διαγραφή σ_χολίου"
#: sw/uiconfig/swriter/ui/annotationmenu.ui:66
msgctxt "annotationmenu|deletethread"
msgid "Delete _Comment Thread"
-msgstr ""
+msgstr "Διαγραφή σ_χολίου νήματος"
#. z2NAS
#: sw/uiconfig/swriter/ui/annotationmenu.ui:74
@@ -13836,7 +13836,7 @@ msgstr "Επιλέξτε τον πίνακα της βάσης δεδομένω
#: sw/uiconfig/swriter/ui/flddbpage.ui:300
msgctxt "flddbpage|label2"
msgid "Database S_election"
-msgstr ""
+msgstr "Ε_πιλογή βάσης δεδομένων"
#. JeBVb
#: sw/uiconfig/swriter/ui/flddbpage.ui:326
@@ -13920,7 +13920,7 @@ msgstr "Αναφέρει τα διαθέσιμα πεδία για τον επι
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:169
msgctxt "flddocinfopage|label2"
msgid "_Select"
-msgstr ""
+msgstr "_Επιλογή"
#. oGvBL
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:237
@@ -13932,7 +13932,7 @@ msgstr "Πατήστε στη μορφοποίηση που θέλετε να ε
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:251
msgctxt "flddocinfopage|fixed"
msgid "Fi_xed content"
-msgstr ""
+msgstr "Στα_θερό περιεχόμενο"
#. BojDo
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:260
@@ -13944,7 +13944,7 @@ msgstr "Εισάγει το πεδίο ως στατικό περιεχόμεν
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:278
msgctxt "flddocinfopage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Μορφή"
#. BmH6G
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:103
@@ -13968,7 +13968,7 @@ msgstr "Αναφέρει τα διαθέσιμα πεδία για τον επι
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:190
msgctxt "flddocumentpage|label2"
msgid "_Select"
-msgstr ""
+msgstr "_Επιλογή"
#. xtXnr
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:267
@@ -13980,13 +13980,13 @@ msgstr "Πατήστε στη μορφοποίηση που θέλετε να ε
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:327
msgctxt "flddocumentpage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Μορφή"
#. k7KnK
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:343
msgctxt "flddocumentpage|fixed"
msgid "Fi_xed content"
-msgstr ""
+msgstr "Στα_θερό περιεχόμενο"
#. TjKiH
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:352
@@ -13998,7 +13998,7 @@ msgstr "Εισάγει το πεδίο ως στατικό περιεχόμεν
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:371
msgctxt "flddocumentpage|levelft"
msgid "_Level"
-msgstr ""
+msgstr "Επίπε_δο"
#. VX38D
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:388
@@ -14052,7 +14052,7 @@ msgstr "_Τύπος"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:167
msgctxt "fldfuncpage|label4"
msgid "_Select"
-msgstr ""
+msgstr "_Επιλογή"
#. b3UqC
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:229
@@ -14064,7 +14064,7 @@ msgstr "Πατήστε στη μορφοποίηση που θέλετε να ε
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:242
msgctxt "fldfuncpage|label2"
msgid "_Format"
-msgstr ""
+msgstr "_Μορφή"
#. CGoTS
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:267
@@ -14298,7 +14298,7 @@ msgstr "Αναφέρει τα διαθέσιμα πεδία για τον επι
#: sw/uiconfig/swriter/ui/fldvarpage.ui:214
msgctxt "fldvarpage|label2"
msgid "_Select"
-msgstr ""
+msgstr "_Επιλογή"
#. ZuuQf
#: sw/uiconfig/swriter/ui/fldvarpage.ui:306
@@ -14316,7 +14316,7 @@ msgstr "Στον κατάλογο Μορφή, ορίστε αν η τιμή ει
#: sw/uiconfig/swriter/ui/fldvarpage.ui:371
msgctxt "fldvarpage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Μορφή"
#. qPpKb
#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
@@ -14340,7 +14340,7 @@ msgstr "Επίπε_δο"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
msgctxt "fldvarpage|separatorft"
msgid "Se_parator"
-msgstr ""
+msgstr "Δια_χωριστικό"
#. wrAG3
#: sw/uiconfig/swriter/ui/fldvarpage.ui:460
@@ -16470,13 +16470,13 @@ msgstr "Υπολογίζει τη μέγιστη τιμή περιοχής ή κ
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:294
msgctxt "inputwinmenu|count"
msgid "Count"
-msgstr ""
+msgstr "Πλήθος"
#. 3VBfQ
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:302
msgctxt "inputwinmenu|product"
msgid "Product"
-msgstr ""
+msgstr "Γινόμενο"
#. DRxEW
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:310
@@ -16566,7 +16566,7 @@ msgstr "Υπολογίζει το τόξο εφαπτομένης σε ακτί
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:413
msgctxt "inputwinmenu|abs"
msgid "Abs"
-msgstr ""
+msgstr "Απόλυτο"
#. wmZwk
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:421
@@ -19266,7 +19266,7 @@ msgstr "Όνομα του σ_υνημμένου"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:358
msgctxt "mmresultemaildialog|label2"
msgid "Email Options"
-msgstr ""
+msgstr "Επιλογές ηλ. αλληλογραφίας"
#. kCBDz
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:390
@@ -19314,7 +19314,7 @@ msgstr "Εισάγετε τον αριθμό της τελευταίας εγγ
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:507
msgctxt "mmresultemaildialog|label1"
msgid "Send Records"
-msgstr ""
+msgstr "Αποστολή εγγραφών"
#. 6VhcE
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:532
@@ -19368,7 +19368,7 @@ msgstr "Αλλάζει τις ιδιότητες εκτυπωτή."
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:170
msgctxt "mmresultprintdialog|label2"
msgid "Printer Options"
-msgstr ""
+msgstr "Επιλογές εκτυπωτή"
#. VemES
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:206
@@ -19416,7 +19416,7 @@ msgstr "Εισάγετε τον αριθμό της τελευταίας εγγ
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:326
msgctxt "mmresultprintdialog|label1"
msgid "Print Records"
-msgstr ""
+msgstr "Εκτύπωση εγγραφών"
#. ZZ5p9
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:351
@@ -19500,7 +19500,7 @@ msgstr "Εισάγετε τον αριθμό της τελευταίας εγγ
#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:254
msgctxt "mmresultsavedialog|label2"
msgid "Save As Options"
-msgstr ""
+msgstr "Αποθήκευση ως επιλογές"
#. 2BCiE
#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:279
@@ -19812,7 +19812,7 @@ msgstr "Σύνδεση με τον διακομιστή εξερχόμενων
#: sw/uiconfig/swriter/ui/mmsendmails.ui:113
msgctxt "mmsendmails|label1"
msgid "Connection Status"
-msgstr ""
+msgstr "Κατάσταση σύνδεσης"
#. s8CDU
#: sw/uiconfig/swriter/ui/mmsendmails.ui:162
@@ -19854,7 +19854,7 @@ msgstr "Λεπτομέρειες"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:307
msgctxt "mmsendmails|label2"
msgid "Transfer Status"
-msgstr ""
+msgstr "Κατάσταση μεταφοράς"
#. c2i5B
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
@@ -20052,13 +20052,13 @@ msgstr "Εναλλάσσεται μεταξύ κύριας προβολής κα
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
-msgstr ""
+msgstr "Μετάβαση στη σελίδα"
#. avLGA
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
-msgstr ""
+msgstr "Εισάγετε αριθμό σελίδας και πατήστε Enter. Χρησιμοποιήστε τα βέλη για να μετακινηθείτε στην επόμενη σελίδα μπροστά ή πίσω."
#. DgvFE
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
@@ -20361,181 +20361,181 @@ msgid "~File"
msgstr "~Αρχείο"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Α_ρχή"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Α~ρχή (Home)"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Ε_ισαγωγή"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Ε~ισαγωγή"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Διάταξη"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Διάταξη"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Α_ναφορές"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Πα~ραπομπές"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Επι_θεώρηση"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Επι~θεώρηση"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Προ_βολή"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Προβολή"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Πίνακας"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Πίνακας"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ει_κόνα"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ει~κόνα"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Σ_χέδιο"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Σ~χέδιο"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Α_ντικείμενο"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Α~ντικείμενο"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Μέσα"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Μέσα"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ε_κτύπωση"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ε~κτύπωση"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Φόρμα"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Φόρμα"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ε_πέκταση"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ε~πέκταση"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Εργαλεία"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ε~ργαλεία"
@@ -21573,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Επεξεργασία περιγράμματος"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ε_πέκταση"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
@@ -22091,7 +22085,7 @@ msgstr "Αναδιοργάνωση μενού φόρμας για συμβατό
#: sw/uiconfig/swriter/ui/optcompatpage.ui:139
msgctxt "optcompatpage|label2"
msgid "Global Compatibility Options"
-msgstr ""
+msgstr "Γενικές επιλογές συμβατότητας"
#. KC3YE
#: sw/uiconfig/swriter/ui/optcompatpage.ui:235
@@ -22437,7 +22431,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optformataidspage.ui:273
msgctxt "optformataidspage|displayfl"
msgid "Display Formatting"
-msgstr ""
+msgstr "Εμφάνιση μορφοποίησης"
#. ufN3R
#: sw/uiconfig/swriter/ui/optformataidspage.ui:305
@@ -23689,7 +23683,7 @@ msgstr "Ίδιο περιεχόμενο:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Περιθώρια:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23779,7 +23773,7 @@ msgstr "Ίδιο περιεχόμενο:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Περιθώρια:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
@@ -24583,7 +24577,7 @@ msgstr "Σχόλια"
#: sw/uiconfig/swriter/ui/printoptionspage.ui:476
msgctxt "printoptionspage|label5"
msgid "_Fax:"
-msgstr ""
+msgstr "_Φάξ:"
#. CFCk9
#: sw/uiconfig/swriter/ui/printoptionspage.ui:481
@@ -28787,7 +28781,7 @@ msgstr "Εμφάνιση πεδίων"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:320
msgctxt "viewoptionspage|changesinmargin"
msgid "Tracked _deletions in margin"
-msgstr ""
+msgstr "Παρακολουθούμενες _διαγραφές στο περιθώριο"
#. vvvb7
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:329
@@ -28805,7 +28799,7 @@ msgstr "Συμβου_λές οθόνης σε ιχνηλατημένες αλλ
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:361
msgctxt "viewoptionspage|changeslabel"
msgid "Display tracked changes"
-msgstr ""
+msgstr "Εμφάνιση παρακολουθούμενων αλλαγών"
#. CuQqf
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:395
@@ -28817,7 +28811,7 @@ msgstr "Πλήκτρο εμ_φάνισης ορατότητας περιεχομ
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:416
msgctxt "viewoptionspage|outlinelabel"
msgid "Outline mode"
-msgstr ""
+msgstr "Κατάσταση διάρθρωσης"
#. YD6TK
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:462
diff --git a/source/el/vcl/messages.po b/source/el/vcl/messages.po
index 3530f3b545f..aa3a147658f 100644
--- a/source/el/vcl/messages.po
+++ b/source/el/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-16 06:35+0000\n"
+"PO-Revision-Date: 2020-11-30 10:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/vclmessages/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562572366.000000\n"
#. k5jTM
@@ -2227,7 +2227,7 @@ msgstr "Διατηρεί τη σειρά σελίδων του αρχικού ε
#: vcl/uiconfig/ui/printdialog.ui:825
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
-msgstr ""
+msgstr "Δημιουργία ξεχωριστών εργασιών εκτύπωσης για έξοδο με συρραφή"
#. X4Am9
#: vcl/uiconfig/ui/printdialog.ui:833
@@ -2239,7 +2239,7 @@ msgstr "Σημειώστε για να μην εξαρτάται από τον
#: vcl/uiconfig/ui/printdialog.ui:854
msgctxt "printdialog|rangeexpander"
msgid "_More"
-msgstr ""
+msgstr "_Περισσότερα"
#. ehfCG
#: vcl/uiconfig/ui/printdialog.ui:872
diff --git a/source/en-GB/cui/messages.po b/source/en-GB/cui/messages.po
index 918b6fce673..1260e920d64 100644
--- a/source/en-GB/cui/messages.po
+++ b/source/en-GB/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: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-19 20:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/en_GB/>\n"
"Language: en-GB\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562933207.000000\n"
#. GyY9M
@@ -3472,7 +3472,6 @@ msgstr "Developing new XSLT and XML filters?"
#. C7Ya2
#: cui/inc/tipoftheday.hrc:271
-#, fuzzy
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
msgstr "Press Shift+F1 to see any available extended tooltips in dialogue boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
@@ -20900,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Select Your Preferred User Interface"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Standard Toolbar"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Single Toolbar"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Sidebar"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "Tabbed"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "Tabbed Compact"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Groupedbar Compact"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Groupedbar"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Groupedbar Compact"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Contextual Single"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Contextual Groups"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Single Toolbar"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Sidebar"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/shared.po b/source/en-GB/helpcontent2/source/text/sbasic/shared.po
index 514cd10358f..e9b6d51bd00 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-GB/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-02-29 17:16+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/en_GB/>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Creates a new directory on a data medium."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "Creates a new directory on a data medium."
+msgstr "Creates a new directory on a data medium."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "If the path is not determined, the directory is created in the current directory."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Deletes an existing directory from a data medium."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message will appear."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Stops the execution of the Basic program."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/en-GB/helpcontent2/source/text/scalc/00.po b/source/en-GB/helpcontent2/source/text/scalc/00.po
index 4d25468e44d..2988392b9a5 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/00.po
+++ b/source/en-GB/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/en_GB/>\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/en-GB/helpcontent2/source/text/scalc/guide.po b/source/en-GB/helpcontent2/source/text/scalc/guide.po
index 8b7f746fe25..512f2ec19fb 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/guide.po
+++ b/source/en-GB/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/en_GB/>\n"
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
diff --git a/source/en-GB/helpcontent2/source/text/sdraw/01.po b/source/en-GB/helpcontent2/source/text/sdraw/01.po
index ed20c342763..3bf1a58738e 100644
--- a/source/en-GB/helpcontent2/source/text/sdraw/01.po
+++ b/source/en-GB/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/en_GB/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialogue box."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/en-GB/helpcontent2/source/text/shared.po b/source/en-GB/helpcontent2/source/text/shared.po
index 5668539f7f3..e34ea2dcdbc 100644
--- a/source/en-GB/helpcontent2/source/text/shared.po
+++ b/source/en-GB/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-02-10 17:44+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textshared/en_GB/>\n"
"Language: en-GB\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.1.1\n"
"X-POOTLE-MTIME: 1547062857.000000\n"
#. DBz3U
@@ -464,7 +464,7 @@ msgctxt ""
"par_idN106A5\n"
"help.text"
msgid "<link href=\"text/shared/01/06010000.xhp\">Spelling</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06010000.xhp\">Spelling</link>"
#. ZVSLP
#: main0201.xhp
@@ -2129,7 +2129,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#. pVEBz
#: submenu_text.xhp
@@ -2138,7 +2138,7 @@ msgctxt ""
"hd_id411816022675978\n"
"help.text"
msgid "<link href=\"text/shared/submenu_text.xhp\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/submenu_text.xhp\">Text</link>"
#. UdmfU
#: submenu_text.xhp
@@ -2147,7 +2147,7 @@ msgctxt ""
"par_id398855439580083\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a submenu where you can choose text formatting commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opens a sub-menu where you can choose text formatting commands.</ahelp>"
#. JCTNH
#: submenu_text.xhp
@@ -2156,7 +2156,7 @@ msgctxt ""
"hd_id893328657433073\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id0123200902243376\">Overline</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id0123200902243376\">Overline</link>"
#. U9h8v
#: submenu_text.xhp
@@ -2165,7 +2165,7 @@ msgctxt ""
"par_id281953548674188\n"
"help.text"
msgid "<embedvar href=\"text/shared/01/05020200.xhp#overline\" markup=\"ignore\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/01/05020200.xhp#overline\" markup=\"ignore\"/>"
#. NLNGF
#: submenu_text.xhp
@@ -2174,7 +2174,7 @@ msgctxt ""
"hd_id773632078996899\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3163714\">Shadow</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3163714\">Shadow</link>"
#. hMRVP
#: submenu_text.xhp
@@ -2183,7 +2183,7 @@ msgctxt ""
"hd_id873632078996899\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3147287\">Outline</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3147287\">Outline</link>"
#. br5DC
#: submenu_text.xhp
@@ -2192,7 +2192,7 @@ msgctxt ""
"hd_id207025326941609\n"
"help.text"
msgid "Wrap Text"
-msgstr ""
+msgstr "Wrap Text"
#. jBc2E
#: submenu_text.xhp
@@ -2201,7 +2201,7 @@ msgctxt ""
"par_id302484503842787\n"
"help.text"
msgid "<ahelp hid=\".\">Break text automatically at the right edges of the selected cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Break text automatically at the right edges of the selected cells.</ahelp>"
#. BqgSi
#: submenu_text.xhp
@@ -2210,7 +2210,7 @@ msgctxt ""
"hd_id273587522269593\n"
"help.text"
msgid "<link href=\"text/swriter/main0202.xhp#hd_id0122200903085320\">Increase Size</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/main0202.xhp#hd_id0122200903085320\">Increase Size</link>"
#. GTjCT
#: submenu_text.xhp
@@ -2219,7 +2219,7 @@ msgctxt ""
"hd_id511910578827551\n"
"help.text"
msgid "<link href=\"text/swriter/main0202.xhp#hd_id012220090308532\">Decrease Size</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/main0202.xhp#hd_id012220090308532\">Decrease Size</link>"
#. WApc3
#: submenu_text.xhp
@@ -2228,7 +2228,7 @@ msgctxt ""
"hd_id373587522269593\n"
"help.text"
msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104143\">Increase Size</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104143\">Increase Size</link>"
#. AQANy
#: submenu_text.xhp
@@ -2237,7 +2237,7 @@ msgctxt ""
"hd_id711910578827551\n"
"help.text"
msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104228\">Decrease Size</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104228\">Decrease Size</link>"
#. uzDFv
#: submenu_text.xhp
@@ -2246,7 +2246,7 @@ msgctxt ""
"hd_id473587522269593\n"
"help.text"
msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104143\">Increase Size</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104143\">Increase Size</link>"
#. GQ8Fj
#: submenu_text.xhp
@@ -2255,7 +2255,7 @@ msgctxt ""
"hd_id611910578827551\n"
"help.text"
msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104228\">Decrease Size</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104228\">Decrease Size</link>"
#. wSRdX
#: submenu_text.xhp
@@ -2264,7 +2264,7 @@ msgctxt ""
"hd_id172462591626807\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">UPPERCASE</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">UPPERCASE</link>"
#. sjNg6
#: submenu_text.xhp
@@ -2273,7 +2273,7 @@ msgctxt ""
"par_id381953548674188\n"
"help.text"
msgid "<embedvar href=\"text/shared/01/05020200.xhp#uppercase\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/01/05020200.xhp#uppercase\"/>"
#. FFVUb
#: submenu_text.xhp
@@ -2282,7 +2282,7 @@ msgctxt ""
"hd_id935919548287354\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">lowercase</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">lowercase</link>"
#. ijGEm
#: submenu_text.xhp
@@ -2291,7 +2291,7 @@ msgctxt ""
"par_id481953548674188\n"
"help.text"
msgid "<embedvar href=\"text/shared/01/05020200.xhp#lowercase\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/01/05020200.xhp#lowercase\"/>"
#. zGBE2
#: submenu_text.xhp
@@ -2300,7 +2300,7 @@ msgctxt ""
"hd_id3147143\n"
"help.text"
msgid "Cycle Case"
-msgstr ""
+msgstr "Cycle Case"
#. TSJfn
#: submenu_text.xhp
@@ -2309,7 +2309,7 @@ msgctxt ""
"par_id3152372\n"
"help.text"
msgid "<ahelp hid=\".uno:ChangeCaseRotateCase\">Cycles the case of the selected characters between Title Case, Sentence case, UPPERCASE and lowercase.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ChangeCaseRotateCase\">Cycles the case of the selected characters between Title Case, Sentence case, UPPERCASE and lowercase.</ahelp>"
#. v24QT
#: submenu_text.xhp
@@ -2318,7 +2318,7 @@ msgctxt ""
"hd_id3147572\n"
"help.text"
msgid "Sentence case"
-msgstr ""
+msgstr "Sentence case"
#. v3Cr9
#: submenu_text.xhp
@@ -2327,7 +2327,7 @@ msgctxt ""
"par_id3150694\n"
"help.text"
msgid "<ahelp hid=\".\">Changes the first letter of the selected characters to an uppercase character.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Changes the first letter of the selected Western characters to an upper-case character.</ahelp>"
#. JtsaD
#: submenu_text.xhp
@@ -2336,7 +2336,7 @@ msgctxt ""
"hd_id640520497868661\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Capitalize Every Word</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Capitalise Every Word</link>"
#. 3UGHA
#: submenu_text.xhp
@@ -2345,7 +2345,7 @@ msgctxt ""
"par_id581953548674188\n"
"help.text"
msgid "<embedvar href=\"text/shared/01/05020200.xhp#capitalizeeveryword\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/01/05020200.xhp#capitalizeeveryword\"/>"
#. Y9fn4
#: submenu_text.xhp
@@ -2354,7 +2354,7 @@ msgctxt ""
"hd_id3147521\n"
"help.text"
msgid "tOGGLE cASE"
-msgstr ""
+msgstr "tOGGLE cASE"
#. eb5K9
#: submenu_text.xhp
@@ -2363,7 +2363,7 @@ msgctxt ""
"par_id3150623\n"
"help.text"
msgid "<ahelp hid=\".\">Toggles case of all selected characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Toggles case of all selected characters.</ahelp>"
#. WNuFq
#: submenu_text.xhp
@@ -2372,7 +2372,7 @@ msgctxt ""
"hd_id342778277179117\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
#. K6tXB
#: submenu_text.xhp
@@ -2381,7 +2381,7 @@ msgctxt ""
"par_id681953548674188\n"
"help.text"
msgid "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
#. VXJzA
#: submenu_text.xhp
@@ -2390,7 +2390,7 @@ msgctxt ""
"hd_id442778277179117\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
#. arEu2
#: submenu_text.xhp
@@ -2399,7 +2399,7 @@ msgctxt ""
"par_id781953548674188\n"
"help.text"
msgid "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
#. KQxFn
#: submenu_text.xhp
@@ -2408,7 +2408,7 @@ msgctxt ""
"hd_id542778277179117\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
#. okCcu
#: submenu_text.xhp
@@ -2417,7 +2417,7 @@ msgctxt ""
"par_id881953548674188\n"
"help.text"
msgid "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
#. zo6cE
#: submenu_text.xhp
@@ -2426,7 +2426,7 @@ msgctxt ""
"hd_id3155392\n"
"help.text"
msgid "Half-width"
-msgstr ""
+msgstr "Half-width"
#. SEpmw
#: submenu_text.xhp
@@ -2435,7 +2435,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Changes the selected Asian characters to half-width characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Changes the selected Asian characters to half-width characters.</ahelp>"
#. rA2DG
#: submenu_text.xhp
@@ -2444,7 +2444,7 @@ msgctxt ""
"hd_id3156113\n"
"help.text"
msgid "Full Width"
-msgstr ""
+msgstr "Full Width"
#. Ep24G
#: submenu_text.xhp
@@ -2453,16 +2453,17 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full-width characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full-width characters.</ahelp>"
#. dZCcC
#: submenu_text.xhp
+#, fuzzy
msgctxt ""
"submenu_text.xhp\n"
"hd_id3152996\n"
"help.text"
msgid "Hiragana"
-msgstr ""
+msgstr "Hiragana"
#. AB6ta
#: submenu_text.xhp
@@ -2471,7 +2472,7 @@ msgctxt ""
"par_id3156156\n"
"help.text"
msgid "<ahelp hid=\".uno:ChangeCaseToHiragana\">Changes the selected Asian characters to Hiragana characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ChangeCaseToHiragana\">Changes the selected Asian characters to Hiragana characters.</ahelp>"
#. LNQLS
#: submenu_text.xhp
@@ -2480,7 +2481,7 @@ msgctxt ""
"hd_id3154173\n"
"help.text"
msgid "Katakana"
-msgstr ""
+msgstr "Katakana"
#. QSxUp
#: submenu_text.xhp
@@ -2489,4 +2490,4 @@ msgctxt ""
"par_id3146137\n"
"help.text"
msgid "<ahelp hid=\".uno:ChangeCaseToKatakana\">Changes the selected Asian characters to Katakana characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ChangeCaseToKatakana\">Changes the selected Asian characters to Katakana characters.</ahelp>"
diff --git a/source/en-GB/helpcontent2/source/text/shared/01.po b/source/en-GB/helpcontent2/source/text/shared/01.po
index 20d022b626f..65e12ce1211 100644
--- a/source/en-GB/helpcontent2/source/text/shared/01.po
+++ b/source/en-GB/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-06-23 11:14+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/en_GB/>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/en-GB/helpcontent2/source/text/shared/guide.po b/source/en-GB/helpcontent2/source/text/shared/guide.po
index b4150e74ffb..55ee935ae6f 100644
--- a/source/en-GB/helpcontent2/source/text/shared/guide.po
+++ b/source/en-GB/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-06-29 11:28+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/en_GB/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "HTML Document"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "OpenDocument Text (Flat XML)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 Text Document"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 Text Document"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Text Document"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "T602 Document"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Text"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Text"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "Filters for GRAPHICFILTER"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD Interchange Format"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF - Enhanced Metafile"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF - Enhanced Metafile"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Encapsulated PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Encapsulated PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr "GIF - Graphics Interchange"
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr "GIF - Graphics Interchange"
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr "text/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET - OS/2 Metafile"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - QuickTime File Format"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr "PCD - Photo CD Base4"
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT - Mac Pict"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Portable Graymap"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network Graphic"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Portable Pixelmap"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Sun Raster Image"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Image"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - Scalable Vector Graphics Draw"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr "SVM - StarView Metafile"
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF - Tagged Image File Format"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Windows Metafile"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitmap"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Error Report Tool"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Starting the Error Report Tool"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "With most program crashes the Error Report Tool will start automatically."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Completing the Report"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "On the main Error Report Tool dialogue box, you can enter some additional information that may help the developers to localise the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Sending the Error Report"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "What Data is Sent?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialogue box of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialogue box select the <emph>Printer</emph> option and then mark the <emph>Separate print jobs</emph> check box."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customised Styles or other contents."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modifying Default Templates"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "There are several ways to make your work easier by using your own custom templates."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialogue box. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialogue box."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,14 +24100,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/en-GB/helpcontent2/source/text/shared/optionen.po b/source/en-GB/helpcontent2/source/text/shared/optionen.po
index 4e21021e664..ddfe5872ec1 100644
--- a/source/en-GB/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-GB/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-02-13 22:15+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "View"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Specifies view options."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "User Interface"
+msgid "Icon style"
+msgstr "Icon style"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogue boxes.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Sidebar icon size"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Notebook bar icon size"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Icon style"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogue boxes.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Screen font anti-aliasing"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply anti-aliasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Mouse"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Mouse positioning"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogue boxes.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Middle mouse button"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "The last marked selection is the content of the selection clipboard."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Graphics output"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,68 +3805,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with fewer artifacts.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menu"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Screen font anti-aliasing"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply anti-aliasing.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/swriter/guide.po b/source/en-GB/helpcontent2/source/text/swriter/guide.po
index 7509e828555..0c754348e65 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-12 09:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/en_GB/>\n"
@@ -12518,13 +12518,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12563,13 +12563,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12590,58 +12590,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12671,13 +12653,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16910,14 +16892,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Unless you specify otherwise, every new $[officename] text document is based on the default template."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17270,14 +17252,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "To set the behaviour of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17288,32 +17270,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centred"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
index 618e42f45af..82df9e7f653 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-27 11:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/en_GB/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Hide Slide"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~xt..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~File"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Alig~n"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Alig~n"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Select to End of Paragraph"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Select to Word Right"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/en-GB/sc/messages.po b/source/en-GB/sc/messages.po
index 158885f75bc..5441bfd2821 100644
--- a/source/en-GB/sc/messages.po
+++ b/source/en-GB/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-03 06:09+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/en_GB/>\n"
@@ -24593,213 +24593,213 @@ msgid "~File"
msgstr "~File"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Specify the borders of the selected cells."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Increase Indent"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Decrease Indent"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fiel_d"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insert"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Object Align"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Review"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Review"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_View"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~View"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convert"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Object"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Print"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Print"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tools"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29629,338 +29629,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solver"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_ptions..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Solve"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Target cell"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimise result to"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_By changing cells"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maximum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Value of"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Cell reference"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_alue"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Cell reference"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Cell reference"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Cell reference"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Cell reference"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Integer"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binary"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Integer"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binary"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Integer"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binary"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Integer"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binary"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Value"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Value"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Value"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Value"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Remove"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Remove"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Remove"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Remove"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Limiting Conditions"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/en-GB/sd/messages.po b/source/en-GB/sd/messages.po
index 5a671c4cb55..adacfb6a81d 100644
--- a/source/en-GB/sd/messages.po
+++ b/source/en-GB/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/en_GB/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562933451.000000\n"
#. WDjkB
@@ -3819,116 +3819,116 @@ msgstr "~Table"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convert"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Object"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Object"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Master"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Master"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tools"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tools"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menu"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtension"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "~File"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Home"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fiel_d"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insert"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Slide Show"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Slide Show"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Review"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Review"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_View"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~View"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Table"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Table"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convert"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Object"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Object"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Master"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Master"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_View"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Outline"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3-_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3-~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tools"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tools"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Edit Contour"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtension"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/en-GB/starmath/messages.po b/source/en-GB/starmath/messages.po
index a219adb16c4..bf1da1ecd28 100644
--- a/source/en-GB/starmath/messages.po
+++ b/source/en-GB/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-27 11:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/en_GB/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/en-GB/svx/messages.po b/source/en-GB/svx/messages.po
index e1cc224d422..278ea912e52 100644
--- a/source/en-GB/svx/messages.po
+++ b/source/en-GB/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-07 21:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/en_GB/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Fit slide to current window."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13959,17 +13959,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigation Bar"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"The crash report was successfully uploaded.\n"
-"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13995,11 +13992,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Send Crash Report"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Do_n’t Send"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/en-GB/sw/messages.po b/source/en-GB/sw/messages.po
index 6610cf3b4ab..ab92dff2475 100644
--- a/source/en-GB/sw/messages.po
+++ b/source/en-GB/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/en_GB/>\n"
@@ -100,11 +100,11 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr ""
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -20367,181 +20367,181 @@ msgid "~File"
msgstr "~File"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Home"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insert"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Reference_s"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Reference~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Review"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Review"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_View"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~View"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Table"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Table"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Object"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Object"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Print"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Print"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tools"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Tools"
@@ -21579,12 +21579,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Edit Contour"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtension"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/en-ZA/cui/messages.po b/source/en-ZA/cui/messages.po
index 52118eebd13..22d5bb69502 100644
--- a/source/en-ZA/cui/messages.po
+++ b/source/en-ZA/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21540,60 +21540,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
index c2a609d734d..d579397c6e9 100644
--- a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Creates a new directory on a data medium."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "Creates a new directory on a data medium."
+msgstr "Creates a new directory on a data medium."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "If the path is not determined, the directory is created in the current directory."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Deletes an existing directory from a data medium."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Stops the execution of the Basic program."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/00.po b/source/en-ZA/helpcontent2/source/text/scalc/00.po
index a8a7c7b1c31..2026b1eee2a 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/00.po
+++ b/source/en-ZA/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/guide.po b/source/en-ZA/helpcontent2/source/text/scalc/guide.po
index 969d39109af..ce969bd88fb 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/guide.po
+++ b/source/en-ZA/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/en-ZA/helpcontent2/source/text/sdraw/01.po b/source/en-ZA/helpcontent2/source/text/sdraw/01.po
index eb1045f3792..29037dccc0e 100644
--- a/source/en-ZA/helpcontent2/source/text/sdraw/01.po
+++ b/source/en-ZA/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 21:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index c450837f4c7..1c5f08fe83c 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/01.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/en-ZA/helpcontent2/source/text/shared/guide.po b/source/en-ZA/helpcontent2/source/text/shared/guide.po
index bdb12e141e1..acc6108f1f6 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/guide.po
+++ b/source/en-ZA/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Error Report Tool"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Starting the Error Report Tool"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "With most program crashes the Error Report Tool will start automatically."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Completing the Report"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "On the main Error Report Tool dialogue, you can enter some additional information that may help the developers to localise the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Sending the Error Report"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "What Data is Sent?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialogue of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialogue select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customised Styles or other contents."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modifying Default Templates"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
+"help.text"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
msgstr ""
-#. GuEWL
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. Quf5G
+#. DuAAp
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id251605475503009\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "There are several ways to make your work easier by using your own custom templates."
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. S8XFP
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/en-ZA/helpcontent2/source/text/shared/optionen.po b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
index 7d55a1260ef..bbf16ec8c25 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "View"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Screen font antialiasing"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Graphics output"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\".\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menu"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Screen font antialiasing"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">Enter the smallest font size to apply antialiasing.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/guide.po b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
index 1a74e8e6cd5..e5dd08d2dce 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Unless you specify otherwise, every new $[officename] text document is based on the default template."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
index 03c10c0e7d2..3aeab2a5e4e 100644
--- a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8142,15 +8142,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Hide Slide"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~xt..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25818,27 +25818,25 @@ msgctxt ""
msgid "~File"
msgstr "~File"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Align"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Align"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31529,15 +31527,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Select to Paragraph End"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Select to Word Right"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/en-ZA/sc/messages.po b/source/en-ZA/sc/messages.po
index bb2ceeb8fbe..7b0276d8a11 100644
--- a/source/en-ZA/sc/messages.po
+++ b/source/en-ZA/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25201,213 +25201,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30425,355 +30425,361 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Options..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "~Minimum"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "~Maximum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
#, fuzzy
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Values"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Integer "
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binary"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Integer "
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binary"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Integer "
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binary"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Integer "
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binary"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Values"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Values"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Values"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Values"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Remove"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Remove"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Remove"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Remove"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/en-ZA/sd/messages.po b/source/en-ZA/sd/messages.po
index 4da7f65f77e..14409bcf859 100644
--- a/source/en-ZA/sd/messages.po
+++ b/source/en-ZA/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3889,116 +3889,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4402,12 +4402,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6739,219 +6733,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7916,12 +7910,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Text Contour"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/en-ZA/starmath/messages.po b/source/en-ZA/starmath/messages.po
index 085b24ee308..36c0d466c24 100644
--- a/source/en-ZA/starmath/messages.po
+++ b/source/en-ZA/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2209,9 +2209,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/en-ZA/svx/messages.po b/source/en-ZA/svx/messages.po
index 1309d70f473..e54dd59e105 100644
--- a/source/en-ZA/svx/messages.po
+++ b/source/en-ZA/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7324,10 +7324,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14208,13 +14208,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigation Bar"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14238,10 +14238,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/en-ZA/sw/messages.po b/source/en-ZA/sw/messages.po
index 9dc099481e9..8d4578a93d6 100644
--- a/source/en-ZA/sw/messages.po
+++ b/source/en-ZA/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -21039,181 +21039,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22270,12 +22270,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Text Contour"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/eo/cui/messages.po b/source/eo/cui/messages.po
index 0794bd1b432..93222157b2c 100644
--- a/source/eo/cui/messages.po
+++ b/source/eo/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: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/eo/>\n"
"Language: eo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564181160.000000\n"
#. GyY9M
@@ -12621,7 +12621,7 @@ msgstr "Disigilo de miloj"
#: cui/uiconfig/ui/numberingformatpage.ui:404
msgctxt "numberingformatpage|extended_tip|thousands"
msgid "Inserts a separator between thousands. The type of separator that is used depends on your language settings."
-msgstr ""
+msgstr "Enmetas apartigilon inter miloj. La tipo de apartigilo dependas de viaj lingvaj agordoj."
#. rsmBU
#: cui/uiconfig/ui/numberingformatpage.ui:428
@@ -12633,7 +12633,7 @@ msgstr "Agordaro"
#: cui/uiconfig/ui/numberingformatpage.ui:494
msgctxt "numberingformatpage|extended_tip|categorylb"
msgid "Select a category from the list, and then select a formatting style in the Format box."
-msgstr ""
+msgstr "Elektu kategorion el la llisto, kaj elektu formatadan stilon en la kadro Formato."
#. NTAb6
#: cui/uiconfig/ui/numberingformatpage.ui:507
@@ -12651,13 +12651,13 @@ msgstr "Aŭtomate"
#: cui/uiconfig/ui/numberingformatpage.ui:556
msgctxt "numberingformatpage|extended_tip|currencylb"
msgid "Select a currency, and then scroll to the top of the Format list to view the formatting options for the currency."
-msgstr ""
+msgstr "Elektu valuton, kaj rulumu al la supro de la listo Formato por vidi la formatajn agordojn por la valuto."
#. TBLU5
#: cui/uiconfig/ui/numberingformatpage.ui:597
msgctxt "numberingformatpage|extended_tip|formatlb"
msgid "Select how you want the contents of the selected field to be displayed."
-msgstr ""
+msgstr "Elektu kiel vi volas ke laenhavo de la elektita kampo vidiĝu."
#. Wxkzd
#: cui/uiconfig/ui/numberingformatpage.ui:616
@@ -12669,7 +12669,7 @@ msgstr "Formato"
#: cui/uiconfig/ui/numberingformatpage.ui:657
msgctxt "numberingformatpage|extended_tip|languagelb"
msgid "Specifies the language setting for the selected field."
-msgstr ""
+msgstr "Agordas la lingvan eblon por la elektita kampo."
#. hx9FX
#: cui/uiconfig/ui/numberingformatpage.ui:668
@@ -12681,7 +12681,7 @@ msgstr "Formato de la fonto"
#: cui/uiconfig/ui/numberingformatpage.ui:677
msgctxt "numberingformatpage|extended_tip|sourceformat"
msgid "Uses the same number format as the cells containing the data for the chart."
-msgstr ""
+msgstr "Uzas la saman numeran formaton kiel la ĉeloj enhavantaj la datumojn por la diagramo."
#. iCX4U
#: cui/uiconfig/ui/numberingformatpage.ui:720
@@ -12693,7 +12693,7 @@ msgstr "Lingvo"
#: cui/uiconfig/ui/numberingformatpage.ui:742
msgctxt "numberingformatpage|extended_tip|NumberingFormatPage"
msgid "Specify the formatting options for the selected cell(s)."
-msgstr ""
+msgstr "Agordu la formatajn eblojn por la elektita(j) ĉelo(j)."
#. XxX2T
#: cui/uiconfig/ui/numberingoptionspage.ui:42
@@ -12711,7 +12711,7 @@ msgstr "Galerio"
#: cui/uiconfig/ui/numberingoptionspage.ui:116
msgctxt "numberingoptionspage|extended_tip|levellb"
msgid "Select the level(s) that you want to define the formatting options for."
-msgstr ""
+msgstr "Elektu la nivelo(j)n por kiu(j)n vi volas agordi la formatadon."
#. iHsAJ
#: cui/uiconfig/ui/numberingoptionspage.ui:129
@@ -12729,19 +12729,19 @@ msgstr "Numero:"
#: cui/uiconfig/ui/numberingoptionspage.ui:193
msgctxt "numberingoptionspage|extended_tip|charstyle"
msgid "Select the Character Style that you want to use in the numbered list."
-msgstr ""
+msgstr "Elektu la Signan stilon uzotan en la numerita listo."
#. UaFF9
#: cui/uiconfig/ui/numberingoptionspage.ui:211
msgctxt "numberingoptionspage|extended_tip|sublevels"
msgid "Enter the number of previous levels to include in the numbering style. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering style, the numbering scheme for the current level becomes: \"A.1\"."
-msgstr ""
+msgstr "Enigu la nombron da antaŭaj niveloj inkludotaj en la numerada stilo. Ekzemple, se vi enigas je \"2\" kaj la antaŭa nivelo uzas la numeradan stilon \"A, B, C...\" , la numerada skemo por la aktuala novelo iĝas: \"A.1\"."
#. ST2Co
#: cui/uiconfig/ui/numberingoptionspage.ui:228
msgctxt "numberingoptionspage|extended_tip|startat"
msgid "Enter a new starting number for the current level."
-msgstr ""
+msgstr "Enigu novan komencan numeron por la aktuala nivelo."
#. xWX3x
#: cui/uiconfig/ui/numberingoptionspage.ui:241
@@ -12753,7 +12753,7 @@ msgstr "Komenci je:"
#: cui/uiconfig/ui/numberingoptionspage.ui:257
msgctxt "numberingoptionspage|extended_tip|numfmtlb"
msgid "Select a numbering style for the selected levels."
-msgstr ""
+msgstr "Enigu numeradan stilon por la elektitaj niveloj."
#. EDSiA
#: cui/uiconfig/ui/numberingoptionspage.ui:270
@@ -12771,7 +12771,7 @@ msgstr "Larĝo:"
#: cui/uiconfig/ui/numberingoptionspage.ui:303
msgctxt "numberingoptionspage|extended_tip|widthmf"
msgid "Enter a width for the graphic."
-msgstr ""
+msgstr "Enigu larĝon por la grafikaĵo."
#. PBvy6
#: cui/uiconfig/ui/numberingoptionspage.ui:316
@@ -12783,7 +12783,7 @@ msgstr "Alto:"
#: cui/uiconfig/ui/numberingoptionspage.ui:336
msgctxt "numberingoptionspage|extended_tip|heightmf"
msgid "Enter a height for the graphic."
-msgstr ""
+msgstr "Enigu alton por la grafikaĵo."
#. bRHQn
#: cui/uiconfig/ui/numberingoptionspage.ui:347
@@ -12795,7 +12795,7 @@ msgstr "Konservi proporcion"
#: cui/uiconfig/ui/numberingoptionspage.ui:356
msgctxt "numberingoptionspage|extended_tip|keepratio"
msgid "Maintains the size proportions of the graphic."
-msgstr ""
+msgstr "Konservas la grandajn proporciojn de la grafikaĵo."
#. 7Wuu8
#: cui/uiconfig/ui/numberingoptionspage.ui:369
@@ -12861,7 +12861,7 @@ msgstr "Malsupro de linio"
#: cui/uiconfig/ui/numberingoptionspage.ui:397
msgctxt "numberingoptionspage|extended_tip|orientlb"
msgid "Select the alignment option for the graphic."
-msgstr ""
+msgstr "Elektu la ĝisrandan eblon por la grafikaĵo."
#. CoAAt
#: cui/uiconfig/ui/numberingoptionspage.ui:408
@@ -12873,19 +12873,19 @@ msgstr "Elekti..."
#: cui/uiconfig/ui/numberingoptionspage.ui:420
msgctxt "numberingoptionspage|extended_tip|bitmap"
msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
-msgstr ""
+msgstr "Elektu la grafikaĵon, aŭ trovu la grafikan dosieron uzotan kiel bulon."
#. NCamZ
#: cui/uiconfig/ui/numberingoptionspage.ui:442
msgctxt "numberingoptionspage|extended_tip|color"
msgid "Select a color for the current numbering style."
-msgstr ""
+msgstr "Elektu koloron por la aktuala numerada stilo."
#. hJgCL
#: cui/uiconfig/ui/numberingoptionspage.ui:459
msgctxt "numberingoptionspage|extended_tip|relsize"
msgid "Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph."
-msgstr ""
+msgstr "Enigu la kvanton laŭ kiu vi volas aligrandigi la bulan signon rilate la tiparan alton de la aktuala alineo."
#. M4aPS
#: cui/uiconfig/ui/numberingoptionspage.ui:470
@@ -12897,7 +12897,7 @@ msgstr "Elekti..."
#: cui/uiconfig/ui/numberingoptionspage.ui:476
msgctxt "numberingoptionspage|extended_tip|bullet"
msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
-msgstr ""
+msgstr "Elektu la grafikaĵon, aŭ trovu la grafikan dosieron uzotan kiel bulon."
#. RJa39
#: cui/uiconfig/ui/numberingoptionspage.ui:494
@@ -12915,13 +12915,13 @@ msgstr "Apartigilo"
#: cui/uiconfig/ui/numberingoptionspage.ui:532
msgctxt "numberingoptionspage|extended_tip|suffix"
msgid "Enter a character or the text to display behind the number in the list. If you want to create a numbered list that uses the style \"1.)\", enter \".)\" in this box."
-msgstr ""
+msgstr "Enigu signon aŭ la tekston vidigotan malantaŭ la numero en la listo. Se vi volas krei numeritan liston kiu uzas la stilon \"1.)\", enigu je \".)\" en ĉi tiu kadron."
#. wVrAN
#: cui/uiconfig/ui/numberingoptionspage.ui:548
msgctxt "numberingoptionspage|extended_tip|prefix"
msgid "Enter a character or the text to display in front of the number in the list."
-msgstr ""
+msgstr "Enigu signon aŭ la tekston vidigotan antaŭ la numero en la listo."
#. FLJWG
#: cui/uiconfig/ui/numberingoptionspage.ui:561
@@ -12975,7 +12975,7 @@ msgstr "Sinsekva numerado"
#: cui/uiconfig/ui/numberingoptionspage.ui:706
msgctxt "numberingoptionspage|extended_tip|allsame"
msgid "Increases the numbering by one as you go down each level in the list hierarchy."
-msgstr ""
+msgstr "Pliigas la numeradon je unu kiel vi iras suben laŭ ĉiu nivelo en la lista hierarkio."
#. 9VSpp
#: cui/uiconfig/ui/numberingoptionspage.ui:717
@@ -13017,7 +13017,7 @@ msgstr "Krommarĝeno ĉe:"
#: cui/uiconfig/ui/numberingpositionpage.ui:150
msgctxt "numberingpositionpage|extended_tip|indentatmf"
msgid "Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line."
-msgstr ""
+msgstr "Enigu la distancon for de la maldekstra paĝmarĝeno ĝis la komenco de ĉiuj linioj en la numerita alineo kiuj sekvas la unuan linion."
#. FW9wv
#: cui/uiconfig/ui/numberingpositionpage.ui:163
@@ -13029,13 +13029,13 @@ msgstr "Tabo ĉe:"
#: cui/uiconfig/ui/numberingpositionpage.ui:182
msgctxt "numberingpositionpage|extended_tip|atmf"
msgid "If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position."
-msgstr ""
+msgstr "Se vi elektas tabon, kiu sekvu la numeradon, vi povas enigi nenegativan valoron por la taba pozicio."
#. dA4DF
#: cui/uiconfig/ui/numberingpositionpage.ui:200
msgctxt "numberingpositionpage|extended_tip|alignedatmf"
msgid "Enter the distance from the left page margin at which the numbering symbol will be aligned."
-msgstr ""
+msgstr "Enigu la distancon de la maldekstra paĝa marĝeno ĉe kiu la numerada simbolo ĝisrandiĝu."
#. tsTNP
#: cui/uiconfig/ui/numberingpositionpage.ui:214
@@ -13059,7 +13059,7 @@ msgstr "Nenio"
#: cui/uiconfig/ui/numberingpositionpage.ui:220
msgctxt "numberingpositionpage|extended_tip|numfollowedbylb"
msgid "Enter the distance from the left page margin at which the numbering symbol will be aligned."
-msgstr ""
+msgstr "Enigu la distancon de la maldekstra paĝa marĝeno ĉe kiu la numerada simbolo ĝisrandiĝu."
#. fXRT2
#: cui/uiconfig/ui/numberingpositionpage.ui:233
@@ -13141,13 +13141,13 @@ msgstr "Dekstre"
#: cui/uiconfig/ui/numberingpositionpage.ui:374
msgctxt "numberingpositionpage|extended_tip|numalignlb"
msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
-msgstr ""
+msgstr "Agordu la ĝisrandigon de la numeradaj simboloj. Elektu \"Maldekstre\" por ĝisrandigi la numeradan simbolon komenci tuj ĉe la pozicio \"Ĝisrandigita ĉe\". Elektu \"Dekstre\" por ĝisrandigi la simbolon finiĝi tuj antaŭ la pozicio \"Ĝisrandigita ĉe\". Elektu \"Centre\" por centrigi la simbolon ĉirkaŭ la pozicio \"Ĝisrandigita ĉe\"."
#. mLBFy
#: cui/uiconfig/ui/numberingpositionpage.ui:389
msgctxt "numberingpositionpage|extended_tip|num2alignlb"
msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
-msgstr ""
+msgstr "Agordu la ĝisrandigon de la numeradaj simboloj. Elektu \"Maldekstre\" por ĝisrandigi la numeradan simbolon komenci tuj ĉe la pozicio \"Ĝisrandigita ĉe\". Elektu \"Dekstre\" por ĝisrandigi la simbolon finiĝi tuj antaŭ la pozicio \"Ĝisrandigita ĉe\". Elektu \"Centre\" por centrigi la simbolon ĉirkaŭ la pozicio \"Ĝisrandigita ĉe\"."
#. 6DLtp
#: cui/uiconfig/ui/numberingpositionpage.ui:406
@@ -13165,7 +13165,7 @@ msgstr "Apriora"
#: cui/uiconfig/ui/numberingpositionpage.ui:448
msgctxt "numberingpositionpage|extended_tip|standard"
msgid "Resets the indent and the spacing values to the default values."
-msgstr ""
+msgstr "Aliagordas la krommarĝenon kaj la spacan valorojn al la aprioraj."
#. eLFGG
#: cui/uiconfig/ui/numberingpositionpage.ui:496
@@ -13177,7 +13177,7 @@ msgstr "Antaŭvidi"
#: cui/uiconfig/ui/numberingpositionpage.ui:557
msgctxt "numberingpositionpage|extended_tip|levellb"
msgid "Select the level(s) that you want to modify."
-msgstr ""
+msgstr "Elektu la nivelo(j)n ŝanĝotajn."
#. jRE6s
#: cui/uiconfig/ui/numberingpositionpage.ui:570
@@ -13201,7 +13201,7 @@ msgstr "Nomo:"
#: cui/uiconfig/ui/objectnamedialog.ui:128
msgctxt "objectnamedialog|extended_tip|ObjectNameDialog"
msgid "Enter a name for the selected object. The name will be visible in the Navigator."
-msgstr ""
+msgstr "Enigu nomon por la elektita objekto. La nomo estos videbla en la Navigilo."
#. 4TRWw
#: cui/uiconfig/ui/objecttitledescdialog.ui:15
@@ -13219,7 +13219,7 @@ msgstr "Titolo:"
#: cui/uiconfig/ui/objecttitledescdialog.ui:111
msgctxt "objecttitledescdialog|extended_tip|object_title_entry"
msgid "Enter a title text. This short name is visible as an alternative tag in HTML format. Accessibility tools can read this text."
-msgstr ""
+msgstr "Enigu titolan tekston. Ĉi tiu mallonga nomo estas videbla kiel alterntiva etikedo en HTML-forato. Alireblecaj iloj povas legi ĉi tiun tekston."
#. kDbQ9
#: cui/uiconfig/ui/objecttitledescdialog.ui:125
@@ -13231,13 +13231,13 @@ msgstr "Priskribo:"
#: cui/uiconfig/ui/objecttitledescdialog.ui:148
msgctxt "objecttitledescdialog|extended_tip|desc_entry"
msgid "Enter a description text. The long description text can be entered to describe a complex object or group of objects to users with screen reader software. The description is visible as an alternative tag for accessibility tools."
-msgstr ""
+msgstr "Enigu prikskriban tekston. La longa priskribo estas enigebla por priskribi kompleksan objekton aŭ objektaron al uzantoj kun ekranlega programaro. La priskibo estas videbla kiel alternativa etikedo por alireblecaj iloj."
#. 8BCe3
#: cui/uiconfig/ui/objecttitledescdialog.ui:179
msgctxt "objecttitledescdialog|extended_tip|ObjectTitleDescDialog"
msgid "Assigns a title and a description to the selected object. These are accessible for accessibility tools and as alternative tags when you export the document."
-msgstr ""
+msgstr "Ĝisrandigas titolon kaj priskribon por la elektita objekto. Tiuj estas alireblaj por alireblecaj iloj kaj kiel alternativaj etikedoj kiam vi eksportas la dokumenton."
#. s8E7z
#: cui/uiconfig/ui/optaccessibilitypage.ui:31
@@ -13249,7 +13249,7 @@ msgstr "Subtenantaj teknologiaj iloj (programrestartigo necesas)"
#: cui/uiconfig/ui/optaccessibilitypage.ui:40
msgctxt "extended_tip|acctool"
msgid "Allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices. The Java Runtime Environment must be installed on your computer before you can enable assistive support."
-msgstr ""
+msgstr "Ebligas al vi uzi helpoteknologion, ekzemple eksterajn ekranlegilojn, brajlilojn aŭ parolrekonajn enigilojn. Necesas instali la Ĝavointerpretilon ĉe via komputilo antaŭ ol vi povas enŝalti helpoteknologion."
#. EZqPM
#: cui/uiconfig/ui/optaccessibilitypage.ui:52
@@ -13261,7 +13261,7 @@ msgstr "Uzi tekstelektan kursoron en nurlegaj dokumentoj"
#: cui/uiconfig/ui/optaccessibilitypage.ui:61
msgctxt "extended_tip|textselinreadonly"
msgid "Displays cursor in read-only documents."
-msgstr ""
+msgstr "Vidigas la kursoron en nurlegaj dokumentoj."
#. APEfF
#: cui/uiconfig/ui/optaccessibilitypage.ui:73
@@ -13273,7 +13273,7 @@ msgstr "Permesi animaciajn grafikaĵojn"
#: cui/uiconfig/ui/optaccessibilitypage.ui:82
msgctxt "extended_tip|animatedgraphics"
msgid "Previews animated graphics, such as GIF images, in %PRODUCTNAME."
-msgstr ""
+msgstr "Antaŭrigardas animaciajn grafikaĵojn, ekzemple GIF-bildojn, en %PRODUCTNAME."
#. 3Q66x
#: cui/uiconfig/ui/optaccessibilitypage.ui:94
@@ -13285,7 +13285,7 @@ msgstr "Permesi animacian tekston"
#: cui/uiconfig/ui/optaccessibilitypage.ui:103
msgctxt "extended_tip|animatedtext"
msgid "Previews animated text, such as blinking and scrolling, in %PRODUCTNAME."
-msgstr ""
+msgstr "Antaŭrigardi animacian tekston, ekzemple pulsadon kaj rulumadon, en %PRODUCTNAME."
#. 2A83C
#: cui/uiconfig/ui/optaccessibilitypage.ui:121
@@ -13303,7 +13303,7 @@ msgstr "Aŭtomate trovi kontrastegan reĝimon de mastruma sistemo"
#: cui/uiconfig/ui/optaccessibilitypage.ui:163
msgctxt "extended_tip|autodetecthc"
msgid "Switches %PRODUCTNAME into high contrast mode when the system background color is very dark."
-msgstr ""
+msgstr "Ŝaltas je %PRODUCTNAME en tre kontrastan reĝimon kiam la sistema fona koloro estas tre malhela."
#. Sc8Cq
#: cui/uiconfig/ui/optaccessibilitypage.ui:175
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/eo/helpcontent2/source/text/sbasic/shared.po b/source/eo/helpcontent2/source/text/sbasic/shared.po
index a283e3b93f5..2360a930788 100644
--- a/source/eo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/eo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-06-23 11:15+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/eo/>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Kreas novan dosierujon ĉe datuma konservujo."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
+msgid "Creates a new directory on a data medium."
+msgstr "Kreas novan dosierujon ĉe datuma konservujo."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Ĉena esprimo kiu specifas la nomon kaj vojprefiskon de la dosierujo kreota. Ankaŭ uzeblas <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-notacio</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Se la vojprefikso ne estas trovita, la dosierujo kreiĝos en la aktuala dosierujo."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Forigas ekzistantan dosierujon de datuma konservujo."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Se la vojprefikso ne estas trovebla, la <emph>Ordono RmDir</emph> serĉas la dosierujon forigotan en la aktuala dosierujo. Se ĝi ne troviĝas tie, prierara mesaĝo vidiĝos."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Haltas la ruladon de Basic-programo."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Ŝaltas objekton kiel la aprioran. Krom se alia objekta nomo estas deklarita, ĉiuj trajtoj kaj metodoj referencas al la apriora objekto ĝis atingiĝas la ordono End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Uzu al <emph>With</emph> kaj <emph>End With</emph> se vi havas plurajn trajtojn aŭ metodojn por unu objekto."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Aŭdigas sonon per la aŭdigiloj de la komputilo. La tono estas sendependa de sistemo kaj oni ne povas modifi ĝian laŭton aŭ pitĉon."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/eo/helpcontent2/source/text/scalc/00.po b/source/eo/helpcontent2/source/text/scalc/00.po
index f19282389bb..326e4098586 100644
--- a/source/eo/helpcontent2/source/text/scalc/00.po
+++ b/source/eo/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-02-11 12:27+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/eo/>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/eo/helpcontent2/source/text/scalc/guide.po b/source/eo/helpcontent2/source/text/scalc/guide.po
index 9224d0e4951..470c5ed7a1a 100644
--- a/source/eo/helpcontent2/source/text/scalc/guide.po
+++ b/source/eo/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-30 22:38+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/eo/>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr ""
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr ""
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/eo/helpcontent2/source/text/sdraw/01.po b/source/eo/helpcontent2/source/text/sdraw/01.po
index 6c7cfc574d5..921a4f1d6cc 100644
--- a/source/eo/helpcontent2/source/text/sdraw/01.po
+++ b/source/eo/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 21:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/eo/helpcontent2/source/text/shared/01.po b/source/eo/helpcontent2/source/text/shared/01.po
index 1e8b0c64dd7..cde90dea4d2 100644
--- a/source/eo/helpcontent2/source/text/shared/01.po
+++ b/source/eo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-05 05:34+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/eo/>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/eo/helpcontent2/source/text/shared/guide.po b/source/eo/helpcontent2/source/text/shared/guide.po
index f7dfaeab0d1..09a544f83d4 100644
--- a/source/eo/helpcontent2/source/text/shared/guide.po
+++ b/source/eo/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-16 09:10+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/eo/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Labori per <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "HTML-dokumento"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "Teksto OpenDocument (plata XML)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Teksta dokumento OpenOffice.org 1.0"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Teksta dokumento de OpenOffice.org 1.0"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Teksta dokumento de OpenOffice.org 1.0"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portebla Documenta Formato"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portebla Documenta Formato"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "T602-dokumento"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Teksto"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Teksto"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "Filtriloj por GRAPHICFILTER"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows bitbildo"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD interŝanĝa formato"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF - Enhanced Meta File"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF - Enhanced Meta File"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Encapsulated PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Encapsulated PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr "text/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - dosiera formato QuickTime"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portebla Bitbildo"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portebla Grizomapo"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portebla Reta Grafiko"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portebla Reta Grafiko"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portebla Reta Grafiko"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portebla Reta Grafiko"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PBM - Portebla Bitbildo"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Sun Raster Bildo"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Bildo"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - Skalebla vektora grafikaĵo"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitbildo"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,148 +10447,139 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Erarraportilo"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Komencado de eraroraportilo"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Finado de Eraroraporto"
-
-#. vq6k8
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Sendado de Erarraporto"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Kiujn Datumojn estas Senditaj?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
msgstr ""
#. uD7Ga
@@ -22075,31 +21796,31 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Memoru krei unu apartan presan taskon por ĉiu fakso, alie, la unua ricevonto ricevos ĉiujn faksojn. En la dialogo <emph>Iloj - Retpoŝtkunfanda Asistanto</emph> elektu la eblon <emph>Presilo</emph> kaj marku la butonon <emph>Unuopaj presaj taskoj</emph>"
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
msgstr ""
#. nWgSj
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr ""
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
+msgid "Creating a Default Template"
msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "When you open a new document, the modified default template will be used."
msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/eo/helpcontent2/source/text/shared/optionen.po b/source/eo/helpcontent2/source/text/shared/optionen.po
index a008e5dac17..255b75ebee5 100644
--- a/source/eo/helpcontent2/source/text/shared/optionen.po
+++ b/source/eo/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-02-10 17:42+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/eo/>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "Vido"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,49 +3517,67 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Ekrantipara glatigo"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
msgstr ""
#. QWZyh
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,22 +3751,22 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Grafika eligaĵo"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr ""
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
msgstr ""
#. WzMq5
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN107A3\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Menu"
-msgstr "Menuo"
-
-#. WnNCQ
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"hd_id3156056\n"
-"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Ekrantipara glatigo"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr ""
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/swriter/guide.po b/source/eo/helpcontent2/source/text/swriter/guide.po
index 52d23b5d789..f970233e88e 100644
--- a/source/eo/helpcontent2/source/text/swriter/guide.po
+++ b/source/eo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/eo/>\n"
@@ -12519,13 +12519,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12564,13 +12564,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12591,58 +12591,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12672,13 +12654,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16911,14 +16893,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Krom se oni specifas alie, ĉiu nova dokumento de $[officename] baziĝas sur la apriora ŝablono."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] havas kelkajn <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">antaŭe difinitajn ŝablonojn</link> kiujn oni povas uzi por krei diversajn dokumentojn, ekzemple prikomercajn leterojn."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17271,14 +17253,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Por agordi la konduton de la rekta kursoro, elektu menueron <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferoj</emph></caseinline><defaultinline><emph>Iloj - Agordaĵoj</emph></defaultinline></switchinline><emph> - %PRODUCTNAME-Verkilo - Formatadaj helpiloj</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "En la breto <item type=\"menuitem\">Iloj</item>, alklaku la bildsimbolon <item type=\"menuitem\">Rekta Kursoro</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Bildsimbolo</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17289,32 +17271,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Alklaku en malplena loko en la tekstdokumento. La musindikilo ŝanĝas por reprezenti la ĝisrandigon kiu estos aplikata al la teksto tajpata de vi:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Bildsimbolo</alt></image> Ĝisrandigi maldrekstren"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Bildsimbolo</alt></image> Centrigi"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Bildsimbolo</alt></image> Ĝisrandigi drekstren"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
index 2d3f8627c8f..2caae151865 100644
--- a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/eo/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Kaŝi lumbildon"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Teksto..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "Dosiero"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ĝisrandigi"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ĝisrandigi"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Elekti ĝis alinea fino"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Elekti ĝis vorto dekstre"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/eo/sc/messages.po b/source/eo/sc/messages.po
index e99760650e1..13b788d9a65 100644
--- a/source/eo/sc/messages.po
+++ b/source/eo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/eo/>\n"
@@ -24592,213 +24592,213 @@ msgid "~File"
msgstr "Dosiero"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Agordi la borderojn de la elektitaj ĉeloj."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Pligrandigi krommarĝenon"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Malpligrandigi krommarĝenon"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hejmo"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hejmo"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Kampo"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Enmeti"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Enmeti"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Ĝisrandigi objekton"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Aranĝo"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Aranĝo"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "Statistikoj"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Datumoj"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "Datumoj"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Revidi"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Revidi"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vido"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "Vido"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Bildo"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bildo"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Desegni"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Desegni"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverti"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekto"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Objekto"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Aŭdvidaĵoj"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Spektaĵoj"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Presi"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Presi"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formularo"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formularo"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Sufikso"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Sufikso"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Iloj"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Iloj"
@@ -29628,338 +29628,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solvilo"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Agordoj..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "Solvi"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Cela ĉelo"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimumigi rezulton al"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Ŝanĝante ĉelojn"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minimumo"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Maksimumo"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "Valoro de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Ĉela referenco"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "Operatoro"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Valoro"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Ĉela referenco"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Ĉela referenco"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Ĉela referenco"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Ĉela referenco"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Entjero"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Duuma"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operatoro"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Entjero"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Duuma"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operatoro"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Entjero"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Duuma"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operatoro"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Entjero"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Duuma"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operatoro"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valoro"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valoro"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valoro"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valoro"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Forigi"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Forigi"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Forigi"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Forigi"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Limigaj kondiĉoj"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/eo/sd/messages.po b/source/eo/sd/messages.po
index db567d2247d..e8474b37a3f 100644
--- a/source/eo/sd/messages.po
+++ b/source/eo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-13 12:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/eo/>\n"
@@ -3819,116 +3819,116 @@ msgstr "Tableo"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverti"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bildo"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bildo"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Desegni"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Desegni"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekto"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekto"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Aŭdvidaĵoj"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Spektaĵoj"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formularo"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formularo"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "Ĉefa"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Ĉefa"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Ĉefa"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Sufikso"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Sufikso"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Iloj"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Iloj"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "Menuo"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Sufikso"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "Dosiero"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hejmo"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hejmo"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Kampo"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Enmeti"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Enmeti"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "Aranĝo"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Aranĝo"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Vidigi prezentaĵon"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Vidigi prezentaĵon"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Revidi"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Revidi"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vido"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "Vido"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tabelo"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Tabelo"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverti"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bildo"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bildo"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Desegni"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Desegni"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekto"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekto"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Spektaĵoj"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Spektaĵoj"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formularo"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formularo"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Ĉefa"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Ĉefa"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "Vido"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Konturo"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Sufikso"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Sufikso"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Iloj"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Iloj"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Redakti konturon"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Sufikso"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/eo/starmath/messages.po b/source/eo/starmath/messages.po
index 9f1b4d75009..5c634b3cbca 100644
--- a/source/eo/starmath/messages.po
+++ b/source/eo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/eo/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/eo/svx/messages.po b/source/eo/svx/messages.po
index 99e67fa0a6e..ebecfec6c4f 100644
--- a/source/eo/svx/messages.po
+++ b/source/eo/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/eo/>\n"
"Language: eo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1558243928.000000\n"
#. 3GkZj
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Adapti lumbildon al la aktuala fenestro"
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Ne povis ŝargi je SmartArts. Konservi en Microsoft Office 2010 aŭ posta versio evitos tiun problemon."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Naviga breto"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"La kolapsraporto sukcese alŝutiĝis.\n"
-"Vi baldaŭ povos trovi la raporton ĉe: \n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Sendi raporton pri kolapso"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Ne sendi"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -15712,7 +15709,7 @@ msgstr "_Ignori"
#: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:56
msgctxt "docrecoveryrecoverdialog|next"
msgid "_Start"
-msgstr "_Starti"
+msgstr "_Startigi"
#. DWWCA
#: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:90
diff --git a/source/eo/sw/messages.po b/source/eo/sw/messages.po
index 2a2e25718c1..6230a38d06a 100644
--- a/source/eo/sw/messages.po
+++ b/source/eo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/eo/>\n"
@@ -100,11 +100,11 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr "Tenu orditaj nivelojn de titoloj. Titola nivelo %LEVEL_CURRENT% devas ne sekvi je %LEVEL_PREV%."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr "Evitu je Fontworks en viaj dokumentoj. Certigu ke vi uzas ĝin por vidigi specimenon aŭ alian sensignifan tekston."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr ""
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -20361,181 +20361,181 @@ msgid "~File"
msgstr "~Dosiero"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hejmo"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hejmo"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Enmeti"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Enmeti"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Aranĝo"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Aranĝo"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referencoj"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referencoj"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Revidi"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Revidi"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vido"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "Vido"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tabelo"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Tabelo"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Bildo"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bildo"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Desegni"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Desegni"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekto"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekto"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Spektaĵoj"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Spektaĵoj"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Presi"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Presi"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formularo"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formularo"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Sufikso"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Sufikso"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Iloj"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Iloj"
@@ -21573,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Redakti konturon"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Sufikso"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/es/cui/messages.po b/source/es/cui/messages.po
index 21763db24bd..c4a36c9dbe5 100644
--- a/source/es/cui/messages.po
+++ b/source/es/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566235515.000000\n"
#. GyY9M
@@ -2098,7 +2098,7 @@ msgstr "Aplicar a %MODULE"
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME offers a variety of user interface options to make you feel at home"
-msgstr ""
+msgstr "%PRODUCTNAME ofrece una variedad de opciones de interfaz de usuario para hacerle sentir como en casa"
#. m8rYd
#: cui/inc/tipoftheday.hrc:49
@@ -3401,7 +3401,7 @@ msgstr "¿No puede modificar o eliminar un estilo de celda personalizado? Revise
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "¿Necesita llenar una serie? Seleccione el intervalo de celdas y el menú Hoja ▸ Rellenar celdas ▸ Series y escoja entre Lineal, Crecimiento, Fecha y Relleno automático."
#. BiSJM
#. local help missing
@@ -3420,7 +3420,7 @@ msgstr "En el campo Reemplazar de las opciones de corrección automática es pos
#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
-msgstr ""
+msgstr "¿Quiere duplicar la fila de encima? Presione %MOD1 + D o utilice Hoja ▸ Rellenar celdas ▸ Rellenar hacia abajo."
#. MG7Pu
#: cui/inc/tipoftheday.hrc:263
@@ -20916,60 +20916,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Seleccione su interfaz de usuario predilecta"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Barras de herramientas convencionales"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Barra de herramientas única"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Barra lateral"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "En pestañas"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "En pestañas, compacta"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Agrupada, compacta"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Barra agrupada"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Agrupada, compacta"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Contextual, sencilla"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Contextual, grupos"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Barra de herramientas única"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Barra lateral"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/es/dbaccess/messages.po b/source/es/dbaccess/messages.po
index 94e203f292c..7fb05232a86 100644
--- a/source/es/dbaccess/messages.po
+++ b/source/es/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: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562301625.000000\n"
#. BiN6g
@@ -2346,7 +2346,7 @@ msgstr "Error"
#: dbaccess/inc/strings.hrc:417
msgctxt "STR_EXCEPTION_WARNING"
msgid "Warning"
-msgstr "Aviso"
+msgstr "Alerta"
#. LSBpE
#: dbaccess/inc/strings.hrc:418
@@ -3140,7 +3140,7 @@ msgstr "Instrucción de incremento a_utomático"
#: dbaccess/uiconfig/ui/fielddescpage.ui:113
msgctxt "fielddescpage|STR_DEFAULT_VALUE"
msgid "_Default value"
-msgstr ""
+msgstr "Valor pre_determinado"
#. niTFN
#: dbaccess/uiconfig/ui/fielddescpage.ui:138
diff --git a/source/es/extras/source/autocorr/emoji.po b/source/es/extras/source/autocorr/emoji.po
index e984fe99e86..8defa722e90 100644
--- a/source/es/extras/source/autocorr/emoji.po
+++ b/source/es/extras/source/autocorr/emoji.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-08-02 07:43+0000\n"
-"Last-Translator: Mauricio Baeza <public@elmau.net>\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/extrassourceautocorremoji/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -9054,7 +9054,7 @@ msgctxt ""
"GRINNING_FACE_WITH_SMILING_EYES\n"
"LngText.text"
msgid "grin"
-msgstr "sonrisa"
+msgstr "sonrisa radiante"
#. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji
#. DRNjV
@@ -14124,7 +14124,7 @@ msgctxt ""
"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
"LngText.text"
msgid "smiling4"
-msgstr "sonriendo4"
+msgstr "sonrisa4"
#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
#. jB9dt
@@ -14174,7 +14174,7 @@ msgctxt ""
"PERSON_WITH_HEADSCARF\n"
"LngText.text"
msgid "headscarf"
-msgstr ""
+msgstr "velo"
#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
#. wwFwk
@@ -14524,7 +14524,7 @@ msgctxt ""
"DUMPLING\n"
"LngText.text"
msgid "dumpling"
-msgstr ""
+msgstr "domplin"
#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
#. APAjG
diff --git a/source/es/filter/messages.po b/source/es/filter/messages.po
index a8dfd9fda3e..4808752b324 100644
--- a/source/es/filter/messages.po
+++ b/source/es/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-10-22 22:35+0000\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562301732.000000\n"
#. 5AQgJ
@@ -609,7 +609,7 @@ msgstr ""
#: filter/uiconfig/ui/pdfgeneralpage.ui:769
msgctxt "pdfgeneralpage|pdfua"
msgid "Universal Accessibilit_y (PDF/UA)"
-msgstr ""
+msgstr "Acces_ibilidad universal (PDF/UA)"
#. 4B3FD
#: filter/uiconfig/ui/pdfgeneralpage.ui:773
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index 705a47e6dd7..d0c784a10b4 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-05 10:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557855034.000000\n"
#. yzYVt
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Instrucción MkDir\">Instrucción MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Crea una carpeta nueva en un soporte de datos."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "Creates a new directory on a data medium."
+msgstr "Crea una carpeta nueva en un soporte de datos."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Texto As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que especifique el nombre y ruta del directorio que se desea crear. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">notación URL</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Si la ruta de acceso no se determina, se crea el directorio en el directorio actual."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Elimina una carpeta existente de un soporte de datos."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Texto As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Si la ruta de acceso no se determina, la <emph>instrucción RmDir</emph> busca el directorio que se desea borrar en la ruta actual. Si no lo encuentra, aparece un mensaje de error."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Detiene la ejecución del programa Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Instrucción With\">Instrucción With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Define un objeto como el predeterminado. A menos que se declare otro nombre de objeto, todas las propiedades y métodos hacen referencia al objeto predeterminado hasta que se llega a la instrucción End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Use <emph>With</emph> y <emph>End With</emph> si tiene varias propiedades o métodos para un único objeto."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Hace sonar un tono a través del altavoz del ordenador. El tono depende del sistema y no puede modificarse el volumen ni la modulación."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/es/helpcontent2/source/text/scalc/00.po b/source/es/helpcontent2/source/text/scalc/00.po
index 404604e58b2..fb91b5d0604 100644
--- a/source/es/helpcontent2/source/text/scalc/00.po
+++ b/source/es/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-03 13:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/es/>\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Vaya a <item type=\"menuitem\">Ver ▸ Dividir ventana</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Vaya a <item type=\"menuitem\">Ver ▸Inmovilizar celdas ▸ Inmovilizar filas y columnas</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 0ce0f9bb65f..d38974c03d3 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:33+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564682427.000000\n"
#. sZfWF
@@ -1715,7 +1715,7 @@ msgctxt ""
"par_id2308201415431525817\n"
"help.text"
msgid "<ahelp hid=\".\">Populate a cell range with automatically generated pseudo random numbers with the selected distribution function and its parameters.</ahelp>"
-msgstr "<ahelp hid=\".\">Rellena un intervalo de celdas con números aleatorios de acuerdo con la distribución seleccionada y sus parámetros.</ahelp>"
+msgstr "<ahelp hid=\".\">Rellena un intervalo de celdas con números pseudoaleatorios de acuerdo con la distribución seleccionada y sus parámetros.</ahelp>"
#. 6dhgD
#: 02140700.xhp
@@ -9995,7 +9995,7 @@ msgctxt ""
"par_id3149312\n"
"help.text"
msgid "<variable id=\"logicaltext\">This category contains the <emph>Logical</emph> functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"logicaltext\">Esta categoría contiene las funciones <emph>lógicas</emph>.</variable>"
#. ADKTB
#: 04060105.xhp
@@ -12695,7 +12695,7 @@ msgctxt ""
"bm_id3157762\n"
"help.text"
msgid "<bookmark_value>PI function</bookmark_value>"
-msgstr "<bookmark_value>PI</bookmark_value>"
+msgstr "<bookmark_value>función PI</bookmark_value>"
#. kbhnE
#: 04060106.xhp
@@ -45950,7 +45950,7 @@ msgctxt ""
"hd_id3149530\n"
"help.text"
msgid "Borders"
-msgstr "Borde"
+msgstr "Bordes"
#. BisJb
#: 05110000.xhp
@@ -45986,7 +45986,7 @@ msgctxt ""
"hd_id3155379\n"
"help.text"
msgid "Pattern"
-msgstr "Modelo"
+msgstr "Motivo"
#. CTDte
#: 05110000.xhp
@@ -45995,7 +45995,7 @@ msgctxt ""
"par_id3150368\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">Cuando está marcada, indica que desea conservar el patrón del formato seleccionado.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">Cuando está marcada, indica que desea conservar el motivo del formato seleccionado.</ahelp>"
#. C6ePa
#: 05110000.xhp
@@ -46499,7 +46499,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
-msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">La orden <emph>División de palabras</emph> abre el cuadro de diálogo para establecer la separación por sílabas en $[officename] Calc.</ahelp></variable>"
+msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">La orden <emph>División de palabras</emph> abre el cuadro de diálogo para establecer el silabeo en $[officename] Calc.</ahelp></variable>"
#. xwmmG
#: 06020000.xhp
@@ -52745,7 +52745,7 @@ msgctxt ""
"par_id221603980244052\n"
"help.text"
msgid "Only up to 255 characters are saved, when using Excel format."
-msgstr ""
+msgstr "Cuando se utiliza el formato de Excel, se guardan únicamente 255 caracteres como máximo."
#. pfATZ
#: 12120100.xhp
@@ -53204,7 +53204,7 @@ msgctxt ""
"hd_id1000013\n"
"help.text"
msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.3."
-msgstr ""
+msgstr "Esta función es parte del estándar Open Document Format for Office Applications (OpenDocument), versión 1.3."
#. SGHPh
#: calculate.xhp
@@ -56480,7 +56480,7 @@ msgctxt ""
"par_id831605805755075\n"
"help.text"
msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
-msgstr ""
+msgstr "Para que estos ejemplos funcionen como se han descrito, asegúrese de que esté seleccionada la opción <emph>Activar expresiones regulares en fórmulas</emph>, la cual se halla en <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME ▸ Preferencias</menuitem></caseinline><defaultinline><menuitem>Herramientas ▸ Opciones</menuitem></defaultinline></switchinline><menuitem> ▸ $[officename] Calc ▸ Calcular</menuitem>."
#. iHFsx
#: func_countifs.xhp
@@ -60458,7 +60458,7 @@ msgctxt ""
"hd_id30455222431067\n"
"help.text"
msgid "Using regular expressions and nested functions"
-msgstr ""
+msgstr "Uso de expresiones regulares y funciones anidadas"
#. CBaMz
#: func_minifs.xhp
@@ -60476,7 +60476,7 @@ msgctxt ""
"par_id27619246864839\n"
"help.text"
msgid "Calculates the minimum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and minimum. Returns 65."
-msgstr ""
+msgstr "Calcula el mínimo de los valores del intervalo C2:C6 que corresponde a todos los valores del intervalo B2:B6 excepto su mínimo y máximo. Devuelve 65."
#. CnZcV
#: func_minifs.xhp
diff --git a/source/es/helpcontent2/source/text/scalc/02.po b/source/es/helpcontent2/source/text/scalc/02.po
index e1315b20cf3..9eb9de75007 100644
--- a/source/es/helpcontent2/source/text/scalc/02.po
+++ b/source/es/helpcontent2/source/text/scalc/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: 2020-06-29 13:08+0200\n"
-"PO-Revision-Date: 2020-08-15 14:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc02/es/>\n"
"Language: es\n"
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3156444\n"
"help.text"
msgid "$[officename] automatically suggests a cell range, provided that the spreadsheet contains data. If the cell range already contains a function, you can combine it with the new one to yield the function applied to the range data. If the range contains filters, the Subtotal function is inserted instead of the selected function."
-msgstr ""
+msgstr "$[officename] sugerirá automáticamente un intervalo de celdas siempre y cuando la hoja de cálculo contenga datos. Si el intervalo de celdas contuviere ya una función, podrá combinarla con la nueva para producir un resultado correspondiente a los datos del intervalo. Si el intervalo contuviere filtros, se insertará la función Subtotal en lugar de la función seleccionada."
#. vpnqf
#: 06030000.xhp
@@ -455,7 +455,7 @@ msgctxt ""
"par_id3153189\n"
"help.text"
msgid "Click the <emph>Accept</emph> icon to use the formula displayed in the input line or <emph>Cancel</emph>."
-msgstr ""
+msgstr "Pulse en el icono <emph>Aceptar</emph> para utilizar la fórmula mostrada en el cuadro de entrada; en caso contrario, pulse en <emph>Cancelar</emph>."
#. TVD6h
#: 06030000.xhp
@@ -518,7 +518,7 @@ msgctxt ""
"par_id991592658144387\n"
"help.text"
msgid "When the selected range has one row, the function result is placed in the first available cell on the right of the selected range."
-msgstr ""
+msgstr "Cuando el intervalo seleccionado consta de una fila, el resultado de la función se coloca en la primera celda disponible a la derecha del intervalo seleccionado."
#. NYGR7
#: 06040000.xhp
diff --git a/source/es/helpcontent2/source/text/scalc/guide.po b/source/es/helpcontent2/source/text/scalc/guide.po
index e0265195347..77a5487c7c3 100644
--- a/source/es/helpcontent2/source/text/scalc/guide.po
+++ b/source/es/helpcontent2/source/text/scalc/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: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-11-17 16:43+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/es/>\n"
"Language: es\n"
@@ -5693,7 +5693,7 @@ msgctxt ""
"par_id3163853\n"
"help.text"
msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. These symbols are included in searches when the Formatted Display search option is activated."
-msgstr ""
+msgstr "El contenido de las celdas puede formatearse de varias formas. Por ejemplo, un número se puede formatear como moneda para que se muestre con un símbolo monetario. Estos símbolos se incluyen en las búsquedas cuando se activa la opción Cadena formateada."
#. Z4ABm
#: finding.xhp
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Para inmovilizar horizontal y verticalmente seleccione la <emph>celda</emph> situada debajo de la fila y a la derecha de la columna que quiera fijar."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Vaya a <item type=\"menuitem\">Ver ▸ Inmovilizar celdas ▸ Inmovilizar filas y columnas</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr "Vaya a <item type=\"menuitem\">Ver ▸ Inmovilizar filas y columnas</item>."
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Para desactivar la funcionalidad, diríjase de nuevo a <item type=\"menuitem\">Ver ▸ Inmovilizar celdas ▸ Inmovilizar filas y columnas</item>."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr "Para desactivarlo, diríjase nuevamente a <item type=\"menuitem\">Ver ▸ Inmovilizar filas y columnas</item>."
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Si desea que una fila determinada se imprima en todas las hojas de un documento, utilice la orden <item type=\"menuitem\">Formato ▸ Zonas de impresión ▸ Editar</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Ver - Inmovilizar celdas - Inmovilizar filas y columnas\">Ver ▸ Inmovilizar celdas ▸ Inmovilizar filas y columnas</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Ver - Inmovilizar celdas - Inmovilizar filas y columnas\">Ver ▸ Inmovilizar filas y columnas</link>"
#. RbKLt
#: line_fix.xhp
@@ -12587,7 +12587,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Edit Macros</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Herramientas ▸ Macros ▸ Editar macros</menuitem>."
#. N4uB4
#: userdefined_function.xhp
@@ -13451,7 +13451,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
-msgstr "En <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ $[officename] ▸ General</emph> puede definir el siglo que se usa cuando escribe un año con solo dos dígitos. El intervalo de fechas predeterminado es desde 1930 hasta 2029."
+msgstr "En <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ $[officename] ▸ General</emph> puede definir el siglo que se usa cuando escribe un año con solo dos dígitos. El intervalo de fechas predeterminado abarca desde 1930 hasta 2029."
#. zB3Ff
#: year2000.xhp
diff --git a/source/es/helpcontent2/source/text/sdatabase.po b/source/es/helpcontent2/source/text/sdatabase.po
index 87b3c3ab207..4d31dacc9a4 100644
--- a/source/es/helpcontent2/source/text/sdatabase.po
+++ b/source/es/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/es/>\n"
"Language: es\n"
@@ -1093,7 +1093,7 @@ msgctxt ""
"par_id3155533\n"
"help.text"
msgid "No function will be executed."
-msgstr ""
+msgstr "No se ejecutará ninguna función."
#. 6dWZZ
#: 02010100.xhp
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3166420\n"
"help.text"
msgid "Average"
-msgstr ""
+msgstr "Promedio"
#. NfRNs
#: 02010100.xhp
@@ -1111,7 +1111,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "Calculates the arithmetic mean of a field."
-msgstr ""
+msgstr "Calcula la media aritmética de un campo."
#. 6z2Kj
#: 02010100.xhp
@@ -1120,7 +1120,7 @@ msgctxt ""
"par_id3149979\n"
"help.text"
msgid "Count"
-msgstr ""
+msgstr "Recuento"
#. rvWA5
#: 02010100.xhp
@@ -1129,7 +1129,7 @@ msgctxt ""
"par_id3155810\n"
"help.text"
msgid "Determines the number of records in the table. Empty fields can either be counted (a) or excluded (b)."
-msgstr ""
+msgstr "Determina el número de registros de la tabla. Los campos vacíos pueden incluirse (a) o excluirse (b)."
#. UyAx2
#: 02010100.xhp
@@ -1156,7 +1156,7 @@ msgctxt ""
"par_id3153067\n"
"help.text"
msgid "Maximum"
-msgstr ""
+msgstr "Máximo"
#. ds4ey
#: 02010100.xhp
@@ -1165,7 +1165,7 @@ msgctxt ""
"par_id3159221\n"
"help.text"
msgid "Determines the highest value of a record for that field."
-msgstr ""
+msgstr "Determina el valor más alto de un registro para este campo."
#. EhSWy
#: 02010100.xhp
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3146866\n"
"help.text"
msgid "Minimum"
-msgstr ""
+msgstr "Mínimo"
#. VxmeB
#: 02010100.xhp
@@ -1183,7 +1183,7 @@ msgctxt ""
"par_id3157982\n"
"help.text"
msgid "Determines the lowest value of a record for that field."
-msgstr ""
+msgstr "Determina el valor más bajo de un registro para este campo."
#. CvkuF
#: 02010100.xhp
@@ -1192,7 +1192,7 @@ msgctxt ""
"par_id3154828\n"
"help.text"
msgid "Sum"
-msgstr ""
+msgstr "Suma"
#. 82gAC
#: 02010100.xhp
@@ -1201,7 +1201,7 @@ msgctxt ""
"par_id3154536\n"
"help.text"
msgid "Calculates the sum of the values of records for the associated fields."
-msgstr ""
+msgstr "Calcula la suma de los valores de los registros para los campos asociados."
#. zCzVC
#: 02010100.xhp
@@ -1210,7 +1210,7 @@ msgctxt ""
"par_id3148820\n"
"help.text"
msgid "Group"
-msgstr ""
+msgstr "Agrupar"
#. tSPNG
#: 02010100.xhp
@@ -1237,7 +1237,7 @@ msgctxt ""
"par_id3156340\n"
"help.text"
msgid "SELECT FUNCTION(column) FROM table."
-msgstr ""
+msgstr "SELECT FUNCTION(columna) FROM tabla."
#. qAAoF
#: 02010100.xhp
@@ -1273,7 +1273,7 @@ msgctxt ""
"par_id3148651\n"
"help.text"
msgid "To use other functions not listed in the list box, you must enter them manually under <emph>Field</emph>."
-msgstr ""
+msgstr "Para utilizar estas funciones no enumeradas, las debe introducir manualmente en <emph>Campo</emph>."
#. WkboS
#: 02010100.xhp
@@ -1282,7 +1282,7 @@ msgctxt ""
"par_id3155098\n"
"help.text"
msgid "You can also assign aliases to function calls. If you do not want to display the query string in the column header, enter a desired substitute name under <emph>Alias</emph>."
-msgstr ""
+msgstr "También es posible asignar alias a las llamadas de las funciones. Si no quiere que se muestre la cadena de la consulta en la cabecera de la columna, introduzca un nombre sustituto en <emph>Alias</emph>."
#. 98GCC
#: 02010100.xhp
@@ -1300,7 +1300,7 @@ msgctxt ""
"par_id3149425\n"
"help.text"
msgid "SELECT FUNCTION() AS alias FROM table"
-msgstr ""
+msgstr "SELECT FUNCTION() AS alias FROM tabla"
#. EjzuD
#: 02010100.xhp
@@ -1309,7 +1309,7 @@ msgctxt ""
"par_id3144431\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Ejemplo:"
#. G9URE
#: 02010100.xhp
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_id3154614\n"
"help.text"
msgid "SELECT COUNT(*) AS count FROM \"Item\""
-msgstr ""
+msgstr "SELECT COUNT(*) AS recuento FROM \"Articulo\""
#. xiNnR
#: 02010100.xhp
@@ -1327,7 +1327,7 @@ msgctxt ""
"par_id3154610\n"
"help.text"
msgid "If you run such a function, you cannot insert any additional columns for the query other than as an argument in a \"Group\" function."
-msgstr ""
+msgstr "Si ejecuta esta función, no podrá insertar más columnas para la consulta que no sean argumentos de la función «Agrupar»."
#. EHACK
#: 02010100.xhp
@@ -1336,7 +1336,7 @@ msgctxt ""
"par_id3154644\n"
"help.text"
msgid "<emph>Examples</emph>"
-msgstr ""
+msgstr "<emph>Ejemplos</emph>"
#. N5CBE
#: 02010100.xhp
@@ -1345,7 +1345,7 @@ msgctxt ""
"par_id3151120\n"
"help.text"
msgid "In the following example, a query is run through two tables: an \"Item\" table with the \"Item_No\" field and a \"Suppliers\" table with the \"Supplier_Name\" field. In addition, both tables have a common field name \"Supplier_No.\""
-msgstr ""
+msgstr "En el ejemplo siguiente, se ejecuta una consulta a través de dos tablas: una, «Artículos», con el campo «Num_articulo», y la otra, «Proveedores», con el campo «Nombre_proveedor». Ambas tablas cuentan además con un nombre de campo en común, «Num_proveedor»."
#. P5hJD
#: 02010100.xhp
@@ -1354,7 +1354,7 @@ msgctxt ""
"par_id3155144\n"
"help.text"
msgid "The following steps are required to create a query containing all suppliers who deliver more than three items."
-msgstr ""
+msgstr "Los pasos descritos a continuación son necesarios para crear una consulta que contenga todos los proveedores que entregan más de tres artículos."
#. ZhRQD
#: 02010100.xhp
@@ -1363,7 +1363,7 @@ msgctxt ""
"par_id3153240\n"
"help.text"
msgid "Insert the \"Item\" and \"Suppliers\" tables into the query design."
-msgstr ""
+msgstr "Inserte las tablas «Artículo» y «Proveedores» en el diseño de la consulta."
#. LMRUV
#: 02010100.xhp
@@ -1372,7 +1372,7 @@ msgctxt ""
"par_id3148807\n"
"help.text"
msgid "Link the \"Supplier_No\" fields of the two tables if there is not already a relation of this type."
-msgstr ""
+msgstr "Enlace los campos «Num_proveedor» de las dos tablas si todavía no existiese una relación de este tipo."
#. qWhFA
#: 02010100.xhp
@@ -1390,7 +1390,7 @@ msgctxt ""
"par_id3151009\n"
"help.text"
msgid "Enter >3 as a criterion and disable the Visible field."
-msgstr ""
+msgstr "Introduzca >3 como criterio y desactive el campo Visible."
#. VwEhF
#: 02010100.xhp
@@ -1408,7 +1408,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "Run the query."
-msgstr ""
+msgstr "Ejecute la consulta."
#. EzQsj
#: 02010100.xhp
@@ -1426,7 +1426,7 @@ msgctxt ""
"par_id3153045\n"
"help.text"
msgid "Insert the \"Item\" table into the query design."
-msgstr ""
+msgstr "Inserte la tabla «Artículo» en el diseño de la consulta."
#. tjfuE
#: 02010100.xhp
@@ -1435,7 +1435,7 @@ msgctxt ""
"par_id3149802\n"
"help.text"
msgid "Double-click the \"Price\" and \"Supplier_No\" fields."
-msgstr ""
+msgstr "Pulse dos veces en los campos «Precio» y «Num_proveedor»."
#. 6dBkt
#: 02010100.xhp
@@ -1471,7 +1471,7 @@ msgctxt ""
"par_id3155547\n"
"help.text"
msgid "Run the query."
-msgstr ""
+msgstr "Ejecute la consulta."
#. EkHzB
#: 02010100.xhp
@@ -1480,7 +1480,7 @@ msgctxt ""
"par_id3147549\n"
"help.text"
msgid "The following context menu commands and symbols are available:"
-msgstr ""
+msgstr "Dispone de las órdenes de menú contextual y los símbolos siguientes:"
#. PesFs
#: 02010100.xhp
@@ -1489,7 +1489,7 @@ msgctxt ""
"hd_id3154172\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Funciones"
#. BchuJ
#: 02010100.xhp
@@ -1498,7 +1498,7 @@ msgctxt ""
"par_id3150414\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides a row for the selection of functions.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Muestra u oculta una fila según la selección de funciones.</ahelp>"
#. yx5XE
#: 02010100.xhp
@@ -1507,7 +1507,7 @@ msgctxt ""
"hd_id3149872\n"
"help.text"
msgid "Table Name"
-msgstr ""
+msgstr "Nombre de tabla"
#. ELTGJ
#: 02010100.xhp
@@ -1525,7 +1525,7 @@ msgctxt ""
"hd_id3145117\n"
"help.text"
msgid "Alias Name"
-msgstr ""
+msgstr "Nombre de alias"
#. LDFZB
#: 02010100.xhp
@@ -1543,7 +1543,7 @@ msgctxt ""
"hd_id3153298\n"
"help.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Valores distintos"
#. 23sAF
#: 02010100.xhp
@@ -1597,7 +1597,7 @@ msgctxt ""
"par_id3147501\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Allows you to limit the maximum number of records returned by a query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Le permite limitar el número máximo de registros devueltos por una consulta.</ahelp>"
#. B6S5f
#: 02010100.xhp
@@ -1615,7 +1615,7 @@ msgctxt ""
"hd_id3148926\n"
"help.text"
msgid "Formulating filter conditions"
-msgstr ""
+msgstr "Formular las condiciones del filtro"
#. iFSpm
#: 02010100.xhp
@@ -1633,7 +1633,7 @@ msgctxt ""
"par_id3149044\n"
"help.text"
msgid "Operator"
-msgstr ""
+msgstr "Operador"
#. mfdEx
#: 02010100.xhp
@@ -1642,7 +1642,7 @@ msgctxt ""
"par_id3152471\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significado"
#. mBZgC
#: 02010100.xhp
@@ -1651,7 +1651,7 @@ msgctxt ""
"par_id3147407\n"
"help.text"
msgid "Condition is satisfied if..."
-msgstr ""
+msgstr "La condición se cumple si…"
#. gqkRK
#: 02010100.xhp
@@ -1660,7 +1660,7 @@ msgctxt ""
"par_id3153026\n"
"help.text"
msgid "equal to"
-msgstr ""
+msgstr "igual a"
#. hw7KZ
#: 02010100.xhp
@@ -1669,7 +1669,7 @@ msgctxt ""
"par_id3148895\n"
"help.text"
msgid "... the content of the field is identical to the indicated expression."
-msgstr ""
+msgstr "… el contenido del campo es idéntico a la expresión indicada."
#. A8XJU
#: 02010100.xhp
@@ -1678,7 +1678,7 @@ msgctxt ""
"par_id3153120\n"
"help.text"
msgid "The operator = will not be displayed in the query fields. If you enter a value without any operator, the = operator is automatically assumed."
-msgstr ""
+msgstr "El operador = no se mostrará en los campos de la consulta. Si introduce un valor sin algún operador, se da por supuesto el operador =."
#. mWwUE
#: 02010100.xhp
@@ -1696,7 +1696,7 @@ msgctxt ""
"par_id3145635\n"
"help.text"
msgid "... the content of the field does not correspond to the specified expression."
-msgstr ""
+msgstr "… el contenido del campo no se corresponde con la expresión especificada."
#. dtjkU
#: 02010100.xhp
@@ -1705,7 +1705,7 @@ msgctxt ""
"par_id3146815\n"
"help.text"
msgid "greater than"
-msgstr ""
+msgstr "mayor que"
#. gCWug
#: 02010100.xhp
@@ -1714,7 +1714,7 @@ msgctxt ""
"par_id3149150\n"
"help.text"
msgid "... the content of the field is greater than the specified expression."
-msgstr ""
+msgstr "… el contenido del campo es mayor que la expresión especificada."
#. QkAKk
#: 02010100.xhp
@@ -1723,7 +1723,7 @@ msgctxt ""
"par_id3147379\n"
"help.text"
msgid "less than"
-msgstr ""
+msgstr "menor que"
#. xxPdk
#: 02010100.xhp
@@ -1732,7 +1732,7 @@ msgctxt ""
"par_id3150375\n"
"help.text"
msgid "... the content of the field is less than the specified expression."
-msgstr ""
+msgstr "… el contenido del campo es menor que la expresión especificada."
#. 4aJjX
#: 02010100.xhp
@@ -1741,7 +1741,7 @@ msgctxt ""
"par_id3150636\n"
"help.text"
msgid "greater than or equal to"
-msgstr ""
+msgstr "mayor que o igual a"
#. 2rwQm
#: 02010100.xhp
@@ -1750,7 +1750,7 @@ msgctxt ""
"par_id3154584\n"
"help.text"
msgid "... the content of the field is greater than or equal to the specified expression."
-msgstr ""
+msgstr "… el contenido del campo es mayor que o igual a la expresión especificada."
#. ADRZk
#: 02010100.xhp
@@ -1759,7 +1759,7 @@ msgctxt ""
"par_id3154052\n"
"help.text"
msgid "less than or equal to"
-msgstr ""
+msgstr "menor que o igual a"
#. 9KtmZ
#: 02010100.xhp
@@ -1768,7 +1768,7 @@ msgctxt ""
"par_id3157902\n"
"help.text"
msgid "... the content of the field is less than or equal to the specified expression."
-msgstr ""
+msgstr "… el contenido del campo es menor que o igual a la expresión especificada."
#. DBXG9
#: 02010100.xhp
@@ -1777,7 +1777,7 @@ msgctxt ""
"par_id3154630\n"
"help.text"
msgid "$[officename] command"
-msgstr ""
+msgstr "Orden de $[officename]"
#. Yo7MG
#: 02010100.xhp
@@ -1786,7 +1786,7 @@ msgctxt ""
"par_id3150484\n"
"help.text"
msgid "SQL command"
-msgstr ""
+msgstr "Orden de SQL"
#. pJay6
#: 02010100.xhp
@@ -1795,7 +1795,7 @@ msgctxt ""
"par_id3154158\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significado"
#. qmaX5
#: 02010100.xhp
@@ -1804,7 +1804,7 @@ msgctxt ""
"par_id3149433\n"
"help.text"
msgid "Condition is satisfied if..."
-msgstr ""
+msgstr "La condición se cumple si…"
#. do6XQ
#: 02010100.xhp
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_id3154744\n"
"help.text"
msgid "... the field contains no data. For Yes/No fields with three possible states, this command automatically queries the undetermined state (neither Yes nor No)."
-msgstr ""
+msgstr "… el campo no contiene ningún dato. En los campos sí/no con tres estados posibles, esta orden automáticamente efectúa una consulta sobre el estado indeterminado (ni Sí ni No)."
#. 7Rfbd
#: 02010100.xhp
@@ -1840,7 +1840,7 @@ msgctxt ""
"par_id3145304\n"
"help.text"
msgid "... the field is not empty, i.e it contains data."
-msgstr ""
+msgstr "… el campo no está vacío, es decir, que contiene datos."
#. GGKUH
#: 02010100.xhp
@@ -1849,7 +1849,7 @@ msgctxt ""
"par_id3153891\n"
"help.text"
msgid "placeholder (*) for any number of characters"
-msgstr ""
+msgstr "sustitutorio (*) para un número indeterminado de caracteres"
#. gbEWB
#: 02010100.xhp
@@ -1858,7 +1858,7 @@ msgctxt ""
"par_id3148887\n"
"help.text"
msgid "placeholder (?) for exactly one character"
-msgstr ""
+msgstr "sustitutorio (?) para exactamente un carácter"
#. tBQfA
#: 02010100.xhp
@@ -1867,7 +1867,7 @@ msgctxt ""
"bm_id3157985\n"
"help.text"
msgid "<bookmark_value>placeholders; in SQL queries</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sustitutorios; en consultas SQL</bookmark_value>"
#. agxhB
#: 02010100.xhp
@@ -1876,7 +1876,7 @@ msgctxt ""
"par_id3157985\n"
"help.text"
msgid "placeholder (%) for any number of characters"
-msgstr ""
+msgstr "sustitutorio (%) para un número indeterminado de caracteres"
#. EE9ii
#: 02010100.xhp
@@ -1885,7 +1885,7 @@ msgctxt ""
"par_id3147422\n"
"help.text"
msgid "Placeholder (_) for exactly one character"
-msgstr ""
+msgstr "Sustitutorio (_) para exactamente un carácter"
#. za5g2
#: 02010100.xhp
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_id3154845\n"
"help.text"
msgid "is an element of"
-msgstr ""
+msgstr "es un elemento de"
#. 2Y3zW
#: 02010100.xhp
diff --git a/source/es/helpcontent2/source/text/sdraw.po b/source/es/helpcontent2/source/text/sdraw.po
index 8343962e315..53e694d5eed 100644
--- a/source/es/helpcontent2/source/text/sdraw.po
+++ b/source/es/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-09-04 05:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564682198.000000\n"
#. dHbww
@@ -158,7 +158,7 @@ msgctxt ""
"par_idN105B2\n"
"help.text"
msgid "Master"
-msgstr ""
+msgstr "Patrón"
#. eSnQZ
#: main0103.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"hd_id102720151746522815\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Comentarios"
#. XjZkS
#: main0103.xhp
diff --git a/source/es/helpcontent2/source/text/sdraw/00.po b/source/es/helpcontent2/source/text/sdraw/00.po
index 884c73050b5..9860de6108a 100644
--- a/source/es/helpcontent2/source/text/sdraw/00.po
+++ b/source/es/helpcontent2/source/text/sdraw/00.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2019-11-05 12:08+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Spanish <https://vm137.documentfoundation.org/projects/libo_help-master/textsdraw00/es/>\n"
+"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw00/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561322983.000000\n"
#. EDSDr
@@ -86,7 +86,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <menuitem>Page - New Page</menuitem>"
-msgstr ""
+msgstr "Vaya a <menuitem>Página ▸ Página nueva</menuitem>"
#. EpBTa
#: page_menu.xhp
diff --git a/source/es/helpcontent2/source/text/sdraw/01.po b/source/es/helpcontent2/source/text/sdraw/01.po
index 43306d89be5..536ca1f7d21 100644
--- a/source/es/helpcontent2/source/text/sdraw/01.po
+++ b/source/es/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561323156.000000\n"
#. ybhKD
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Configura la orientación de la página, los márgenes, el fondo y otras opciones de maquetación.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Para modificar el fondo de todas las páginas en el archivo activo, seleccione un fondo, pulse en <emph>Aceptar</emph> y, a continuación, seleccione <emph>Sí</emph> en el cuadro de diálogo <emph>Configuración de página</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/es/helpcontent2/source/text/shared/00.po b/source/es/helpcontent2/source/text/shared/00.po
index 0b37382a3ef..0370a23bf6a 100644
--- a/source/es/helpcontent2/source/text/shared/00.po
+++ b/source/es/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-03 11:58+0000\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561043947.000000\n"
#. 3B8ZN
@@ -4397,7 +4397,7 @@ msgctxt ""
"par_id3154068\n"
"help.text"
msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. The use of indentations and line breaks can be activated in the <link href=\"text/shared/optionen/expertconfig.xhp\"><emph>Expert configuration</emph></link> by setting the property <emph>/org.openoffice.Office.Common/Save/Document PrettyPrinting</emph> to <emph>true</emph>."
-msgstr ""
+msgstr "De manera predeterminada, <emph>content.xml</emph> se guarda sin elementos de formato tales como la sangría o los saltos de renglón, para minimizar el tiempo que demora el guardado y la apertura del documento. El uso de sangrías y saltos de renglón puede activarse en la <link href=\"text/shared/optionen/expertconfig.xhp\"><emph>Configuración para expertos</emph></link>, definiendo la propiedad <emph>/org.openoffice.Office.Common/Save/Document PrettyPrinting</emph> como <emph>true</emph>."
#. CATsa
#: 00000021.xhp
@@ -4532,7 +4532,7 @@ msgctxt ""
"par_id3154408\n"
"help.text"
msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
-msgstr "<variable id=\"winmanager\">La disponibilidad de esta función depende del Administrador de ventanas X. </variable>"
+msgstr "<variable id=\"winmanager\">La disponibilidad de esta función depende del gestor de ventanas X. </variable>"
#. sHNos
#: 00000099.xhp
@@ -6098,7 +6098,7 @@ msgctxt ""
"par_id3154812\n"
"help.text"
msgid "Choose <menuitem>File - New</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Nuevo</menuitem>."
#. 4rLdL
#: 00000401.xhp
@@ -6116,7 +6116,7 @@ msgctxt ""
"par_id3150127\n"
"help.text"
msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156053\">Icon New</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156053\">Icono Nuevo</alt></image>"
#. ED9Aa
#: 00000401.xhp
@@ -7025,7 +7025,7 @@ msgctxt ""
"par_idN113AB\n"
"help.text"
msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id4044007\">Icon Email Document</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id4044007\">Icono Enviar documento por correo</alt></image>"
#. iYxXg
#: 00000401.xhp
@@ -7034,7 +7034,7 @@ msgctxt ""
"par_idN113C8\n"
"help.text"
msgid "Email Document"
-msgstr ""
+msgstr "Enviar documento por correo"
#. 6wXER
#: 00000401.xhp
@@ -7043,7 +7043,7 @@ msgctxt ""
"par_id3145269\n"
"help.text"
msgid "<variable id=\"export\">Choose <menuitem>File - Export</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"export\">Vaya a <menuitem>Archivo ▸ Exportar</menuitem>.</variable>"
#. uGwBS
#: 00000401.xhp
@@ -7052,7 +7052,7 @@ msgctxt ""
"par_id621525017637963\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as EPUB</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Exportar a ▸ Exportar a EPUB</menuitem>."
#. eA3gr
#: 00000401.xhp
@@ -7061,7 +7061,7 @@ msgctxt ""
"par_id121525017890767\n"
"help.text"
msgid "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id51525017890767\"> Icon Export as EPUB</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id51525017890767\"> Icono Exportar a EPUB</alt></image>"
#. tGZDr
#: 00000401.xhp
@@ -7079,7 +7079,7 @@ msgctxt ""
"par_id3163421\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - Digital Signatures</menuitem> tab."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Exportar a ▸ Exportar a PDF ▸</menuitem> pestaña <menuitem>Firmas digitales</menuitem>."
#. MgPsT
#: 00000401.xhp
@@ -7124,7 +7124,7 @@ msgctxt ""
"par_id541574090661437\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - User Interface</menuitem> tab."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Exportar a ▸ Exportar a PDF ▸</menuitem> pestaña <menuitem>Interfaz de usuario</menuitem>."
#. B8yCN
#: 00000401.xhp
@@ -7133,7 +7133,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Exportar a ▸ Exportar a PDF</menuitem>."
#. JCWGU
#: 00000401.xhp
@@ -7160,7 +7160,7 @@ msgctxt ""
"par_id3145410\n"
"help.text"
msgid "Choose <menuitem>File - Send - Email as PDF</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Enviar ▸ Por correo como PDF</menuitem>."
#. kiHmE
#: 00000401.xhp
@@ -7169,7 +7169,7 @@ msgctxt ""
"par_id3159160\n"
"help.text"
msgid "<variable id=\"glo\">Choose <menuitem>File - Send - Create Master Document</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"glo\">Vaya a <menuitem>Archivo ▸ Enviar ▸ Crear patrón de documento</menuitem>.</variable>"
#. 6yCud
#: 00000401.xhp
@@ -7178,7 +7178,7 @@ msgctxt ""
"par_id3149951\n"
"help.text"
msgid "Choose <menuitem>File - Print</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Imprimir</menuitem>"
#. mXCMo
#: 00000401.xhp
@@ -7367,7 +7367,7 @@ msgctxt ""
"par_id3156183\n"
"help.text"
msgid "Choose <menuitem>View - Toolbars</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Ver ▸ Barras de herramientas</menuitem>."
#. aAbgp
#: 00000403.xhp
@@ -7457,7 +7457,7 @@ msgctxt ""
"par_id3159269\n"
"help.text"
msgid "Choose <menuitem>View - Full Screen</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Ver ▸ Pantalla completa</menuitem>."
#. cDF5C
#: 00000403.xhp
@@ -7475,7 +7475,7 @@ msgctxt ""
"par_id3153257\n"
"help.text"
msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148473\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148473\">Icono</alt></image>"
#. Zez4K
#: 00000403.xhp
@@ -7520,7 +7520,7 @@ msgctxt ""
"par_id3153778\n"
"help.text"
msgid "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153524\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153524\">Icono</alt></image>"
#. dvWwd
#: 00000403.xhp
@@ -14549,7 +14549,7 @@ msgctxt ""
"par_id31562971\n"
"help.text"
msgid "Choose <menuitem>Edit - Find</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Editar ▸ Buscar</menuitem>."
#. cPD4u
#: edit_menu.xhp
@@ -14567,7 +14567,7 @@ msgctxt ""
"par_id3156297\n"
"help.text"
msgid "Choose <menuitem>Edit - Find & Replace</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Editar ▸ Buscar y reemplazar</menuitem>."
#. 4pWKe
#: edit_menu.xhp
@@ -14594,7 +14594,7 @@ msgctxt ""
"par_id3150020\n"
"help.text"
msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149121\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149121\">Icono</alt></image>"
#. jRcHP
#: edit_menu.xhp
@@ -14612,7 +14612,7 @@ msgctxt ""
"par_id3156357\n"
"help.text"
msgid "<variable id=\"suchenattribute\">Choose <menuitem>Edit - Find & Replace - Attributes</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenattribute\">Vaya a <menuitem>Editar ▸ Buscar y reemplazar ▸ Atributos</menuitem>.</variable>"
#. DCnDy
#: edit_menu.xhp
@@ -14621,7 +14621,7 @@ msgctxt ""
"par_id3153840\n"
"help.text"
msgid "<variable id=\"suchenformat\">Choose <menuitem>Edit - Find & Replace - Format</menuitem> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenformat\">Vaya a <menuitem>Editar ▸ Buscar y reemplazar ▸</menuitem> botón <menuitem>Formato</menuitem>.</variable>"
#. 6929F
#: edit_menu.xhp
@@ -14648,7 +14648,7 @@ msgctxt ""
"par_id551602176159965\n"
"help.text"
msgid "<image id=\"img_id314249\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id314249\">Search Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id314249\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id314249\">Icono Buscar</alt></image>"
#. 8FD2j
#: edit_menu.xhp
@@ -14675,7 +14675,7 @@ msgctxt ""
"par_id3152960\n"
"help.text"
msgid "Choose <menuitem>View - Navigator</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Ver ▸ Navegador</menuitem>."
#. mXj7f
#: edit_menu.xhp
@@ -14693,7 +14693,7 @@ msgctxt ""
"par_id3159183\n"
"help.text"
msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154508\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154508\">Icono</alt></image>"
#. DFjLG
#: edit_menu.xhp
@@ -14711,7 +14711,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "<variable id=\"litdat\">Choose <menuitem>Tools - Bibliography Database</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"litdat\">Vaya a <menuitem>Herramientas ▸ Base de datos bibliográfica</menuitem>.</variable>"
#. moWAi
#: edit_menu.xhp
@@ -14720,7 +14720,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "<variable id=\"link\">Choose <menuitem>Edit - Links to External Files</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"link\">Vaya a <menuitem>Editar ▸ Enlaces a archivos externos</menuitem>.</variable>"
#. ARRG5
#: edit_menu.xhp
@@ -14738,7 +14738,7 @@ msgctxt ""
"par_id3148927\n"
"help.text"
msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
-msgstr ""
+msgstr "Seleccione un marco y, enseguida, elija <menuitem>Editar ▸ Objeto ▸ Propiedades</menuitem>."
#. cDcix
#: edit_menu.xhp
@@ -14747,7 +14747,7 @@ msgctxt ""
"par_id3156315\n"
"help.text"
msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
-msgstr ""
+msgstr "Abra el menú contextual del marco seleccionado y elija <menuitem>Propiedades</menuitem>."
#. jmnro
#: edit_menu.xhp
@@ -14756,7 +14756,7 @@ msgctxt ""
"par_id3149259\n"
"help.text"
msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit1\">Vaya a <menuitem>Editar ▸ Objeto</menuitem>.</variable>"
#. XAqNW
#: edit_menu.xhp
@@ -14765,7 +14765,7 @@ msgctxt ""
"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 ""
+msgstr "<variable id=\"edit2\">Vaya a <menuitem>Editar ▸ Objeto ▸ Editar</menuitem>, también en el menú contextual del objeto seleccionado.</variable>"
#. sA6YF
#: edit_menu.xhp
@@ -14774,7 +14774,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit3\">Vaya a <menuitem>Editar ▸ Objeto ▸ Abrir</menuitem>.</variable>"
#. kQifg
#: edit_menu.xhp
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 5da7d52d952..40b4c4ad0f7 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-13 12:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/es/>\n"
"Language: es\n"
@@ -2552,7 +2552,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "The <emph>Close</emph> command closes all open windows of the current document."
-msgstr ""
+msgstr "La orden <emph>Cerrar</emph> cierra todas las ventanas abiertas del documento actual."
#. jSMdE
#: 01050000.xhp
@@ -2561,7 +2561,7 @@ msgctxt ""
"par_id3148620\n"
"help.text"
msgid "If you have made changes to the current document, you are prompted if you want to <link href=\"text/shared/01/01060000.xhp\" name=\"save\"><emph>save</emph></link> your changes."
-msgstr ""
+msgstr "Si ha efectuado cambios en el documento actual, se le solicitará <link href=\"text/shared/01/01060000.xhp\" name=\"guardar\"><emph>guardarlos</emph></link>."
#. KoyrB
#: 01050000.xhp
@@ -7999,14 +7999,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "El carácter que representa un código hexadecimal Unicode de ocho dígitos (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "En algunos tipos de letra de símbolos, el código Unicode necesario para producir determinados símbolos puede variar. Puede ver los códigos Unicode mediante la orden <menuitem>Insertar ▸ Carácter especial</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
@@ -8258,7 +8258,7 @@ msgctxt ""
"par_id771559577837101\n"
"help.text"
msgid "The first character of a paragraph."
-msgstr ""
+msgstr "El primer carácter de un párrafo."
#. DwGtk
#: 02100001.xhp
@@ -9383,7 +9383,7 @@ msgctxt ""
"par_id3145313\n"
"help.text"
msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icono</alt></image>"
#. 3Lq2G
#: 02110000.xhp
@@ -9419,7 +9419,7 @@ msgctxt ""
"par_id3153716\n"
"help.text"
msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icono</alt></image>"
#. nRB3E
#: 02110000.xhp
@@ -9455,7 +9455,7 @@ msgctxt ""
"par_id3159166\n"
"help.text"
msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icono</alt></image>"
#. F4J5u
#: 02110000.xhp
@@ -9590,7 +9590,7 @@ msgctxt ""
"par_id3153951\n"
"help.text"
msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icono</alt></image>"
#. ijR7M
#: 02110000.xhp
@@ -9698,7 +9698,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icono</alt></image>"
#. ADEyJ
#: 02110000.xhp
@@ -9734,7 +9734,7 @@ msgctxt ""
"par_id3156178\n"
"help.text"
msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icono</alt></image>"
#. GqEUL
#: 02110000.xhp
@@ -9770,7 +9770,7 @@ msgctxt ""
"par_id3154790\n"
"help.text"
msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icono</alt></image>"
#. DLEGF
#: 02110000.xhp
@@ -9806,7 +9806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Links to External Files"
-msgstr ""
+msgstr "Editar enlaces a archivos externos"
#. YrBSL
#: 02180000.xhp
@@ -9824,7 +9824,7 @@ msgctxt ""
"hd_id3150279\n"
"help.text"
msgid "Edit Links to External Files"
-msgstr ""
+msgstr "Editar enlaces a archivos externos"
#. hN2Am
#: 02180000.xhp
@@ -27635,7 +27635,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pattern"
-msgstr ""
+msgstr "Motivo"
#. 5FVqC
#: 05210800.xhp
@@ -27644,7 +27644,7 @@ msgctxt ""
"bm_id431592861834899\n"
"help.text"
msgid "<bookmark_value>pattern;area</bookmark_value><bookmark_value>pattern;background</bookmark_value><bookmark_value>background;pattern</bookmark_value><bookmark_value>background;area</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>motivo;área</bookmark_value><bookmark_value>motivo;fondo</bookmark_value><bookmark_value>fondo;motivo</bookmark_value><bookmark_value>fondo;área</bookmark_value>"
#. S8BBE
#: 05210800.xhp
@@ -27653,7 +27653,7 @@ msgctxt ""
"hd_id801592861657875\n"
"help.text"
msgid "<link href=\"text/shared/01/05210800.xhp\" name=\"pattern\">Pattern</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210800.xhp\" name=\"motivo\">Motivo</link>"
#. qLwKU
#: 05210800.xhp
@@ -27662,7 +27662,7 @@ msgctxt ""
"par_id3153626\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Fills the object with a simple two color pattern selected on this page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Rellena el objeto con el motivo bicolor simple que seleccione en esta pestaña.</ahelp>"
#. p5uGC
#: 05210800.xhp
@@ -27671,7 +27671,7 @@ msgctxt ""
"hd_id3159147\n"
"help.text"
msgid "Pattern"
-msgstr ""
+msgstr "Motivo"
#. KW3Ah
#: 05210800.xhp
@@ -27680,7 +27680,7 @@ msgctxt ""
"par_id3149955\n"
"help.text"
msgid "Lists the available patterns. You can also modify or create your own pattern."
-msgstr ""
+msgstr "Enumera los motivos disponibles. También es posible modificarlos y crear nuevos."
#. rpQaV
#: 05210800.xhp
@@ -27689,7 +27689,7 @@ msgctxt ""
"par_id161584528499683\n"
"help.text"
msgid "To rename a pattern, select the pattern, right-click and choose <menuitem>Rename</menuitem>. To delete a pattern, select the pattern, right-click and choose <menuitem>Delete</menuitem>."
-msgstr ""
+msgstr "Para cambiar el nombre de un motivo, selecciónelo, pulse con el botón secundario del ratón y elija <menuitem>Cambiar nombre</menuitem>. Para eliminar un motivo, selecciónelo, pulse con el botón secundario del ratón y elija <menuitem>Eliminar</menuitem>."
#. VrE5t
#: 05210800.xhp
@@ -27707,7 +27707,7 @@ msgctxt ""
"par_id3148924\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_ADD\">Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/patterntabpage/BTN_ADD\">Permite añadir un motivo personalizado a la lista actual. Especifique las propiedades de su motivo y, a continuación, pulse en este botón.</ahelp>"
#. 5waZ4
#: 05210800.xhp
@@ -27725,7 +27725,7 @@ msgctxt ""
"par_id3156023\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_MODIFY\">Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/patterntabpage/BTN_MODIFY\">Aplica las propiedades actuales al motivo seleccionado. Si lo desea, puede guardar el motivo con un nombre distinto.</ahelp>"
#. WCFwi
#: 05210800.xhp
@@ -27752,7 +27752,7 @@ msgctxt ""
"hd_id3147834\n"
"help.text"
msgid "Pattern Editor"
-msgstr ""
+msgstr "Editor de motivos"
#. rFfJm
#: 05210800.xhp
@@ -27806,7 +27806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Text (Formatting)"
-msgstr "Texto (Formato)"
+msgstr "Texto (formato)"
#. rCSp7
#: 05220000.xhp
@@ -38318,7 +38318,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Position (List Styles)"
-msgstr ""
+msgstr "Posición (estilos de lista)"
#. YCPm7
#: 06050600.xhp
@@ -38363,7 +38363,7 @@ msgctxt ""
"hd_id3149261\n"
"help.text"
msgid "Position and Spacing"
-msgstr ""
+msgstr "Posición y espaciado"
#. AGzEA
#: 06050600.xhp
@@ -39839,7 +39839,7 @@ msgctxt ""
"hd_id551514302487751\n"
"help.text"
msgid "Available Commands"
-msgstr ""
+msgstr "Órdenes disponibles"
#. B7bPB
#: 06140100.xhp
@@ -39974,7 +39974,7 @@ msgctxt ""
"hd_id331604401016431\n"
"help.text"
msgid "Assigned Commands"
-msgstr ""
+msgstr "Órdenes asignadas"
#. oBFeq
#: 06140100.xhp
@@ -40055,7 +40055,7 @@ msgctxt ""
"hd_id631604851974598\n"
"help.text"
msgid "Customize"
-msgstr ""
+msgstr "Personalizar"
#. G2yK8
#: 06140100.xhp
@@ -40307,7 +40307,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">Lists the shortcut keys and the associated commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">Enumera los atajos de teclado y las órdenes asociadas.</ahelp>"
#. GWDEX
#: 06140200.xhp
@@ -40361,7 +40361,7 @@ msgctxt ""
"par_id3159148\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/function\">Lists functions that can be assigned to a shortcut key.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/function\">Enumera las funciones que pueden asignarse a un atajo de teclado.</ahelp>"
#. Gfzcs
#: 06140200.xhp
@@ -40514,7 +40514,7 @@ msgctxt ""
"par_id261603929349350\n"
"help.text"
msgid "<link href=\"text/shared/main0400.xhp\" name=\"frequentkeys\">Shortcut Keys in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/main0400.xhp\" name=\"frequentkeys\">Atajos de teclado en %PRODUCTNAME</link>"
#. fybrb
#: 06140300.xhp
@@ -40712,7 +40712,7 @@ msgctxt ""
"hd_id381604852428742\n"
"help.text"
msgid "Customize"
-msgstr ""
+msgstr "Personalizar"
#. ASEww
#: 06140300.xhp
diff --git a/source/es/helpcontent2/source/text/shared/02.po b/source/es/helpcontent2/source/text/shared/02.po
index 17a714571a9..f1f66b023dd 100644
--- a/source/es/helpcontent2/source/text/shared/02.po
+++ b/source/es/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-01 11:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564411145.000000\n"
#. Edm6o
@@ -16727,7 +16727,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "<image id=\"img_id3153750\" src=\"media/helpimg/linleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153750\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153750\" src=\"media/helpimg/linleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153750\">Icono</alt></image>"
#. JJcBs
#: 13020000.xhp
@@ -16745,7 +16745,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<image id=\"img_id3145071\" src=\"media/helpimg/linright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145071\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145071\" src=\"media/helpimg/linright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145071\">Icono</alt></image>"
#. Wr4CA
#: 13020000.xhp
diff --git a/source/es/helpcontent2/source/text/shared/explorer/database.po b/source/es/helpcontent2/source/text/shared/explorer/database.po
index c5305127f5d..f70797ddeff 100644
--- a/source/es/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/es/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/es/>\n"
"Language: es\n"
@@ -7097,7 +7097,7 @@ msgctxt ""
"par_idN105F8\n"
"help.text"
msgid "Email Document"
-msgstr ""
+msgstr "Enviar documento por correo"
#. Qxg2W
#: menufile.xhp
@@ -7106,7 +7106,7 @@ msgctxt ""
"par_idN105FC\n"
"help.text"
msgid "Opens the default email application to send a new email. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body."
-msgstr ""
+msgstr "Abre la aplicación de correo electrónico predeterminada para enviar un mensaje nuevo. El archivo de base de datos actual se anexará al mensaje. Podrá introducir el asunto, los destinatarios y el cuerpo del mensaje."
#. 9WihT
#: menufile.xhp
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index d853340e555..d5678e99e16 100644
--- a/source/es/helpcontent2/source/text/shared/guide.po
+++ b/source/es/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/es/>\n"
"Language: es\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Trabajar con <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Documento HTML"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Documento de texto de OpenOffice.org 1.0"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Documento de texto de OpenOffice.org 1.0"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento de texto de OpenOffice.org 1.0"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "Documento de T602"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Texto"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Texto"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Herramienta de informe de errores"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Herramienta de informe de errores</bookmark_value> <bookmark_value>informes;informes de errores</bookmark_value> <bookmark_value>informes de cierres inesperados</bookmark_value> <bookmark_value>activar;Herramienta de informe de errores</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Programa de informe de errores\">Programa de informe de errores</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "La herramienta de informe de errores se inicia automáticamente cuando se bloquea un programa."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "El programa de informe de errores reúne toda la información necesaria para ayudar a los desarrolladores de programas a mejorar el código, a fin de que en las versiones posteriores este error probablemente se pueda evitar. Ayúdenos a mejorar el software y envíenos un informe del error generado."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Iniciar el programa de informe de errores"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "La herramienta de informe de errores se inicia automáticamente en casi todos los bloqueos de programa."
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. d4BEq
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3154046\n"
+"hd_id3159399\n"
"help.text"
-msgid "Completing the Report"
-msgstr "Completar el informe"
+msgid "Sending the Crash Report"
+msgstr ""
-#. vq6k8
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"par_id711605615413339\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "En el diálogo de la herramienta de informe de errores, puede escribir información adicional para ayudar los desarrolladores a encontrar el error. Por ejemplo, indique también si el error sólo aparece tras un cambio en el hardware o el software, o si se ha hecho clic en un botón."
-
-#. wuqDi
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3159399\n"
-"help.text"
-msgid "Sending the Error Report"
-msgstr "Enviar el informe del error"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "El programa de informe de errores usa el protocolo HTTP PUT/SOAP para enviar los datos del informe. Opcionalmente puede escribir una descripción que nos ayude a identificar el contexto de la caída del programa. Pulse después el botón <emph>Enviar</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "No obtendrá una respuesta a su informe de error. Si necesita asistencia, visite el <link href=\"text/shared/main0108.xhp\">foro de asistencia</link> en Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "¿Qué datos se envían?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "El informe de error consta de varios archivos. El principal contiene información sobre el tipo de error, el nombre del sistema operativo y la versión, el uso de la memoria y la descripción que introdujo. Puede pulsar el botón <emph>Mostrar informe</emph> en el diálogo principal del programa de informe de errores para ver qué se enviará en el archivo principal."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Además, el contenido relevante de la memoria y los rastros de las pilas se reúnen mediante algunas herramientas estándar del sistema (\"dbhhelp.dll\" en los sistemas Windows, \"pstack\" en los sistemas UNIX). También se enviará esta información."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Recuerde que debe crear un trabajo de impresión separado para cada fax; de lo contrario, el primer receptor recibirá todos los faxes. En el diálogo <emph>Herramientas - Combinar correspondencia</emph>, seleccione la opción <emph>Impresora</emph> y, a continuación, la casilla de verificación <emph>Crear tareas individuales de impresión</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Cambiar una plantilla predeterminada"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modificar, ver cambios</bookmark_value><bookmark_value>cambiar, ver también editar y reemplazar</bookmark_value><bookmark_value>plantillas predeterminadas; cambiar</bookmark_value><bookmark_value>predeterminados;plantillas de documento</bookmark_value><bookmark_value>actualizar; plantillas</bookmark_value><bookmark_value>editar;plantillas</bookmark_value><bookmark_value>plantillas;editar y guardar</bookmark_value><bookmark_value>guardar;plantillas</bookmark_value><bookmark_value>restablecer;plantillas</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Modificar una plantilla predeterminada\">Modificar una plantilla predeterminada</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Al abrir un documento nuevo desde el menú <emph>Archivo</emph> - <emph>Nuevo</emph>, aparece un documento vacío, basado en la plantilla predeterminada de $[officename], éste podrá ser un documento de texto o una base de datos (ambos nuevos). El documento se puede editar, modificar, o reemplazar por uno existente, de forma que cada vez que abra un documento nuevo éste se abrirá con los atributos, formato e incluso contenido otorgados."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modificar una plantilla predeterminada"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "En primer lugar, abra una plantilla de $[officename] y modifíquela, o abra un documento nuevo y haga los cambios pertinentes para crear la plantilla que necesita."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Naturalmente podrá definir una plantilla para cada módulo de $[officename]. A continuación describimos cómo proceder con los documentos de texto."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
+"help.text"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Para guardar el documento, diríjase a <emph>Archivo ▸ Plantillas ▸ Guardar como plantilla</emph> y colóquelo en la categoría <emph>Mis plantillas</emph>."
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Elija <emph>Archivo ▸ Nuevo ▸ Plantilla</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Pulse dos veces en el elemento <emph>Mis plantillas</emph> de la lista. Se mostrarán las plantillas del usuario en la carpeta especificada en <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME ▸ Rutas</emph>. Seleccione la plantilla que acaba de guardar."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Elija <emph>Predeterminar</emph>. La próxima vez que abra un documento de texto nuevo, este se basará en la plantilla predeterminada nueva."
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
-#. GuEWL
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Uso de plantillas personalizadas"
+msgid "Creating a Custom Template"
+msgstr ""
-#. Quf5G
+#. eUBit
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id231605475396242\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Existen varias maneras de facilitar el trabajo mediante el uso de plantillas personalizadas."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. S8XFP
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Plantillas en la carpeta de plantillas"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Es posible guardar una plantilla nueva si va a <emph>Archivo ▸ Plantillas ▸ Guardar como plantilla</emph> o si selecciona algún tipo de archivo de plantilla en el cuadro de diálogo Guardar como. Guarde la plantilla en la carpeta de usuario especificada en <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME ▸ Rutas</emph> para que la plantilla aparezca en el cuadro de diálogo <emph>Archivo ▸ Nuevo ▸ Plantillas</emph>."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Para abrir y editar una plantilla, diríjase a <emph>Archivo ▸ Nuevo ▸ Plantillas</emph>, seleccione la plantilla y pulse en el botón <emph>Editar</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -22766,7 +22613,7 @@ msgctxt ""
"par_id491571706970241\n"
"help.text"
msgid "Parameter"
-msgstr ""
+msgstr "Parámetro"
#. fg9oE
#: start_parameters.xhp
@@ -22775,7 +22622,7 @@ msgctxt ""
"par_id11571706970242\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significado"
#. iAEUa
#: start_parameters.xhp
@@ -22784,7 +22631,7 @@ msgctxt ""
"par_id11571706970245\n"
"help.text"
msgid "An enhanced debugger."
-msgstr ""
+msgstr "Un depurador mejorado."
#. VQCLF
#: start_parameters.xhp
@@ -24253,14 +24100,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Consulte <link href=\"text/swriter/guide/templates_styles.xhp\">Plantillas y estilos</link> para obtener información relacionada."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Consulte <link href=\"text/swriter/guide/template_create.xhp\">Crear una plantilla de documento</link> para obtener información relacionada."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/es/helpcontent2/source/text/shared/optionen.po b/source/es/helpcontent2/source/text/shared/optionen.po
index 829427907f7..b946a781481 100644
--- a/source/es/helpcontent2/source/text/shared/optionen.po
+++ b/source/es/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-20 14:49+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561564436.000000\n"
#. PzSYs
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>vistas;valores predeterminados</bookmark_value><bookmark_value>valores predeterminados;vistas</bookmark_value><bookmark_value>configuración;vistas</bookmark_value><bookmark_value>iconos;tamaños</bookmark_value><bookmark_value>iconos;estilos</bookmark_value><bookmark_value>WYSIWYG en listas de tipos de letra</bookmark_value><bookmark_value>previsualizaciones;listas de tipos de letra</bookmark_value><bookmark_value>listas de tipos de letra</bookmark_value><bookmark_value>cuadro de nombre de tipo de letra</bookmark_value><bookmark_value>ratón;posicionamiento</bookmark_value><bookmark_value>portapapeles;portapapeles de selección</bookmark_value><bookmark_value>portapapeles de selección</bookmark_value><bookmark_value>OpenGL;configuración</bookmark_value><bookmark_value>OpenGL;lista negra</bookmark_value><bookmark_value>OpenGL;lista blanca</bookmark_value><bookmark_value>OpenGL;salida de gráficos</bookmark_value><bookmark_value>omnibarra;tamaño de iconos</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Establece opciones de visualización."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Interfaz de usuario"
+msgid "Icon style"
+msgstr "Estilo de iconos"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Tamaño de iconos de barras de herramientas"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Especifica el estilo de iconos de las barras de herramientas y los cuadros de diálogo.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Especifica el tamaño de visualización de los iconos de la barra de herramientas.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> La opción <emph>Automático</emph> utiliza la configuración del tamaño del tipo de letra del sistema operativo para los menús.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Tamaño de iconos de barra lateral"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Especifica el tamaño de los iconos de la barra lateral.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Tamaño de iconos de omnibarra"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Especifica el tamaño de los iconos de la <link href=\"text/shared/01/notebook_bar.xhp\">omnibarra</link>.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Estilo de iconos"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Especifica el estilo de iconos de las barras de herramientas y los cuadros de diálogo.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Especifica el tamaño de los iconos de la barra lateral.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Suavizar tipos de letra de pantalla"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Seleccione esta opción para suavizar el aspecto en pantalla del texto.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Especifique el tamaño de tipo de letra más pequeño para aplicar el antidentado.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Muestra iconos junto a los elementos de menú correspondientes. Seleccione entre «Automático», «Ocultar» y «Mostrar». «Automático» muestra los iconos según la configuración del sistema y los temas.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Ratón"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Posición del ratón"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Especifica si el puntero del ratón se debe situar en los cuadros de diálogo que se acaban de abrir y cómo lo debe hacer.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Botón central del ratón"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "El contenido del portapapeles es la última selección efectuada."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Salida de gráficos"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Oprima Mayús + Ctrl + R para restaurar o actualizar la vista del documento actual.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Oprima Mayús + Ctrl + R para restaurar o actualizar la vista del documento actual.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3785,70 +3803,61 @@ msgctxt ""
"par_id1208200812004444\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Cuando el hardware lo admita, se puede activar o desactivar el «anti-aliasing» de gráficos. Esta configuración mejora la apariencia de la mayoría de los elementos y reduce el ruido visual.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Cuando el hardware lo admita, se puede activar o desactivar el antidentado visual. Esta configuración mejora la apariencia de la mayoría de los elementos y reduce el ruido visual.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Usar OpenGL en toda la aplicación (al reiniciar)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Utilice la Biblioteca de Gráficos Abierta (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) para representar todos los elementos visuales de la aplicación, como ventanas, menús, barras de herramientas e iconos.</ahelp> OpenGL utiliza el dispositivo de gráficos del equipo para acelerar la representación. Si el dispositivo está incluido en la lista negra (siga leyendo), esta opción no surtirá efecto."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Permite utilizar el motor gráfico de alto rendimiento Skia para representar todos los elementos visuales de la aplicación, incluidas las ventanas, los menús, las barras de herramientas y los iconos.</ahelp> Skia utiliza el dispositivo de gráficos del equipo para acelerar la representación visual."
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Forzar OpenGL aún si está en lista negra (al reiniciar)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Fuerza la utilización de OpenGL incluso si el dispositivo de gráficos está incluido en la lista negra.</ahelp> En los dispositivos añadidos a la lista negra se ha encontrado que producen errores o que producen representaciones de poca calidad."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menú"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Seleccione este control para que Skia no utilice el dispositivo de gráficos del equipo.</ahelp>"
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Iconos en menús"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr "Al momento de la instalación, %PRODUCTNAME selecciona las mejores opciones para configurar el motor gráfico Skia. Normalmente no necesitará modificar la configuración predeterminada si Skia está activado."
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Muestra iconos junto a los elementos de menú correspondientes. Seleccione entre «Automático», «Ocultar» y «Mostrar». «Automático» muestra los iconos según la configuración del sistema y los temas.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr "Si tiene problemas con la representación gráfica en pantalla (por ejemplo, con la apariencia de los iconos de las barras de herramientas o de los objetos de dibujo) y Skia está activado, puede probar a desactivar <emph>Forzar representación por software de Skia</emph> o inhabilitar Skia por completo."
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Muestra los nombres de los tipos de letra que se pueden seleccionar en el tipo de letra correspondiente, por ejemplo, en el cuadro desplegable Tipo de letra de la barra <emph>Formato</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Suavizar tipos de letra de pantalla"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Seleccione esta opción para suavizar el aspecto en pantalla del texto.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr "desde"
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Especifique el tamaño de tipo de letra más pequeño para aplicar el antidentado.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/simpress/00.po b/source/es/helpcontent2/source/text/simpress/00.po
index c61290fd9dc..2f110b88af6 100644
--- a/source/es/helpcontent2/source/text/simpress/00.po
+++ b/source/es/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:43+0100\n"
-"PO-Revision-Date: 2020-09-04 05:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress00/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560857928.000000\n"
#. sqmGT
@@ -1400,7 +1400,7 @@ msgctxt ""
"par_id3155530\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <menuitem>Slide - Slide Properties</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Vaya a <menuitem>Diapositiva ▸ Propiedades de diapositiva</menuitem></variable>"
#. FRMtM
#: slide_menu.xhp
@@ -1445,7 +1445,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <menuitem>Slide - New Slide</menuitem>"
-msgstr ""
+msgstr "Vaya a <menuitem>Diapositiva ▸ Diapositiva nueva</menuitem>"
#. 7tbCN
#: slide_menu.xhp
diff --git a/source/es/helpcontent2/source/text/simpress/01.po b/source/es/helpcontent2/source/text/simpress/01.po
index 22aed571f06..b090bef41a8 100644
--- a/source/es/helpcontent2/source/text/simpress/01.po
+++ b/source/es/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-30 22:35+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress01/es/>\n"
"Language: es\n"
@@ -4280,7 +4280,7 @@ msgctxt ""
"par_id3145388\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_LINE_DIST\">Specifies the distance between the dimension line and the baseline (line distance = 0).</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_LINE_DIST\">Especifica la distancia entre la línea de cota y la línea de base (distancia de línea = 0).</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_LINE_DIST\">Especifica la distancia entre la línea de cota y la línea de base (distancia entre líneas = 0).</ahelp>"
#. qvdka
#: 05150000.xhp
diff --git a/source/es/helpcontent2/source/text/smath/01.po b/source/es/helpcontent2/source/text/smath/01.po
index 514c287ca62..9b6a8faff9c 100644
--- a/source/es/helpcontent2/source/text/smath/01.po
+++ b/source/es/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-09-30 15:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559526082.000000\n"
#. QmNGE
@@ -2507,7 +2507,7 @@ msgctxt ""
"par_idN10132\n"
"help.text"
msgid "<image id=\"img_id3149687\" src=\"media/helpimg/starmath/fu21508.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149687\">Logarithm Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149687\" src=\"media/helpimg/starmath/fu21508.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149687\">Icono Logaritmo</alt></image>"
#. LX2Ke
#: 03090400.xhp
@@ -2534,7 +2534,7 @@ msgctxt ""
"par_id3149483\n"
"help.text"
msgid "<image id=\"img_id3149490\" src=\"media/helpimg/starmath/fu21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149490\">Power Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149490\" src=\"media/helpimg/starmath/fu21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149490\">Icono Potencia</alt></image>"
#. XKMzK
#: 03090400.xhp
@@ -2552,7 +2552,7 @@ msgctxt ""
"par_id3151250\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts x raised to the yth power.</ahelp> You can also type <emph><?>^{<?>}</emph> in the <emph>Commands</emph> window. You can replace the <emph>^</emph> character with <emph>rsup</emph> or <emph>sup</emph>."
-msgstr "<ahelp hid=\".\">Inserta x elevada a la potencia y.</ahelp> También puede escribir <emph><?>^{<?>}</emph> en la ventana de <emph>comandos</emph>.! Puede sustituir el carácter <emph>^</emph> con <emph>rsup</emph> o <emph>sup</emph>."
+msgstr "<ahelp hid=\".\">Inserta x elevada a la potencia y.</ahelp> También puede escribir <emph><?>^{<?>}</emph> en el cuadro <emph>Órdenes</emph>. Puede sustituir el carácter <emph>^</emph> por <emph>rsup</emph> o <emph>sup</emph>."
#. QwxyY
#: 03090400.xhp
@@ -2561,7 +2561,7 @@ msgctxt ""
"par_idN101B1\n"
"help.text"
msgid "<image id=\"img_id3149043\" src=\"media/helpimg/starmath/fu21509.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149043\">Sine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149043\" src=\"media/helpimg/starmath/fu21509.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149043\">Icono Seno</alt></image>"
#. FeedP
#: 03090400.xhp
@@ -2588,7 +2588,7 @@ msgctxt ""
"par_idN101EA\n"
"help.text"
msgid "<image id=\"img_id3147139\" src=\"media/helpimg/starmath/fu21510.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147139\">Cosine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147139\" src=\"media/helpimg/starmath/fu21510.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147139\">Icono Coseno</alt></image>"
#. LRNwp
#: 03090400.xhp
@@ -2615,7 +2615,7 @@ msgctxt ""
"par_idN10223\n"
"help.text"
msgid "<image id=\"img_id3148759\" src=\"media/helpimg/starmath/fu21511.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148759\">Tangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148759\" src=\"media/helpimg/starmath/fu21511.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148759\">Icono Tangente</alt></image>"
#. nBpjo
#: 03090400.xhp
@@ -2642,7 +2642,7 @@ msgctxt ""
"par_idN1025C\n"
"help.text"
msgid "<image id=\"img_id3149536\" src=\"media/helpimg/starmath/fu21512.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149536\">Cotangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149536\" src=\"media/helpimg/starmath/fu21512.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149536\">Icono Cotangente</alt></image>"
#. DsEAG
#: 03090400.xhp
@@ -2696,7 +2696,7 @@ msgctxt ""
"par_idN102CE\n"
"help.text"
msgid "<image id=\"img_id3168610\" src=\"media/helpimg/starmath/fu21503.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3168610\">Square Root Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3168610\" src=\"media/helpimg/starmath/fu21503.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3168610\">Icono Raíz cuadrada</alt></image>"
#. JpriW
#: 03090400.xhp
@@ -2804,7 +2804,7 @@ msgctxt ""
"par_idN103B5\n"
"help.text"
msgid "<image id=\"img_id3154714\" src=\"media/helpimg/starmath/fu21504.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154714\">nth Root Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154714\" src=\"media/helpimg/starmath/fu21504.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154714\">Icono Raíz enésima</alt></image>"
#. o7MGD
#: 03090400.xhp
@@ -3911,7 +3911,7 @@ msgctxt ""
"par_id3150533\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ACUTEX\">Inserts a placeholder with an acute accent.</ahelp> You can also type <emph>acute <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ACUTEX\">Inserta un hueco con un acento agudo.</ahelp> También puede escribir <emph>acute <?></emph> en la ventana de <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ACUTEX\">Inserta un hueco con un acento agudo.</ahelp> También puede escribir <emph>acute <?></emph> en el cuadro <emph>Órdenes</emph>."
#. yHTHb
#: 03090600.xhp
@@ -4640,7 +4640,7 @@ msgctxt ""
"bm_id3153150\n"
"help.text"
msgid "<bookmark_value>formatting;in $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formatting</bookmark_value><bookmark_value>superscripts</bookmark_value><bookmark_value>binomials</bookmark_value><bookmark_value>vertical elements</bookmark_value><bookmark_value>lines; inserting in formulas</bookmark_value><bookmark_value>subscripts</bookmark_value><bookmark_value>stacks</bookmark_value><bookmark_value>vertical arrangement of elements</bookmark_value><bookmark_value>small gaps</bookmark_value><bookmark_value>alignment; left (Math)</bookmark_value><bookmark_value>left-justified alignment (Math)</bookmark_value><bookmark_value>alignment; horizontally centered (Math)</bookmark_value><bookmark_value>centered horizontally; alignment (Math)</bookmark_value><bookmark_value>alignment; right (Math)</bookmark_value><bookmark_value>right-justified alignment in %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; arranging</bookmark_value><bookmark_value>spaces in formulas</bookmark_value><bookmark_value>gaps in formulas</bookmark_value><bookmark_value>inserting; gaps</bookmark_value><bookmark_value>arranging;matrices</bookmark_value><bookmark_value>formulas;aligning</bookmark_value><bookmark_value>aligning formulas</bookmark_value>"
-msgstr "<bookmark_value>formato;en $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formato</bookmark_value><bookmark_value>superíndices</bookmark_value><bookmark_value>binómicas</bookmark_value><bookmark_value>elementos verticales</bookmark_value><bookmark_value>renglones; inserción en fórmulas</bookmark_value><bookmark_value>subíndices</bookmark_value><bookmark_value>pilas</bookmark_value><bookmark_value>disposiciones verticales de elementos</bookmark_value><bookmark_value>separaciones pequeñas</bookmark_value><bookmark_value>alineación; izquierda (Math)</bookmark_value><bookmark_value>alineación justificada a la izquierda (Math)</bookmark_value><bookmark_value>alineación; centrada horizontalmente (Math)</bookmark_value><bookmark_value>centrada horizontalmente; alineación (Math)</bookmark_value><bookmark_value>alineación; derecha (Math)</bookmark_value><bookmark_value>alineación justificada a la derecha en %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; disposición</bookmark_value><bookmark_value>espacios en fórmulas</bookmark_value><bookmark_value>separaciones en fórmulas</bookmark_value><bookmark_value>inserción; separaciones</bookmark_value><bookmark_value>disposición;matrices</bookmark_value><bookmark_value>fórmulas;alineación</bookmark_value><bookmark_value>alineación de fórmulas</bookmark_value>"
+msgstr "<bookmark_value>formato;en $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formato</bookmark_value><bookmark_value>superíndices</bookmark_value><bookmark_value>binomios</bookmark_value><bookmark_value>elementos verticales</bookmark_value><bookmark_value>renglones; inserción en fórmulas</bookmark_value><bookmark_value>subíndices</bookmark_value><bookmark_value>pilas</bookmark_value><bookmark_value>disposiciones verticales de elementos</bookmark_value><bookmark_value>separaciones pequeñas</bookmark_value><bookmark_value>alineación; izquierda (Math)</bookmark_value><bookmark_value>alineación justificada a la izquierda (Math)</bookmark_value><bookmark_value>alineación; centrada horizontalmente (Math)</bookmark_value><bookmark_value>centrada horizontalmente; alineación (Math)</bookmark_value><bookmark_value>alineación; derecha (Math)</bookmark_value><bookmark_value>alineación justificada a la derecha en %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; disposición</bookmark_value><bookmark_value>espacios en fórmulas</bookmark_value><bookmark_value>separaciones en fórmulas</bookmark_value><bookmark_value>inserción; separaciones</bookmark_value><bookmark_value>disposición;matrices</bookmark_value><bookmark_value>fórmulas;alineación</bookmark_value><bookmark_value>alineación de fórmulas</bookmark_value>"
#. bzxC7
#: 03090700.xhp
@@ -4676,7 +4676,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "The letter \"a\" refers to the placeholder in your formula which you would like to assign to the respective formatting. You can substitute this character for any other you like."
-msgstr "\"a\" se refiere siempre al hueco de la fórmula al que se desea asignar el correspondiente formato. En lugar de este hueco, se puede introducir cualquier carácter."
+msgstr "«a» se refiere siempre al hueco de la fórmula al que se desea asignar el correspondiente formato. En lugar de este hueco, se puede introducir cualquier carácter."
#. GmDzn
#: 03090700.xhp
@@ -4694,7 +4694,7 @@ msgctxt ""
"par_idN1008B\n"
"help.text"
msgid "<image id=\"img_id3150981\" src=\"media/helpimg/starmath/co21916.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150981\">Superscript left Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150981\" src=\"media/helpimg/starmath/co21916.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150981\">Icono Superíndice a la izquierda</alt></image>"
#. 96dBm
#: 03090700.xhp
@@ -4721,7 +4721,7 @@ msgctxt ""
"par_idN100C4\n"
"help.text"
msgid "<image id=\"img_id3149691\" src=\"media/helpimg/starmath/co21918.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149691\">Superscript top Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149691\" src=\"media/helpimg/starmath/co21918.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149691\">Icono Superíndice arriba</alt></image>"
#. wCKNn
#: 03090700.xhp
@@ -4748,7 +4748,7 @@ msgctxt ""
"par_idN100FF\n"
"help.text"
msgid "<image id=\"img_id3149097\" src=\"media/helpimg/starmath/co21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149097\">Superscript right Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149097\" src=\"media/helpimg/starmath/co21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149097\">Icono Superíndice a la derecha</alt></image>"
#. u5X6R
#: 03090700.xhp
@@ -4775,7 +4775,7 @@ msgctxt ""
"par_idN1013E\n"
"help.text"
msgid "<image id=\"img_id3149044\" src=\"media/helpimg/starmath/co21905.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149044\">Vertical stack (2 elements) Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149044\" src=\"media/helpimg/starmath/co21905.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149044\">Icono Disposición vertical stack (2 elementos)</alt></image>"
#. GtKJw
#: 03090700.xhp
@@ -5414,7 +5414,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XINTERSECTIONY\">Use this icon to insert two placeholders with the set operator <emph>intersection of sets </emph>.</ahelp> The same happens if you enter <emph><?> intersection <?></emph> Commands window."
-msgstr "<ahelp hid=\"HID_SMA_XINTERSECTIONY\">Use este icono para insertar dos comodines con el operador de conjunto <emph>intersección de conjuntos</emph>.</ahelp> El resultado es el mismo si se escribe <emph><?> intersection <?></emph> Ventana Comandos."
+msgstr "<ahelp hid=\"HID_SMA_XINTERSECTIONY\">Utilice este icono para insertar dos huecos con el operador de conjunto <emph>intersección de conjuntos</emph>.</ahelp> Se obtiene el mismo resultado si se escribe <emph><?> intersection <?></emph> en el cuadro Órdenes."
#. nkD6Y
#: 03090800.xhp
@@ -13019,7 +13019,7 @@ msgctxt ""
"hd_id3149819\n"
"help.text"
msgid "Borders"
-msgstr "Márgenes"
+msgstr "Bordes"
#. XUGBv
#: 05030000.xhp
diff --git a/source/es/helpcontent2/source/text/swriter.po b/source/es/helpcontent2/source/text/swriter.po
index 88d3ede0056..92844b3ba5e 100644
--- a/source/es/helpcontent2/source/text/swriter.po
+++ b/source/es/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-01 11:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1551206337.000000\n"
#. P7iNX
@@ -2489,7 +2489,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Status Bar (Writer)"
-msgstr ""
+msgstr "Barra de estado (Writer)"
#. bwSYr
#: main0208.xhp
diff --git a/source/es/helpcontent2/source/text/swriter/00.po b/source/es/helpcontent2/source/text/swriter/00.po
index 71d37509415..546cef450bb 100644
--- a/source/es/helpcontent2/source/text/swriter/00.po
+++ b/source/es/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter00/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563615688.000000\n"
#. E9tti
@@ -1643,7 +1643,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <menuitem>Insert - Section - Columns</menuitem> tab."
-msgstr ""
+msgstr "Vaya a <menuitem>Insertar ▸ Sección ▸</menuitem> pestaña <menuitem>Columnas</menuitem>."
#. ZCfVD
#: 00000405.xhp
diff --git a/source/es/helpcontent2/source/text/swriter/01.po b/source/es/helpcontent2/source/text/swriter/01.po
index 29f4d6bea6e..b40442ba295 100644
--- a/source/es/helpcontent2/source/text/swriter/01.po
+++ b/source/es/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-04 00:16+0000\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1566235661.000000\n"
#. sZfWF
@@ -770,7 +770,7 @@ msgctxt ""
"par_id3154616\n"
"help.text"
msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icono Objeto anterior</alt></image>"
#. z3HC5
#: 02110000.xhp
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icono Objeto siguiente</alt></image>"
#. xyGWM
#: 02110000.xhp
@@ -968,7 +968,7 @@ msgctxt ""
"par_id611603290378376\n"
"help.text"
msgid "Tables"
-msgstr ""
+msgstr "Tablas"
#. hiFCt
#: 02110000.xhp
@@ -977,7 +977,7 @@ msgctxt ""
"par_id531603530756147\n"
"help.text"
msgid "Table items"
-msgstr ""
+msgstr "Elementos de tabla"
#. Kj4pw
#: 02110000.xhp
@@ -986,7 +986,7 @@ msgctxt ""
"par_id291603290382271\n"
"help.text"
msgid "Go to, Select, Edit, Delete, Rename"
-msgstr ""
+msgstr "Ir a, Seleccionar, Editar, Eliminar, Cambiar nombre"
#. raARd
#: 02110000.xhp
@@ -995,7 +995,7 @@ msgctxt ""
"par_id771603291076318\n"
"help.text"
msgid "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Frames icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Icono Marcos</alt></image>"
#. HakR3
#: 02110000.xhp
@@ -1004,7 +1004,7 @@ msgctxt ""
"par_id191603290368002\n"
"help.text"
msgid "Frames"
-msgstr ""
+msgstr "Marcos"
#. qDEB2
#: 02110000.xhp
@@ -1013,7 +1013,7 @@ msgctxt ""
"par_id801603532799021\n"
"help.text"
msgid "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Images Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Icono Imágenes</alt></image>"
#. 4Zuo5
#: 02110000.xhp
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id581603532733359\n"
"help.text"
msgid "Images"
-msgstr ""
+msgstr "Imágenes"
#. s8NFi
#: 02110000.xhp
@@ -1031,7 +1031,7 @@ msgctxt ""
"par_id8016035394621021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">OLE Objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Icono Objetos OLE</alt></image>"
#. DF7be
#: 02110000.xhp
@@ -1040,7 +1040,7 @@ msgctxt ""
"par_id581603532723769\n"
"help.text"
msgid "OLE Objects"
-msgstr ""
+msgstr "Objetos OLE"
#. gY9hD
#: 02110000.xhp
@@ -1049,7 +1049,7 @@ msgctxt ""
"par_id801636822799021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Bookmarks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Icono Marcadores</alt></image>"
#. FABsh
#: 02110000.xhp
@@ -1058,7 +1058,7 @@ msgctxt ""
"par_id581603532733956\n"
"help.text"
msgid "Bookmarks"
-msgstr ""
+msgstr "Marcadores"
#. Vk58Q
#: 02110000.xhp
@@ -1067,7 +1067,7 @@ msgctxt ""
"par_id411603531074035\n"
"help.text"
msgid "Frame, Image, OLE Objects, Bookmark items"
-msgstr ""
+msgstr "Marcos, imágenes, objetos OLE, elementos de marcador"
#. ZqgVB
#: 02110000.xhp
@@ -1076,7 +1076,7 @@ msgctxt ""
"par_id611603290373033\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Ir a, Editar, Eliminar, Cambiar nombre"
#. wRDwv
#: 02110000.xhp
@@ -1085,7 +1085,7 @@ msgctxt ""
"par_id741603570764762\n"
"help.text"
msgid "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Sections Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Icono Secciones</alt></image>"
#. SLmBP
#: 02110000.xhp
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id621603570764762\n"
"help.text"
msgid "Sections"
-msgstr ""
+msgstr "Secciones"
#. EQFyT
#: 02110000.xhp
@@ -1103,7 +1103,7 @@ msgctxt ""
"par_id111603570764762\n"
"help.text"
msgid "Section items"
-msgstr ""
+msgstr "Elementos de sección"
#. ZFCBK
#: 02110000.xhp
@@ -1112,7 +1112,7 @@ msgctxt ""
"par_id291694280382271\n"
"help.text"
msgid "Go to, Select, Edit, Rename"
-msgstr ""
+msgstr "Ir a, Seleccionar, Editar, Cambiar nombre"
#. RTDr9
#: 02110000.xhp
@@ -1121,7 +1121,7 @@ msgctxt ""
"par_id461603570542532\n"
"help.text"
msgid "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Hyperlinks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Icono Hiperenlaces</alt></image>"
#. yve5A
#: 02110000.xhp
@@ -1130,7 +1130,7 @@ msgctxt ""
"par_id801603570516284\n"
"help.text"
msgid "Hyperlinks"
-msgstr ""
+msgstr "Hiperenlaces"
#. YCGxB
#: 02110000.xhp
@@ -1139,7 +1139,7 @@ msgctxt ""
"par_id81603570505590\n"
"help.text"
msgid "Hyperlink items"
-msgstr ""
+msgstr "Elementos de hiperenlace"
#. RT7Pi
#: 02110000.xhp
@@ -1148,7 +1148,7 @@ msgctxt ""
"par_id961603570483539\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Ir a, Editar, Eliminar, Cambiar nombre"
#. MmCsC
#: 02110000.xhp
@@ -1157,7 +1157,7 @@ msgctxt ""
"par_id901603571492300\n"
"help.text"
msgid "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">References Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">Icono Referencias</alt></image>"
#. iDyLx
#: 02110000.xhp
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id91603571492300\n"
"help.text"
msgid "References"
-msgstr ""
+msgstr "Referencias"
#. AdAzM
#: 02110000.xhp
@@ -1175,7 +1175,7 @@ msgctxt ""
"par_id121603573019324\n"
"help.text"
msgid "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Indexes Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Icono Índices</alt></image>"
#. DJW2V
#: 02110000.xhp
@@ -1184,7 +1184,7 @@ msgctxt ""
"par_id591603573019324\n"
"help.text"
msgid "Indexes"
-msgstr ""
+msgstr "Índices"
#. SpEBB
#: 02110000.xhp
@@ -1202,7 +1202,7 @@ msgctxt ""
"par_id29160996782271\n"
"help.text"
msgid "Go to"
-msgstr ""
+msgstr "Ir a"
#. DY5cm
#: 02110000.xhp
@@ -1211,7 +1211,7 @@ msgctxt ""
"par_id741603572161942\n"
"help.text"
msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Comments Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Icono Comentarios</alt></image>"
#. BRGDd
#: 02110000.xhp
@@ -1220,7 +1220,7 @@ msgctxt ""
"par_id41603572161942\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Comentarios"
#. XJRCd
#: 02110000.xhp
@@ -1229,7 +1229,7 @@ msgctxt ""
"par_id711603572473016\n"
"help.text"
msgid "Show All, Hide All, Delete All"
-msgstr ""
+msgstr "Mostrar todo, Ocultar todo, Eliminar todo"
#. WMdde
#: 02110000.xhp
@@ -1238,7 +1238,7 @@ msgctxt ""
"par_id751603572161943\n"
"help.text"
msgid "Comments items"
-msgstr ""
+msgstr "Elementos de comentarios"
#. VzhmF
#: 02110000.xhp
@@ -1247,7 +1247,7 @@ msgctxt ""
"par_id291604453382271\n"
"help.text"
msgid "Go to, Edit, Delete"
-msgstr ""
+msgstr "Ir a, Editar, Eliminar"
#. E5dpv
#: 02110000.xhp
@@ -1256,7 +1256,7 @@ msgctxt ""
"par_id951603571856944\n"
"help.text"
msgid "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Drawing objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Icono Objetos de dibujo</alt></image>"
#. apAFN
#: 02110000.xhp
@@ -1265,7 +1265,7 @@ msgctxt ""
"par_id351603571856944\n"
"help.text"
msgid "Drawing objects"
-msgstr ""
+msgstr "Objetos de dibujo"
#. PnfNJ
#: 02110000.xhp
@@ -1274,7 +1274,7 @@ msgctxt ""
"par_id461603571856945\n"
"help.text"
msgid "Drawing objects items"
-msgstr ""
+msgstr "Elementos de objetos de dibujo"
#. DDAda
#: 02110000.xhp
@@ -1283,7 +1283,7 @@ msgctxt ""
"par_id291603347382271\n"
"help.text"
msgid "Go to, Delete, Rename"
-msgstr ""
+msgstr "Ir a, Eliminar, Cambiar nombre"
#. vGwzZ
#: 02110000.xhp
@@ -1292,7 +1292,7 @@ msgctxt ""
"par_id781603291428300\n"
"help.text"
msgid "All"
-msgstr ""
+msgstr "Todo"
#. AChDj
#: 02110000.xhp
@@ -1301,7 +1301,7 @@ msgctxt ""
"par_id711603291482148\n"
"help.text"
msgid "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Drag Mode\">Drag Mode</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"display\">Display</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Modo de arrastre\">Modo de arrastre</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"visualización\">Visualización</link>"
#. SMFgG
#: 02110000.xhp
@@ -1751,7 +1751,7 @@ msgctxt ""
"hd_id3154292\n"
"help.text"
msgid "<variable id=\"dragmode\">Drag Mode</variable>"
-msgstr ""
+msgstr "<variable id=\"dragmode\">Modo de arrastre</variable>"
#. G5FvJ
#: 02110000.xhp
@@ -5081,7 +5081,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Indents (Sections)"
-msgstr ""
+msgstr "Sangrías (secciones)"
#. ZHUTB
#: 04020200.xhp
@@ -7079,7 +7079,7 @@ msgctxt ""
"hd_id3154598\n"
"help.text"
msgid "Offset in days/minutes"
-msgstr "Corrección en días / minutos"
+msgstr "Corrección en días/minutos"
#. xVNTE
#: 04090001.xhp
@@ -14092,7 +14092,7 @@ msgctxt ""
"par_id91599005949275\n"
"help.text"
msgid "Term"
-msgstr ""
+msgstr "Término"
#. zMi8V
#: 04120250.xhp
@@ -14101,7 +14101,7 @@ msgctxt ""
"par_id461599005949276\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significado"
#. e7Npc
#: 04120250.xhp
@@ -14110,7 +14110,7 @@ msgctxt ""
"par_id291599005949278\n"
"help.text"
msgid "Search term"
-msgstr ""
+msgstr "Término de búsqueda"
#. zFwbQ
#: 04120250.xhp
@@ -14119,7 +14119,7 @@ msgctxt ""
"par_id3152953\n"
"help.text"
msgid "\"Search term\" refers to the index entry that you want to mark in the document."
-msgstr "\"Término de búsqueda\" se refiere a la entrada de índice que se desea marcar en el documento."
+msgstr "El «término de búsqueda» es la entrada de índice que se desea marcar en el documento."
#. CEahq
#: 04120250.xhp
@@ -14128,7 +14128,7 @@ msgctxt ""
"par_id811599006053151\n"
"help.text"
msgid "Alternative entry"
-msgstr ""
+msgstr "Entrada alternativa"
#. rxooN
#: 04120250.xhp
@@ -16405,7 +16405,7 @@ msgctxt ""
"hd_id3155625\n"
"help.text"
msgid "Settings"
-msgstr ""
+msgstr "Configuración"
#. eEhFJ
#: 05040500.xhp
@@ -16450,7 +16450,7 @@ msgctxt ""
"par_id971604735234085\n"
"help.text"
msgid "Tooltips describe each predefined selection."
-msgstr ""
+msgstr "Las descripciones emergentes describen cada una de las selecciones predefinidas."
#. 2Dr2B
#: 05040500.xhp
@@ -16477,7 +16477,7 @@ msgctxt ""
"par_id321604744698332\n"
"help.text"
msgid "The following two options are only available when formatting sections."
-msgstr ""
+msgstr "Las dos opciones siguientes están disponibles solamente cuando se da formato a las secciones."
#. znZph
#: 05040500.xhp
@@ -16549,7 +16549,7 @@ msgctxt ""
"hd_id3147562\n"
"help.text"
msgid "Column"
-msgstr ""
+msgstr "Columna"
#. EQzit
#: 05040500.xhp
@@ -16693,7 +16693,7 @@ msgctxt ""
"hd_id3155775\n"
"help.text"
msgid "Style"
-msgstr ""
+msgstr "Estilo"
#. yYDqn
#: 05040500.xhp
@@ -16711,7 +16711,7 @@ msgctxt ""
"hd_id931604684769944\n"
"help.text"
msgid "Width"
-msgstr ""
+msgstr "Anchura"
#. H2vfk
#: 05040500.xhp
@@ -16729,7 +16729,7 @@ msgctxt ""
"hd_id421604684687071\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Color"
#. CuuBH
#: 05040500.xhp
@@ -16738,7 +16738,7 @@ msgctxt ""
"par_id601604684699407\n"
"help.text"
msgid "Select a color for the separator line."
-msgstr ""
+msgstr "Seleccione un color para la línea separadora."
#. u3jAb
#: 05040500.xhp
@@ -24055,7 +24055,7 @@ msgctxt ""
"par_id3147514\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/overwrite\">Replaces styles in the current document that have the same name as the styles you are loading. No warning message is given.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/overwrite\">Sustituye los estilos del documento actual que tienen el mismo nombre que los estilos que van a cargarse. No se emite ningún mensaje de alerta.</ahelp>"
#. EqEyd
#: 05170000.xhp
@@ -24064,7 +24064,7 @@ msgctxt ""
"par_id3150358\n"
"help.text"
msgid "Only applied styles and modified styles are loaded from a document or template. The styles shown in the sidebar cannot be used as a guide."
-msgstr ""
+msgstr "Solamente se cargan los estilos aplicados y los modificados de un documento o plantilla. Los estilos mostrados en la barra lateral no se pueden utilizar como guía."
#. ivfvH
#: 05170000.xhp
@@ -24073,7 +24073,7 @@ msgctxt ""
"hd_id3153668\n"
"help.text"
msgid "From File"
-msgstr ""
+msgstr "Desde archivo"
#. 8Npm7
#: 05170000.xhp
diff --git a/source/es/helpcontent2/source/text/swriter/guide.po b/source/es/helpcontent2/source/text/swriter/guide.po
index b1c7186262b..5b60345d98c 100644
--- a/source/es/helpcontent2/source/text/swriter/guide.po
+++ b/source/es/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-04 00:16+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/es/>\n"
"Language: es\n"
@@ -1220,7 +1220,7 @@ msgctxt ""
"par_id3155390\n"
"help.text"
msgid "Choose <menuitem>Format - Character</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Formato ▸ Carácter</menuitem>."
#. vv3Ti
#: background.xhp
@@ -1229,7 +1229,7 @@ msgctxt ""
"par_id3153665\n"
"help.text"
msgid "Click the <emph>Highlighting</emph> tab, select the background color."
-msgstr ""
+msgstr "Pulse en la pestaña <emph>Resalte</emph> y seleccione el color de fondo."
#. tfUge
#: background.xhp
@@ -1265,7 +1265,7 @@ msgctxt ""
"par_id3151245\n"
"help.text"
msgid "On the <emph>Area</emph> tab page, select the background color or a background graphic."
-msgstr ""
+msgstr "En la pestaña <emph>Área</emph>, seleccione el color o la imagen de fondo."
#. k9Qm3
#: background.xhp
@@ -1301,7 +1301,7 @@ msgctxt ""
"par_id3148664\n"
"help.text"
msgid "Choose <menuitem>Table - Properties</menuitem>."
-msgstr ""
+msgstr "Diríjase a <menuitem>Tabla ▸ Propiedades</menuitem>."
#. wLrJQ
#: background.xhp
@@ -12389,7 +12389,7 @@ msgctxt ""
"par_idN10630\n"
"help.text"
msgid "Click <emph>Print</emph>."
-msgstr ""
+msgstr "Pulse en <emph>Imprimir</emph>."
#. 3HQ8i
#: print_brochure.xhp
@@ -12479,7 +12479,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting What to Print"
-msgstr ""
+msgstr "Seleccionar qué imprimir"
#. AiDCa
#: print_selection.xhp
@@ -12488,7 +12488,7 @@ msgctxt ""
"bm_id541605272263762\n"
"help.text"
msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>seleccionar; páginas que imprimir</bookmark_value><bookmark_value>imprimir;intervalo de páginas</bookmark_value><bookmark_value>imprimir;selección</bookmark_value>"
#. WiStT
#: print_selection.xhp
@@ -12497,7 +12497,7 @@ msgctxt ""
"hd_id721605269733190\n"
"help.text"
msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
-msgstr ""
+msgstr "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Seleccionar qué imprimir</link></variable>"
#. FzVEC
#: print_selection.xhp
@@ -12506,7 +12506,7 @@ msgctxt ""
"par_id501605271321756\n"
"help.text"
msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
-msgstr ""
+msgstr "Es posible optar por imprimir páginas solas, un intervalo de páginas o una selección del documento."
#. 4KAbF
#: print_selection.xhp
@@ -12515,16 +12515,16 @@ msgctxt ""
"hd_id601605269573468\n"
"help.text"
msgid "Printing a single page"
-msgstr ""
+msgstr "Imprimir una única página"
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
-msgstr ""
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Diríjase a <menuitem>Archivo ▸ Imprimir</menuitem> para abrir el cuadro de diálogo <emph>Imprimir</emph>."
#. 2GBM8
#: print_selection.xhp
@@ -12533,7 +12533,7 @@ msgctxt ""
"par_id31605269603220\n"
"help.text"
msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
-msgstr ""
+msgstr "En la sección <emph>Intervalo y copias</emph>, seleccione la opción <emph>Páginas</emph>. El cuadro de texto mostrará el número de la página actual."
#. QtixM
#: print_selection.xhp
@@ -12542,7 +12542,7 @@ msgctxt ""
"par_id251605269806172\n"
"help.text"
msgid "Enter the page number you want to print."
-msgstr ""
+msgstr "Introduzca el número de la página que desee imprimir."
#. 3oqEG
#: print_selection.xhp
@@ -12551,7 +12551,7 @@ msgctxt ""
"par_id641605269861744\n"
"help.text"
msgid "The preview box on the left shows the selected page."
-msgstr ""
+msgstr "El cuadro de previsualización a la izquierda mostrará la página seleccionada."
#. KkcGy
#: print_selection.xhp
@@ -12560,16 +12560,16 @@ msgctxt ""
"hd_id171605269647972\n"
"help.text"
msgid "Printing a range of pages"
-msgstr ""
+msgstr "Imprimir un intervalo de páginas"
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
-msgstr ""
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Diríjase a <menuitem>Archivo ▸ Imprimir</menuitem> para abrir el cuadro de diálogo <emph>Imprimir</emph>."
#. hWBFk
#: print_selection.xhp
@@ -12578,7 +12578,7 @@ msgctxt ""
"par_id261605269669284\n"
"help.text"
msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
-msgstr ""
+msgstr "En la sección <emph>Intervalo y copias</emph>, seleccione la opción <emph>Páginas</emph>. El cuadro de texto mostrará el número de página actual."
#. 9F38F
#: print_selection.xhp
@@ -12587,60 +12587,42 @@ msgctxt ""
"par_id331605269672260\n"
"help.text"
msgid "Enter the page numbers to print."
-msgstr ""
+msgstr "Introduzca los números de las páginas que se imprimirán."
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
-msgstr ""
-
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12650,7 +12632,7 @@ msgctxt ""
"par_id581605269685019\n"
"help.text"
msgid "The preview box on the left shows the selected pages."
-msgstr ""
+msgstr "El cuadro de previsualización a la izquierda mostrará las páginas seleccionadas."
#. PZtKv
#: print_selection.xhp
@@ -12659,7 +12641,7 @@ msgctxt ""
"hd_id571605269596899\n"
"help.text"
msgid "Printing a selection of text or graphics"
-msgstr ""
+msgstr "Imprimir una selección de texto o imágenes"
#. 5KxGz
#: print_selection.xhp
@@ -12668,16 +12650,16 @@ msgctxt ""
"par_id261605270158305\n"
"help.text"
msgid "Select the content to print."
-msgstr ""
+msgstr "Seleccione el contenido que se va a imprimir."
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
-msgstr ""
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Diríjase a <menuitem>Archivo ▸ Imprimir</menuitem> para abrir el cuadro de diálogo <emph>Imprimir</emph>."
#. iaYKz
#: print_selection.xhp
@@ -12686,7 +12668,7 @@ msgctxt ""
"par_id911605270164153\n"
"help.text"
msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
-msgstr ""
+msgstr "En la sección <emph>Intervalo y copias</emph>, elija la opción <emph>Selección</emph>."
#. aFMaJ
#: print_selection.xhp
@@ -12695,7 +12677,7 @@ msgctxt ""
"par_id871605270949919\n"
"help.text"
msgid "The preview box shows the selected material."
-msgstr ""
+msgstr "El cuadro de previsualización mostrará el material seleccionado."
#. bJ768
#: print_small.xhp
@@ -12704,7 +12686,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Printing Multiple Pages on One Sheet"
-msgstr "Imprimir varias páginas en una hoja"
+msgstr "Imprimir varias páginas en la misma hoja"
#. qKF9L
#: print_small.xhp
@@ -12722,7 +12704,7 @@ msgctxt ""
"hd_id3149694\n"
"help.text"
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
-msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Imprimir varias páginas por hoja de papel\">Imprimir varias páginas por hoja de papel</link></variable>"
+msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Imprimir varias páginas en la misma hoja\">Imprimir varias páginas en la misma hoja</link></variable>"
#. Q9FyG
#: print_small.xhp
@@ -12731,7 +12713,7 @@ msgctxt ""
"par_id3149829\n"
"help.text"
msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
-msgstr ""
+msgstr "En la sección <emph>Disposición de páginas</emph> del cuadro de diálogo <menuitem>Archivo ▸ Imprimir</menuitem> se encuentra la posibilidad de imprimir varias páginas en una única hoja."
#. 7nqCv
#: print_small.xhp
@@ -12740,7 +12722,7 @@ msgctxt ""
"par_id3156098\n"
"help.text"
msgid "Choose <menuitem>File - Print</menuitem>"
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Imprimir</menuitem>"
#. 5EBvC
#: print_small.xhp
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Si no lo especifica de otro modo, todos los documentos de texto nuevos de $[officename] se basará en la plantilla predeterminada."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] tiene un número de <link href=\"text/swriter/01/05130000.xhp\" name=\"plantillas predefinidas\">plantillas predefinidas</link> que puede usar para crear tipos diferentes o documentos de texto, como las cartas comerciales."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Para configurar el comportamiento del cursor directo, vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME Writer ▸ Ayudas de formato</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "En la barra <item type=\"menuitem\">Herramientas</item>, pulse en el icono <item type=\"menuitem\">Cursor directo</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icono</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Pulse en un espacio libre del documento de texto. El puntero del ratón cambia para reflejar la alineación que se aplicará al texto que escriba."
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icono</alt></image> Alinear a la izquierda"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icono</alt></image> Centro"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icono</alt></image> Alinear a la derecha"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
index afa1ce1deed..6370660b5bf 100644
--- a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-11 20:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/es/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Ocultar diapositiva"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~xto…"
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Archivo"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ali~near"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ali~near"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31099,15 +31099,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Seleccionar hasta final del párrafo"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Seleccionar hasta el final de la palabra"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/es/sc/messages.po b/source/es/sc/messages.po
index 754fbe962c1..178f519470b 100644
--- a/source/es/sc/messages.po
+++ b/source/es/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-18 15:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1566031195.000000\n"
#. kBovX
@@ -1540,7 +1540,7 @@ msgstr "Malo"
#: sc/inc/globstr.hrc:284
msgctxt "STR_STYLENAME_WARNING"
msgid "Warning"
-msgstr ""
+msgstr "Alerta"
#. 99BgJ
#: sc/inc/globstr.hrc:285
@@ -21994,7 +21994,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:58
msgctxt "erroralerttabpage-mobile|title_label"
msgid "_Title:"
-msgstr ""
+msgstr "_Título:"
#. DALxA
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:105
@@ -22012,19 +22012,19 @@ msgstr ""
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:134
msgctxt "erroralerttabpage-mobile|actionCB"
msgid "Stop"
-msgstr ""
+msgstr "Parada"
#. fcLJh
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:135
msgctxt "erroralerttabpage-mobile|actionCB"
msgid "Warning"
-msgstr ""
+msgstr "Alerta"
#. trGJe
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:136
msgctxt "erroralerttabpage-mobile|actionCB"
msgid "Information"
-msgstr ""
+msgstr "Información"
#. PL8Bz
#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:15
@@ -24592,213 +24592,213 @@ msgid "~File"
msgstr "~Archivo"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Especifique los bordes de las celdas seleccionadas."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Aumentar sangría"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Disminuir sangría"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "I_nsertar"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "I~nsertar"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alineación de objetos"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposición"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Disposición"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "E_stadísticas"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Da_tos"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "Da~tos"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisión"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisión"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Di_bujo"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Di~bujo"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objeto"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimir"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimir"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formu_lario"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formu~lario"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensión"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensión"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Herramientas"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Herramientas"
@@ -25216,13 +25216,13 @@ msgstr "Realce 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "Título 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "Título 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -25584,7 +25584,7 @@ msgstr "Malo"
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:251
msgctxt "notebookbar_groups|stylemenustatw"
msgid "Warning"
-msgstr "Advertencia"
+msgstr "Alerta"
#. jE3Hw
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:260
@@ -28633,7 +28633,7 @@ msgstr "Especifica que, al pegar celdas desde el portapapeles a un intervalo de
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
msgctxt "scgeneralpage|enter_paste_mode_cb"
msgid "Press Enter to paste and clear clipboard"
-msgstr ""
+msgstr "Oprimir Intro para pegar y vaciar portapapeles"
#. LFenu
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
@@ -29631,338 +29631,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solver"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr "_Restablecer todo"
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_pciones..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Solucionar"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Celda objeti_vo"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimizar resultados a"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Cambiando las celdas"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Mín_imo"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Especifique el intervalo de celdas que se pueden modificar."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Máximo"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Especifique el intervalo de celdas que se pueden modificar."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Especifique el intervalo de celdas que se pueden modificar."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Valor de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Especifique el intervalo de celdas que se pueden modificar."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Especifique el intervalo de celdas que se pueden modificar."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Referencia de _celda"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operador"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_alor"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de celda"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de celda"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de celda"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de celda"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Entero"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binario"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operador"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Entero"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binario"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operador"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Entero"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binario"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operador"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Entero"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binario"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operador"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valor"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valor"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valor"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valor"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Quitar"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Quitar"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Quitar"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Quitar"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Condiciones limitantes"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/es/sd/messages.po b/source/es/sd/messages.po
index bce7cacb0f9..610cb2030f5 100644
--- a/source/es/sd/messages.po
+++ b/source/es/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-17 20:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-25 12:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563809077.000000\n"
#. WDjkB
@@ -3823,116 +3823,116 @@ msgstr "~Tabla"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Di_bujo"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Di~bujo"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formu_lario"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formu~lario"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "_3D"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "~3D"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Patrón"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Patrón"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensión"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensión"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Herramientas"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Herramientas"
@@ -4336,12 +4336,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menú"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensión"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -5708,7 +5702,7 @@ msgstr "Alinea las imágenes de la animación."
#: sd/uiconfig/simpress/ui/dockinganimation.ui:410
msgctxt "dockinganimation|label1"
msgid "Animation Group"
-msgstr ""
+msgstr "Grupo de animación"
#. Bu3De
#: sd/uiconfig/simpress/ui/dockinganimation.ui:454
@@ -6576,219 +6570,219 @@ msgid "~File"
msgstr "~Archivo"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insertar"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "I~nsertar"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "Dis_posición"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Dis~posición"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Pase de diapositivas"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Pase de diapositivas"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisión"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisión"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabla"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabla"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Di_bujo"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Di~bujo"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formu_lario"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formu~lario"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Patrón"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Patrón"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Ver"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Esq~uema"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "_3D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "~3D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensión"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensión"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Herramientas"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Herramientas"
@@ -7708,12 +7702,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Editar contorno"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensión"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/es/sfx2/messages.po b/source/es/sfx2/messages.po
index edf181b61c2..6c72e865939 100644
--- a/source/es/sfx2/messages.po
+++ b/source/es/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-14 08:35+0000\n"
+"PO-Revision-Date: 2020-11-25 12:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562302714.000000\n"
#. bHbFE
@@ -4133,37 +4133,37 @@ msgstr "Eliminar…"
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Acoplar"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Desacoplar"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Cerrar barra lateral"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Personalización"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Restablecer predeterminados"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Configuración de barra lateral"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/es/starmath/messages.po b/source/es/starmath/messages.po
index 5128a6e9599..22c9a489199 100644
--- a/source/es/starmath/messages.po
+++ b/source/es/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-20 07:13+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562321435.000000\n"
#. GrDhX
@@ -1377,91 +1377,91 @@ msgstr "Cambiar tipo de letra"
#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
-msgstr "Negro"
+msgstr "Color negro"
#. GrXZS
#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
-msgstr "Azul"
+msgstr "Color azul"
#. DRFYB
#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
-msgstr "Verde"
+msgstr "Color verde"
#. MJhTE
#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
-msgstr "Rojo"
+msgstr "Color rojo"
#. dDDvs
#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr "Aguamarina"
+msgstr "Color agua"
#. 6zGQ2
#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr "Fucsia"
+msgstr "Color fucsia"
#. em3aA
#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
-msgstr "Gris"
+msgstr "Color gris"
#. 8Pn5t
#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
-msgstr "Lima"
+msgstr "Color lima"
#. xGjXA
#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
-msgstr "Granate"
+msgstr "Color granate"
#. Cmhuj
#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
-msgstr "Azul marino"
+msgstr "Color azul marino"
#. XL3XB
#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
-msgstr "Aceituna"
+msgstr "Color aceituna"
#. yZ9RF
#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
-msgstr "Púrpura"
+msgstr "Color púrpura"
#. 2zE5Z
#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
-msgstr "Plata"
+msgstr "Color plata"
#. vMBoD
#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
-msgstr "Azul petróleo"
+msgstr "Color azul petróleo"
#. U7bEA
#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
-msgstr "Amarillo"
+msgstr "Color amarillo"
#. 6mDX7
#: starmath/inc/strings.hrc:206
@@ -1485,67 +1485,67 @@ msgstr "Color hexadecimal"
#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
-msgstr ""
+msgstr "Color coral"
#. gPCCe
#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
-msgstr ""
+msgstr "Color carmesí"
#. oDRbR
#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
-msgstr ""
+msgstr "Color azul nocturno"
#. 4aCMu
#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
-msgstr ""
+msgstr "Color violeta"
#. Qivdb
#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
-msgstr ""
+msgstr "Color naranja"
#. CVygm
#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
-msgstr ""
+msgstr "Color bermellón"
#. LbfRK
#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
-msgstr ""
+msgstr "Color verde mar"
#. DKivY
#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
-msgstr ""
+msgstr "Color añil"
#. TZQzN
#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
-msgstr ""
+msgstr "Color rosa cálido"
#. GHgTB
#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
-msgstr ""
+msgstr "Color lavanda"
#. HQmw7
#: starmath/inc/strings.hrc:219
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
-msgstr ""
+msgstr "Color nieve"
#. A2GQ4
#: starmath/inc/strings.hrc:220
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Teorema fundamental del cálculo"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr "Ecuación del caos"
@@ -2265,7 +2265,7 @@ msgstr "rojo"
#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr "aguamarina"
+msgstr "agua"
#. GLy7q
#: starmath/inc/strings.hrc:342
@@ -2319,7 +2319,7 @@ msgstr "plata"
#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
-msgstr "verde azulado"
+msgstr "azul petróleo"
#. QkBT2
#: starmath/inc/strings.hrc:351
@@ -2331,67 +2331,67 @@ msgstr "amarillo"
#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
-msgstr ""
+msgstr "coral"
#. RZSh6
#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
-msgstr ""
+msgstr "carmesí"
#. QGibF
#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
-msgstr ""
+msgstr "azul nocturno"
#. NKAkW
#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
-msgstr ""
+msgstr "violeta"
#. sF9zc
#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
-msgstr ""
+msgstr "naranja"
#. CXMyK
#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
-msgstr ""
+msgstr "bermellón"
#. Ak3yd
#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
-msgstr ""
+msgstr "lavanda"
#. DLUaV
#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
-msgstr ""
+msgstr "nieve"
#. QDTEU
#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
-msgstr ""
+msgstr "verde mar"
#. PNveS
#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
-msgstr ""
+msgstr "añil"
#. r5S8P
#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
-msgstr ""
+msgstr "rosa cálido"
#. NNmRT
#: starmath/inc/strings.hrc:363
diff --git a/source/es/svx/messages.po b/source/es/svx/messages.po
index 00e96707392..e687c3d7b91 100644
--- a/source/es/svx/messages.po
+++ b/source/es/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-09 15:36+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/es/>\n"
"Language: es\n"
@@ -3400,7 +3400,7 @@ msgstr "Azul claro"
#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
-msgstr "Verde azulado claro"
+msgstr "Azul petróleo claro"
#. 3Z7KA
#: include/svx/strings.hrc:596
@@ -3479,7 +3479,7 @@ msgstr "Azul oscuro"
#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
-msgstr "Verde azulado oscuro"
+msgstr "Azul petróleo oscuro"
#. qFAAB
#: include/svx/strings.hrc:610
@@ -5562,19 +5562,19 @@ msgstr "Verde 1 (color principal de %PRODUCTNAME)"
#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
-msgstr "Verde acentuado"
+msgstr "Verde realzado"
#. opj2M
#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
-msgstr "Azul acentuado"
+msgstr "Azul realzado"
#. tC5jE
#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
-msgstr "Naranja acentuado"
+msgstr "Naranja realzado"
#. 3T9pJ
#: include/svx/strings.hrc:1000
@@ -5586,13 +5586,13 @@ msgstr "Púrpura"
#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
-msgstr "Púrpura acentuado"
+msgstr "Púrpura realzado"
#. Nhtbq
#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
-msgstr "Amarillo acentuado"
+msgstr "Amarillo realzado"
#. apBBr
#: include/svx/strings.hrc:1004
@@ -7229,11 +7229,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Ajustar la diapositiva a la ventana."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "No se pudieron cargar todos los objetos de SmartArt. Guardar en Microsoft Office 2010 o posterior evitaría este problema."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "No se pudieron cargar todos los objetos de SmartArt. Guardar en Microsoft Office 2010 o posterior evitará este problema."
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -7641,7 +7641,7 @@ msgstr "$(CAPACITY) kiB"
#: include/svx/strings.hrc:1373
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
-msgstr ""
+msgstr "$(CAPACITY) kiB (reducción del $(REDUCTION) %)"
#. 8GqWz
#: include/svx/strings.hrc:1374
@@ -9759,7 +9759,7 @@ msgstr ""
#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
-msgstr ""
+msgstr "Escritura kitana menor"
#. onKAu
#: include/svx/strings.hrc:1735
@@ -13957,17 +13957,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barra de navegación"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"El informe se ha enviado correctamente.\n"
-"Podrá encontrarlo pronto en:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13993,11 +13990,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Enviar informe"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_No enviar"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -19048,7 +19045,7 @@ msgstr "Nuevo…"
#: svx/uiconfig/ui/sidebargallery.ui:373
msgctxt "sidebargallery|btnMoreGalleries"
msgid "Add more galleries via extension"
-msgstr ""
+msgstr "Añadir más galerías vía extensiones"
#. BdPh5
#: svx/uiconfig/ui/sidebargraphic.ui:52
@@ -19637,7 +19634,7 @@ msgstr "_Plástico"
#: svx/uiconfig/ui/surfacewindow.ui:94
msgctxt "surfacewindow|RID_SVXSTR_METAL"
msgid "Me_tal"
-msgstr ""
+msgstr "Me_tal"
#. ECSGJ
#: svx/uiconfig/ui/tablewindow.ui:35
diff --git a/source/es/sw/messages.po b/source/es/sw/messages.po
index 744dfcd0f7a..996dcd1e2c8 100644
--- a/source/es/sw/messages.po
+++ b/source/es/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-17 20:36+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/es/>\n"
"Language: es\n"
@@ -98,13 +98,13 @@ msgstr "Las tablas no deben contener títulos."
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Mantenga ordenados los niveles de los títulos. El nivel de título %LEVEL_CURRENT% no puede ir después de %LEVEL_PREV%."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr "Evite los objetos de Fontwork en los documentos. Cerciórese de utilizarlos únicamente para muestras u otros textos insignificantes."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Párrafos numerados"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Formato directo de carácter"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Formato directo de párrafo"
#. YUbUQ
#. Format names
@@ -1227,7 +1227,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:135
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Endnote"
-msgstr ""
+msgstr "Nota final"
#. YmvFY
#: sw/inc/inspectorproperties.hrc:136
@@ -1419,7 +1419,7 @@ msgstr "Nombre de hiperenlace"
#: sw/inc/inspectorproperties.hrc:167
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Target"
-msgstr ""
+msgstr "Destino de hiperenlace"
#. BoFLZ
#: sw/inc/inspectorproperties.hrc:168
@@ -1515,7 +1515,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:183
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Outline Level"
-msgstr ""
+msgstr "Nivel de esquema"
#. syTbJ
#: sw/inc/inspectorproperties.hrc:184
@@ -1671,7 +1671,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:209
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Auto First Line Indent"
-msgstr ""
+msgstr "Párr. con sangría autom. de 1.ᵉʳ renglón"
#. Q68Bx
#: sw/inc/inspectorproperties.hrc:210
@@ -1689,25 +1689,25 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:212
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Forbidden Rules"
-msgstr ""
+msgstr "Párr. con regla de prohibición"
#. yZZSA
#: sw/inc/inspectorproperties.hrc:213
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Hanging Punctuation"
-msgstr ""
+msgstr "Párr. con puntuación fuera de margen"
#. dDgrE
#: sw/inc/inspectorproperties.hrc:214
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Hyphenation"
-msgstr ""
+msgstr "Párr. con división de palabras"
#. mHDWE
#: sw/inc/inspectorproperties.hrc:215
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Numbering Restart"
-msgstr ""
+msgstr "Párr. con reinicio de numeración"
#. Mnm2C
#: sw/inc/inspectorproperties.hrc:216
@@ -1851,7 +1851,7 @@ msgstr "Distancia con borde derecho"
#: sw/inc/inspectorproperties.hrc:239
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Rsid"
-msgstr ""
+msgstr "RSID"
#. Uoosp
#: sw/inc/inspectorproperties.hrc:240
@@ -2067,7 +2067,7 @@ msgstr "Carácter"
#: sw/inc/optload.hrc:40
msgctxt "STR_ARR_METRIC"
msgid "Line"
-msgstr "Línea"
+msgstr "Renglón"
#. qQBCu
#: sw/inc/outline.hrc:27
@@ -5750,19 +5750,19 @@ msgstr "Desactivado"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Pulse para alternar la visibilidad del contenido"
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "pulse con el botón secundario para incluir los subniveles"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Pulse para alternar la visibilidad del contenido"
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -5774,7 +5774,7 @@ msgstr "pulse con el botón secundario para incluir los subniveles"
#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
-msgstr ""
+msgstr "Visibilidad de contenido de esquema"
#. oBH6y
#: sw/inc/strings.hrc:651
@@ -5786,13 +5786,13 @@ msgstr "Alternar"
#: sw/inc/strings.hrc:652
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
-msgstr ""
+msgstr "Mostrar todo"
#. ZUuCQ
#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
-msgstr ""
+msgstr "Ocultar todo"
#. 9Fipd
#: sw/inc/strings.hrc:655
@@ -17448,7 +17448,7 @@ msgstr "Escriba el número de filas que quiera en la tabla."
#: sw/uiconfig/swriter/ui/inserttable.ui:245
msgctxt "inserttable|lbwarning"
msgid "Warning : Large tables may adversely affect performance and compatibility"
-msgstr ""
+msgstr "Cuidado: las tablas grandes pueden afectar el desempeño y la compatibilidad de manera adversa"
#. M2tGB
#: sw/uiconfig/swriter/ui/inserttable.ui:261
@@ -19974,7 +19974,7 @@ msgstr "Eliminar todo"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
-msgstr ""
+msgstr "Visibilidad de contenido de esquema"
#. EBK2E
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
@@ -19986,7 +19986,7 @@ msgstr "Seguimiento de esquema"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Outline Level"
-msgstr "Nivel del esquema"
+msgstr "Nivel en esquema"
#. GyAcG
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237
@@ -20367,181 +20367,181 @@ msgid "~File"
msgstr "~Archivo"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insertar"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insertar"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposición"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposición"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referencia_s"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referencia~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisión"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisión"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabla"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabla"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Di_bujo"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Di~bujo"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimir"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimir"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formu_lario"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formu~lario"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensión"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensión"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Herramientas"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Herramientas"
@@ -21580,12 +21580,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Editar contorno"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensión"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
@@ -23696,7 +23690,7 @@ msgstr "Mismo contenido:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Márgenes:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23786,7 +23780,7 @@ msgstr "Mismo contenido:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Márgenes:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
diff --git a/source/es/xmlsecurity/messages.po b/source/es/xmlsecurity/messages.po
index b79a3d2556f..28f9e64c384 100644
--- a/source/es/xmlsecurity/messages.po
+++ b/source/es/xmlsecurity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:44+0100\n"
-"PO-Revision-Date: 2020-09-09 17:34+0000\n"
+"PO-Revision-Date: 2020-11-28 00:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1554909362.000000\n"
#. EyJrF
@@ -160,19 +160,19 @@ msgstr "Firma digital"
#: xmlsecurity/inc/strings.hrc:55
msgctxt "selectcertificatedialog|STR_NON_REPUDIATION"
msgid "Non-repudiation"
-msgstr "No rechazo"
+msgstr "Irrefutabilidad"
#. kYHCr
#: xmlsecurity/inc/strings.hrc:56
msgctxt "selectcertificatedialog|STR_KEY_ENCIPHERMENT"
msgid "Key encipherment"
-msgstr "Cifrado de la clave"
+msgstr "Cifrado de clave"
#. sEQDG
#: xmlsecurity/inc/strings.hrc:57
msgctxt "selectcertificatedialog|STR_DATA_ENCIPHERMENT"
msgid "Data encipherment"
-msgstr "Cifrado de los datos"
+msgstr "Cifrado de datos"
#. dpZvA
#: xmlsecurity/inc/strings.hrc:58
@@ -184,13 +184,13 @@ msgstr "Acuerdo de claves"
#: xmlsecurity/inc/strings.hrc:59
msgctxt "selectcertificatedialog|STR_KEY_CERT_SIGN"
msgid "Certificate signature verification"
-msgstr "Comprobación de la firma del certificado"
+msgstr "Verificación de firma del certificado"
#. GQcAW
#: xmlsecurity/inc/strings.hrc:60
msgctxt "selectcertificatedialog|STR_CRL_SIGN"
msgid "CRL signature verification"
-msgstr "Comprobación de firmas CRL"
+msgstr "Verificación de firmas CRL"
#. i8FJM
#: xmlsecurity/inc/strings.hrc:61
@@ -224,7 +224,7 @@ msgid ""
"\n"
"Broken certificate data: %{data}"
msgstr ""
-"¡Hay un problema de seguridad con las macros!\n"
+"Hay un problema de seguridad con las macros.\n"
"\n"
"Los datos del certificado están dañados: %{data}"
diff --git a/source/et/cui/messages.po b/source/et/cui/messages.po
index b09deba7492..f4f6da985cb 100644
--- a/source/et/cui/messages.po
+++ b/source/et/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-09 15:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/et/>\n"
@@ -20901,60 +20901,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/et/helpcontent2/source/text/sbasic/shared.po b/source/et/helpcontent2/source/text/sbasic/shared.po
index 4bd77c19ef5..2daa09bbc8c 100644
--- a/source/et/helpcontent2/source/text/sbasic/shared.po
+++ b/source/et/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-09 16:35+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/et/>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir lause</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Loob andmekandjale uue kataloogi."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
+msgid "Creates a new directory on a data medium."
+msgstr "Loob andmekandjale uue kataloogi."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> suvaline stringavaldis, mis määrab loodava kataloogi nime ja tee. Kasutada võib ka <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-i tähistust</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Kui asukohta pole määratud, siis luuakse uus kataloog aktiivsesse kataloogi."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Näide:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Kustutab andmekandjalt olemasoleva kataloogi."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Kui teed pole määratud, siis otsib <emph>lause RmDir</emph> kataloogi, mille soovid praegusest teest kustutada. Kui sealt kataloogi ei leita, kuvatakse veateade."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Näide:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Peatab programmi Basic töö."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Näide:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With lause</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Seab objekti vaikimisi objektiks. Kui muud objektinime pole kirjeldatud, viitavad kõik omadused ja meetodid vaikimisi objektile, kuni jõutakse lauseni End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Kasuta lauset <emph>With</emph> ja <emph>End With</emph> siis, kui ühel objektil on mitu omadust või meetodit."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Esitab tooni arvuti kõlari kaudu. Toon on süsteemikohane ning selle helitugevust ega teravust ei saa muuta."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Näide:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/et/helpcontent2/source/text/scalc/00.po b/source/et/helpcontent2/source/text/scalc/00.po
index 9389f850ba5..114984a362f 100644
--- a/source/et/helpcontent2/source/text/scalc/00.po
+++ b/source/et/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-02 14:07+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/et/>\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Vali <item type=\"menuitem\">Vaade - Akna jaotamine</item></variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Vali <item type=\"menuitem\">Vaade - Ridade ja veergude külmutamine</item></variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/et/helpcontent2/source/text/scalc/guide.po b/source/et/helpcontent2/source/text/scalc/guide.po
index 3ad05a7a03c..bf37e9179c6 100644
--- a/source/et/helpcontent2/source/text/scalc/guide.po
+++ b/source/et/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/et/>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Külmutamiseks korraga mõlemas suunas vali <emph>lahter</emph>, mis jääb allapoole reast ja paremale veerust, mida soovid külmutada."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Vali <item type=\"menuitem\">Vaade - Ridade ja veergude külmutamine</item>"
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Kui soovid printida mõnd rida kõikidele dokumendi lehekülgedele, vali <emph>Vormindus - Trükialad - Redigeeri</emph>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/et/helpcontent2/source/text/sdraw/01.po b/source/et/helpcontent2/source/text/sdraw/01.po
index 9e260580805..37383df0a98 100644
--- a/source/et/helpcontent2/source/text/sdraw/01.po
+++ b/source/et/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-07 14:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/et/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Määrab paberi suuna, lehekülje veerised ja teised paigutuse sätted.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Aktiivse faili kõikide lehekülgede tausta muutmiseks vali taust, klõpsa <emph>Sobib</emph> ja ilmuvas <emph>lehekülje sätete</emph> dialoogis klõpsa <emph>Jah</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/et/helpcontent2/source/text/shared/01.po b/source/et/helpcontent2/source/text/shared/01.po
index 53a55e0fcac..4d8dadbab5d 100644
--- a/source/et/helpcontent2/source/text/shared/01.po
+++ b/source/et/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/et/>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/et/helpcontent2/source/text/shared/guide.po b/source/et/helpcontent2/source/text/shared/guide.po
index 8fbcd18205c..61b00780274 100644
--- a/source/et/helpcontent2/source/text/shared/guide.po
+++ b/source/et/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/et/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"%PRODUCTNAME'iga töötamine\"><item type=\"productname\">%PRODUCTNAME</item>'iga töötamine</link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "HTML-dokument"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "OpenDocument-tekst (lame XML)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 tekstidokument"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 tekstidokument"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 tekstidokument"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "T602 dokument"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Tekst"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Tekst"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windowsi pikselraster"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD-i failivahetusvorming"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - kapseldatud PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - kapseldatud PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET - OS/2 metafail"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - QuickTime'i videovorming"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT - Mac Pict"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Portable Graymap"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphics"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphics"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphics"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network Graphics"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Portable Pixelmap"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Suni rasterpilt"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Suni rasterpilt"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - skaleeritav vektorgraafika"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - skaleeritav vektorgraafika"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - skaleeritav vektorgraafika"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - skaleeritav vektorgraafika (Draw)"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF - Tagged Image File Format"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Windowsi metafail"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitmap"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Tõrkeraportite saatmise rakendus"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>tõrkeraportite saatmise rakendus</bookmark_value> <bookmark_value>raportid; tõrkeraportid</bookmark_value> <bookmark_value>kokkujooksmisraportid</bookmark_value> <bookmark_value>aktiveerimine; tõrkeraportite saatmise rakendus</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Tõrkeraportite saatmise rakendus\">Tõrkeraportite saatmise rakendus</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Tõrkeraportite saatmise rakendus käivitatakse programmi tõrke korral automaatselt."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Tõrkeraportite saatmise rakendus kogub kogu info, mida arendajatel on vaja koodi parandamiseks. See võimaldab programmi hilisemates versioonides samasuguseid krahhe loodetavasti vältida. Palun aita meil tarkvara paremaks muuta ning saada alati tõrkeraportite saatmise rakenduse loodud raport."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Tõrkeraportite saatmise rakenduse käivitamine"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Enamik programmitõrgete korral käivitatakse tõrkeraportite saatmise rakendus automaatselt."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Tõrkeraporti lõpetamine"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Tõrkeraportite saatmise rakenduse põhidialoogis saad sa sisestada lisainfot, mis võiks aidata meie arendajatel tõrget üles leida. Näiteks kui tõrge ilmneb ainult pärast muudatust riistvaras või tarkvaras või kui sa klõpsasid mõnel nupul, tuleks taoline teave kindlasti lisada."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Tõrkeraporti saatmine"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Tõrkeraporti saatmise rakendus kasutab andmete edastamiseks HTTP PUT / SOAP protokolli. Soovi korral võid lisada mõned sõnad kirjelduseks, mis aitab meil tuvastada programmi krahhi konteksti. Seejärel klõpsa nupule <emph>Saada</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Tõrkeraportile vastust ei saadeta. Kui vajad abi, külasta palun Internetis <link href=\"text/shared/main0108.xhp\">abifoorumit</link>."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Millised andmed saadetakse?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Tõrkeraport koosneb mitmest failist. Põhifail sisaldab infot tõrke tüübi, operatsioonisüsteemi ja versiooni ning mälukasutuse kohta ja kirjeldust, mille lisasid. Tõrkeraporti saatmise rakenduse peaaknas nupule <emph>Näita raportit</emph> klõpsates saab näha põhifaili sisu."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Lisaks koguvad mõningad süsteemi standardsed tööriistad (\"dbhhelp.dll\" Windowsi, \"pstack\" UNIX-i korral) infot vastavate mäluosade kohta. Ka see info saadetakse koos raportiga."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Loo kindlasti igale faksile eraldi printimistöö, muidu saab esimene saaja kõik faksid. Vali dialoogis <emph>Tööriistad - Kirjakooste</emph> valik <emph>Printer</emph> ja märgi kast <emph>Ühekordsed printimistööd</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Vaikimisi mallide muutmine"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>muutmine, vt vahetamine</bookmark_value><bookmark_value>vahetamine, vt ka redigeerimine ja asendamine</bookmark_value><bookmark_value>vaikimisi mallid; muutmine</bookmark_value><bookmark_value>vaikesätted; dokumendid</bookmark_value><bookmark_value>kohandatud mallid</bookmark_value><bookmark_value>uuendamine; mallid</bookmark_value><bookmark_value>redigeerimine; mallid</bookmark_value><bookmark_value>mallid; redigeerimine ja salvestamine</bookmark_value><bookmark_value>salvestamine; mallid</bookmark_value><bookmark_value>lähtestamine; mallid</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Vaikimisi mallide muutmine\">Vaikimisi mallide muutmine</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Kui avad uue dokumendi käsuga <emph>Fail - Uus</emph>, avaneb $[officename]'i mallil põhinev tühi dokument. Malli saab muuta või asendada, et uus dokument sisaldaks just sulle vajalikke kohandatud stiile või midagi muud."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Vaikimisi mallide muutmine"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Kõigepealt ava olemasolev $[officename]'i mall ja muuda seda või ava uus dokument ja redigeeri seda nii, et see vastaks soovitud mallile."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Dokumendimalli saab määrata igale $[officename]'i komponendile. Järgnevalt kirjeldatakse, kuidas seda teha tekstidokumentide puhul."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Vali <emph>Fail - Uus - Mallist</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
+
+#. mhwYW
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id531605464645795\n"
+"help.text"
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. RbKS3
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
msgstr ""
-#. 9jy7r
+#. Us6Qr
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
msgstr ""
-#. GuEWL
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Kohandatud mallide kasutamine"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. Quf5G
+#. 3w93A
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id51605476162735\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Kohandatud mallide abil saab oma tööd mitmel moel lihtsustada."
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. S8XFP
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Mallid mallikataloogis"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Malli redigeerimiseks vali <emph>Fail - Uus - Mallist</emph>, vali mall ning klõpsa nuppu <emph>Redigeeri</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/et/helpcontent2/source/text/shared/optionen.po b/source/et/helpcontent2/source/text/shared/optionen.po
index d049ab801c7..48d64f32456 100644
--- a/source/et/helpcontent2/source/text/shared/optionen.po
+++ b/source/et/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-06-23 11:14+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/et/>\n"
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "Vaade"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>vaated; vaikeväärtused</bookmark_value> <bookmark_value>vaikeväärtused; vaated</bookmark_value> <bookmark_value>sätted; vaated</bookmark_value> <bookmark_value>ikoonid; suurus</bookmark_value> <bookmark_value>ikoonid; stiilid</bookmark_value> <bookmark_value>eelvaatega fondinimekiri</bookmark_value> <bookmark_value>eelvaated; fondinimekiri</bookmark_value> <bookmark_value>fondinimekiri</bookmark_value> <bookmark_value>fondi nime väli</bookmark_value> <bookmark_value>hiirekursor; asukoht</bookmark_value> <bookmark_value>lõikepuhver; valikupuhver</bookmark_value> <bookmark_value>valikupuhver</bookmark_value> <bookmark_value>OpenGL;sätted</bookmark_value> <bookmark_value>OpenGL;must nimekiri</bookmark_value> <bookmark_value>OpenGL;lubav nimekiri</bookmark_value> <bookmark_value>OpenGL;graafikaväljund</bookmark_value> <bookmark_value>hübriidriba;ikoonisuurus</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Määrab programmi välimuse sätted."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Kasutajaliides"
+msgid "Icon style"
+msgstr "Ikoonide stiil"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Tööriistaribade ikoonide suurus"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Määrab tööriistaribade ja dialoogide ikoonide stiili.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Määrab tööriistaribaikoonide suuruse.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">Säte <emph>Automaatne</emph> kehtestab menüüde jaoks operatsioonisüsteemi fondisuuruse sätted.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Külgriba ikoonide suurus"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Määrab külgriba ikoonide suuruse.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Hübriidriba ikoonide suurus"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Määrab <link href=\"text/shared/01/notebook_bar.xhp\">hübriidriba</link> ikoonide suuruse.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Ikoonide stiil"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Määrab tööriistaribade ja dialoogide ikoonide stiili.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Määrab külgriba ikoonide suuruse.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Ekraanifontide pehmendamine"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Pehmendab ekraanifonti.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Sisesta vähim fondi suurus, mille puhul fonte pehmendatakse.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Lülitab ikoonide kuvamist vastavate menüü-üksuste kõrval. Valikus on \"Automaatne\", \"Peidetud\" või \"Nähtaval\". \"Automaatne\" kuvab ikoonid vastavalt süsteemisätetele ja -teemadele.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Hiir"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Hiire asukoht"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Määrab, kas ja kuhu paigutatakse uue dialoogi avanemisel hiire kursor.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Hiire keskmine nupp"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "Viimasena tehtud valik on valikupuhvri sisuks."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Graafikaväljund"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Aktiivse dokumendi vaate taastamiseks või värskendamiseks tuleb kasutada klahvikombinatsiooni Shift+Ctrl+R.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Aktiivse dokumendi vaate taastamiseks või värskendamiseks tuleb kasutada klahvikombinatsiooni Shift+Ctrl+R.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,68 +3805,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Kui see on toetatud, siis on võimalik lubada või keelata graafika pehmendamist. Kui graafika pehmendamine on lubatud, siis enamiku graafiliste objektide puhul tähendab see paremat välimust ja vähem moonutusi.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "OpenGL-i kasutamine igasuguseks renderdamiseks"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Märkimisel kasutatakse suure jõudlusega Open Graphics Library't (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) rakenduse kõigi nähtavate elementide renderdamiseks, sh aknad, menüüd, tööriistaribad ja ikoonid.</ahelp> OpenGL kasutab renderdamise kiirendamiseks arvuti graafikakaarti. Kui see on mustas nimekirjas (vt all), siis see säte ei mõju."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "OpenGL-i musta nimekirja eiramine"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Sunnib OpenGL-i kasutamist ka mustas nimekirjas oleva graafikakaardi puhul.</ahelp> Kaart pannakse musta nimekirja, kui see on vigane või võib renderdada graafikaobjekte kehva kvaliteediga."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menüü"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Ikoonid menüüdes"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Lülitab ikoonide kuvamist vastavate menüü-üksuste kõrval. Valikus on \"Automaatne\", \"Peidetud\" või \"Nähtaval\". \"Automaatne\" kuvab ikoonid vastavalt süsteemisätetele ja -teemadele.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Valitavate fontide nimed kuvatakse vastavate fontidega vormindatult, näiteks fondid <emph>vormindusribal</emph> olevas fontide kastis.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Ekraanifontide pehmendamine"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Pehmendab ekraanifonti.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Sisesta vähim fondi suurus, mille puhul fonte pehmendatakse.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/swriter/guide.po b/source/et/helpcontent2/source/text/swriter/guide.po
index ff35da1cbdd..2c55617098e 100644
--- a/source/et/helpcontent2/source/text/swriter/guide.po
+++ b/source/et/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/et/>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Kui pole teisiti määratud, on iga $[officename]'i uue tekstidokumendi aluseks vaikemall."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename]'il on mitu <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">valmismalli</link>, mille alusel saab luua erinevat laadi dokumente, näiteks ärikirju."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Otsese kursori käitumise määramiseks vali <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Sätted</caseinline><defaultinline>Tööriistad - Sätted</defaultinline></switchinline> - %PRODUCTNAME Writer - Vormindusvahendid</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Klõpsa riba <item type=\"menuitem\">Tööriistad</item> ikoonil <item type=\"menuitem\">Otsene kursor</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Ikoon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Klõpsa tekstidokumendi tühjal alal. Hiirekursor kajastab joondust, mida kasutatakse kirjutatava teksti puhul:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Ikoon</alt></image> Joonda vasakule"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Ikoon</alt></image> Joonda keskele"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Ikoon</alt></image> Joonda paremale"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
index 3846b93d378..7ce883fa090 100644
--- a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-23 01:46+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/et/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Peida slaid"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Tekst..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Fail"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Objekti joondus"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Teksti joondus"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Vali lõigu lõpuni"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Vali järgmise parempoolse sõnani"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/et/sc/messages.po b/source/et/sc/messages.po
index d3d086a5c6d..fa8ada96f48 100644
--- a/source/et/sc/messages.po
+++ b/source/et/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/et/>\n"
@@ -24605,213 +24605,213 @@ msgid "~File"
msgstr "~Fail"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Määra valitud lahtrite äärised."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Suurenda taanet"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Vähenda taanet"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Põhiline"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Põhiline"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Väli"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Lisamine"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Lisamine"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objekti joondus"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Küljendus"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Küljendus"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistika"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "An_dmed"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "An~dmed"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Läb_ivaatus"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Läb~ivaatus"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vaade"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vaade"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Pilt"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Pilt"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Joonistus"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Joonistus"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Teisendamine"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekt"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Objekt"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Multimeedium"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Multimeedium"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Prindi"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Prindi"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vorm"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vor~m"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Laiendus"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Laiendus"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tööriistad"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Tööriistad"
@@ -29645,338 +29645,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Lahendaja"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Sätt_ed..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "Lahenda"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Sihtlahter"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Tulemuste optimeerimine"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Lahtrite muutmisel"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Miinimum"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Maksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "Väärtus"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Lahtriviide"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "Tehe"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Väärtus"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Lahtriviide"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Lahtriviide"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Lahtriviide"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Lahtriviide"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Täisarv"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Kahendarv"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Tehe"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Täisarv"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Kahendarv"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Tehe"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Täisarv"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Kahendarv"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Tehe"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Täisarv"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Kahendarv"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Tehe"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Väärtus"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Väärtus"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Väärtus"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Väärtus"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Eemalda"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Eemalda"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Eemalda"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Eemalda"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Piirangutingimused"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/et/sd/messages.po b/source/et/sd/messages.po
index 8357f0c1dee..bb6bc6a5115 100644
--- a/source/et/sd/messages.po
+++ b/source/et/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-06-16 01:56+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/et/>\n"
@@ -3824,116 +3824,116 @@ msgstr "Tabel"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Teisendamine"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Pilt"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Pilt"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Joonistus"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Joonistus"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekt"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekt"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Multimeedium"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Multimeedium"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vorm"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "Ruumilisus"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "Ruumilisus"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Juhtleht"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Juhtleht"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Laiendus"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Laiendus"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tööriistad"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tööriistad"
@@ -4337,12 +4337,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menüü"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Laiendus"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6575,219 +6569,219 @@ msgid "~File"
msgstr "~Fail"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Põhiline"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Põhiline"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Väli"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Lisamine"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Lisamine"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Küljendus"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Küljendus"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Slai_diseanss"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Slai~diseanss"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Läb_ivaatus"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Läb~ivaatus"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vaade"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vaade"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tabel"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Tabel"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Teisendamine"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Pilt"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Pilt"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Joonistus"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Joonistus"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekt"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekt"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Multimeedium"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Multimeedium"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vorm"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Juhtslaid"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Juhtslaid"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Vaade"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Liigendus"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "Ruumilisus"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "Ruumilisus"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Laiendus"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Laiendus"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tööriistad"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tööriistad"
@@ -7697,12 +7691,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Redigeeri kontuuri"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Laiendus"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/et/starmath/messages.po b/source/et/starmath/messages.po
index 0594f5e8427..71614f89e82 100644
--- a/source/et/starmath/messages.po
+++ b/source/et/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-06-30 19:04+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/et/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/et/svx/messages.po b/source/et/svx/messages.po
index 94d356f5446..1ed4d8e5034 100644
--- a/source/et/svx/messages.po
+++ b/source/et/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-08 12:11+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/et/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Mahuta slaid aknasse"
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Kõiki SmartArt-elemente polnud võimalik laadida. Faili salvestamine Microsoft Office 2010 või uuemas versioonis väldiks seda probleemi."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigeerimisriba"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Kokkujooksmise raport on edukalt üles laaditud.\n"
-"Peatselt on see leitav aadressil\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Saada raport"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Ära saada"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/et/sw/messages.po b/source/et/sw/messages.po
index 8977e83d24f..a937ac15739 100644
--- a/source/et/sw/messages.po
+++ b/source/et/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-07-09 15:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/et/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20367,181 +20367,181 @@ msgid "~File"
msgstr "~Fail"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Põhiline"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Põhiline"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Lisamine"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Lisamine"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Küljendus"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Küljendus"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Viit_ed"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Viit~ed"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Läb_ivaatus"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Läb~ivaatus"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vaade"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vaade"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tab_el"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Tab~el"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Pilt"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Pilt"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Joonistus"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Joonistus"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekt"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekt"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Multimeedium"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Multimeedium"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Printimine"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Printimine"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vorm"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Laiendus"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Laiendus"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tööriistad"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Tööriistad"
@@ -21579,12 +21579,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Redigeeri kontuuri"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Laiendus"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/eu/cui/messages.po b/source/eu/cui/messages.po
index 0f6a4efedf2..da9fd579bc7 100644
--- a/source/eu/cui/messages.po
+++ b/source/eu/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-10 19:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/eu/>\n"
"Language: eu\n"
@@ -3401,7 +3401,7 @@ msgstr "Ezin duzu aldatu edo ezabatu gelaxka-estilo pertsonalizatu bat? Aztertu
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Serie bat bete behar al duzu? Hautatu gelaxka-barrutia, joan 'Orria ▸ Bete gelaxkak ▸ Bete serieak' atalera eta aukeratu 'Lineala', 'Hazkundea', 'Data' edo 'Betetze automatikoa'."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "XSLT eta XML iragazki berriak garatzen ari al zara?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Sakatu ⇧+F1 elkarrizketa-koadroetan dauden aholku luze erabilgarriak ikusteko, \"Aholku luzeak\" ez dagoenean gaituta 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME ▸ Orokorra' atalean."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -3541,43 +3541,43 @@ msgstr "Erabiltzaile-interfaze estandarra, baina tresna-barra bakarrarekin. Pant
#: cui/inc/toolbarmode.hrc:24
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
-msgstr ""
+msgstr "Erabiltzaile-interfaze estandarra alboko barra hedatuarekin. Propietate anitz azkar aldatu nahi dituzten erabiltzaile adituentzako gomendagarria da."
#. MEQAE
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed user interface is the most similar to the Ribbons used by Microsoft. It organize functions in tabs and makes the main menu obsolete."
-msgstr ""
+msgstr "Fitxadun erabiltzaile-interfazea Microsoft konpainiaren Ribbon funtzionaltasunaren antzekoa da. Funtzioak fitxetan antolatuta ditu eta menu nagusia ez da beharrezkoa hura erabiltzen bada."
#. hXNUY
#: cui/inc/toolbarmode.hrc:26
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with Microsoft's interface having at the same time a short interface for small screen sizes."
-msgstr ""
+msgstr "Fitxadun konpaktua, berriz, Microsoften interfazearen antzekoa da, baina aldi berean pantaila-tamaina txikietarako baliagarria den erabiltzaile laburra du."
#. GFycb
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar Compact variant provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The compact variant favors vertical size."
-msgstr ""
+msgstr "Multzo-barra konpaktuak funtzioak taldeka antolatuta ditu, eta gehien erabiltzen diren funtzioak ikonoen bidez irudikatuta daude eta gutxien erabiltzen direnak goitibeherako menuekin. Aldaera konpaktuak tamaina bertikala hobesten du."
#. Exopn
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar interface provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The full variant favors functions and is slightly larger than other variants."
-msgstr ""
+msgstr "Multzo-barraren interfazean funtzioak taldeka antolatuta daude, eta gehien erabiltzen diren funtzioak ikonoen bidez irudikatuta daude eta gutxien erabiltzen direnak goitibeherako menuekin. Aldaera osoak funtzioak hobesten ditu eta beste aldaerak baino apur bat handiagoa da."
#. LNaMA
#: cui/inc/toolbarmode.hrc:29
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Single interface shows functions in a single line toolbar with contextual depending content."
-msgstr ""
+msgstr "Testuinguruaren araberako interfaze bakunak tresna-barra bakarrean erakusten ditu funtzioak, edukiaren arabera testuinguru desberdina erakutsita."
#. xcPJ4
#: cui/inc/toolbarmode.hrc:30
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Groups interface focus on beginners. It exposes to the most frequently used functions on groups with the core action as large icon and a couple of small additional features. All functions have a label. Depending on the context an additional section provides access to those functions."
-msgstr ""
+msgstr "Testuinguruaren araberako taldeen interfazea hasiberrientzako dago pentsatuta. Gehien erabilitako funtzioak taldeka erakusten ditu, ekintza nagusiena ikono handiago batekin irudikatuta eta eginbide gehigarri pare bat gehiago gehituta. Funtzio guztiek etiketa bat dute. Testuinguruaren arabera, sekzio bat gehiago eskaintzen da beste funtzio horiek erabiltzeko."
#. Xnz8J
#: cui/inc/treeopt.hrc:33
@@ -4279,7 +4279,7 @@ msgstr "Webgunea"
#: cui/uiconfig/ui/aboutdialog.ui:383
msgctxt "aboutdialog|releasenotes"
msgid "Release Notes"
-msgstr ""
+msgstr "Argitaratze-oharrak"
#. 5TUrF
#: cui/uiconfig/ui/aboutdialog.ui:411
@@ -4682,7 +4682,7 @@ msgstr "bilaketaSarrera"
#: cui/uiconfig/ui/additionsdialog.ui:211
msgctxt "additionsdialog|buttonGear"
msgid "Gear Menu"
-msgstr ""
+msgstr "Gurpil-menua"
#. CbCbR
#: cui/uiconfig/ui/additionsdialog.ui:212
@@ -4712,19 +4712,19 @@ msgstr "Botoi honek hedapen gehiago erakusten ditu."
#: cui/uiconfig/ui/additionsfragment.ui:68
msgctxt "additionsEntry|votingLabel"
msgid "Voting:"
-msgstr ""
+msgstr "Botoak:"
#. iMQas
#: cui/uiconfig/ui/additionsfragment.ui:88
msgctxt "additionsEntry|labelLicense"
msgid "License:"
-msgstr ""
+msgstr "Lizentzia:"
#. buPFe
#: cui/uiconfig/ui/additionsfragment.ui:106
msgctxt "additionsEntry|labelVersion"
msgid "Required version:"
-msgstr ""
+msgstr "Beharrezko bertsioa:"
#. cFsEL
#: cui/uiconfig/ui/additionsfragment.ui:124
@@ -4736,19 +4736,19 @@ msgstr "Iruzkinak:"
#: cui/uiconfig/ui/additionsfragment.ui:142
msgctxt "additionsEntry|labelComments"
msgid "Downloads:"
-msgstr ""
+msgstr "Deskargak:"
#. JRe5b
#: cui/uiconfig/ui/additionsfragment.ui:356
msgctxt "additionsEntry|buttonInstall"
msgid "Install"
-msgstr ""
+msgstr "Instalatu"
#. VEbVr
#: cui/uiconfig/ui/additionsfragment.ui:370
msgctxt "additionsEntry|buttonWebsite"
msgid "Website"
-msgstr ""
+msgstr "Webgunea"
#. BuMBh
#: cui/uiconfig/ui/agingdialog.ui:15
@@ -5630,7 +5630,7 @@ msgstr "Erabiltzaileak de_finitua:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Egin klik ertzean edo izkinak hiru egoeren artean aldatzeko: ezarri, aldatu gabea, kendu."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5732,7 @@ msgstr "Distan_tzia:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Itzalaren zabalera"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
@@ -6470,7 +6470,7 @@ msgstr "_Hautatu NSS bidea…"
#: cui/uiconfig/ui/certdialog.ui:48
msgctxt "certdialog|extended_tip|add"
msgid "Opens a file picker dialog to add a new Network Security Services Certificate directory to the list."
-msgstr ""
+msgstr "Fitxategiak aukeratzeko elkarrizketa-koadro bat irekitzen du sare-segurtasuneko zerbitzuen ziurtagiriaren direktorio berria zerrendari gehitzeko."
#. GFGjC
#: cui/uiconfig/ui/certdialog.ui:139
@@ -6512,7 +6512,7 @@ msgstr "Ziurtagiriaren bide-izena"
#: cui/uiconfig/ui/certdialog.ui:284
msgctxt "certdialog|extended_tip|CertDialog"
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures."
-msgstr ""
+msgstr "Hautatu edo gehitu sare-segurtasuneko zerbitzuen ziurtagiriaren direktorio zuzena, sinadura digitaletan erabili ahal izateko."
#. xXVpD
#: cui/uiconfig/ui/charnamepage.ui:246
@@ -10653,13 +10653,13 @@ msgstr "Ha_rtzailea:"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:59
msgctxt "hyperlinkmailpage|addressbook|tooltip_text"
msgid "Data Sources..."
-msgstr ""
+msgstr "Datu-iturburuak..."
#. mZ8Wv
#: cui/uiconfig/ui/hyperlinkmailpage.ui:64
msgctxt "hyperlinkmailpage|extended_tip|addressbook"
msgid "Hides or shows the data source browser."
-msgstr ""
+msgstr "Datu-iturburuen arakatzailea ezkutatzen edo erakusten du."
#. NJi4c
#: cui/uiconfig/ui/hyperlinkmailpage.ui:79
@@ -10755,7 +10755,7 @@ msgstr "Beste ezarpen batzuk"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:369
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
-msgstr ""
+msgstr "'Hiperesteka' elkarrizketa-koadroko 'Posta' orrian posta elektronikoko helbideen hiperestekak editatu daitezke."
#. FiqBU
#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:18
@@ -15954,7 +15954,7 @@ msgstr "_TSAk..."
#: cui/uiconfig/ui/optsecuritypage.ui:58
msgctxt "extended_tip|tsas"
msgid "Opens the Time Stamping Authority URLs dialog."
-msgstr ""
+msgstr "Denbora Zigilatzeko Agintaritzen URLen elkarrizketa-koadroa irekitzen du."
#. vrbum
#: cui/uiconfig/ui/optsecuritypage.ui:75
@@ -17064,20 +17064,20 @@ msgstr "Orrialde kopuruak:"
#: cui/uiconfig/ui/pageformatpage.ui:537
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
-msgstr ""
+msgstr "Erabili orrialdearen _lerroartea"
#. DtZQG
#. xdds
#: cui/uiconfig/ui/pageformatpage.ui:541
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
-msgstr ""
+msgstr "Orrialdearen lerroartea gaitzen du (erregistroan egiaztatua) hautatutako erreferentzia-estiloa erabilita"
#. p2egb
#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
-msgstr ""
+msgstr "Gaituta badago, orrialdearen lerroartearen aukera aktibatuta duten paragrafo-estilo guztietan izango du eragina, eta erreferentzia-estiloaren lerroartea hartuko du. Horrela, orrialde-sareta bertikal ikusezinarekin lerrokatuko dira, berdin dio zein den letra-tamaina, lerro guztiek altuera bera izan dezaten."
#. 46djR
#: cui/uiconfig/ui/pageformatpage.ui:561
@@ -17323,7 +17323,7 @@ msgstr "_Automatikoa"
#: cui/uiconfig/ui/paraindentspacing.ui:167
msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text"
msgid "Indent paragraph automatically according to font size and line spacing."
-msgstr ""
+msgstr "Koskatu paragrafoa automatikoki, letra-tamainaren eta lerroartearen arabera."
#. L9iw7
#: cui/uiconfig/ui/paraindentspacing.ui:218
@@ -17353,7 +17353,7 @@ msgstr "Paragrafoaren az_pian:"
#: cui/uiconfig/ui/paraindentspacing.ui:331
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Do not add space between paragraphs of the same style"
-msgstr ""
+msgstr "Ez gehitu lerroarterik estilo bereko paragrafoen artean"
#. hWQWQ
#: cui/uiconfig/ui/paraindentspacing.ui:353
@@ -17413,20 +17413,20 @@ msgstr "/"
#: cui/uiconfig/ui/paraindentspacing.ui:479
msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "Activate page li_ne-spacing"
-msgstr ""
+msgstr "Aktibatu orrialdearen _lerroartea"
#. uesRM
#. xdds
#: cui/uiconfig/ui/paraindentspacing.ui:482
msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text"
msgid "Applies page line-spacing (register-true) if set for the Page Style."
-msgstr ""
+msgstr "Orrialdearen lerroartea aplikatzen du (erregistroan egiaztatua) hautatutako erreferentzia-estilorako ezarrita badago."
#. MwL9j
#: cui/uiconfig/ui/paraindentspacing.ui:488
msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER"
msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
-msgstr ""
+msgstr "Orrialdearen lerroartea aktibatuta badago eta orrialde-estiloak hura erabiltzen badu, paragrafo hau orrialde-sareta bertikal ikusezinarekin lerrokatuko da, berdin dio zein den letra-tamaina, lerro guztiek altuera bera izan dezaten."
#. GxJB6
#: cui/uiconfig/ui/paraindentspacing.ui:506
@@ -17666,7 +17666,7 @@ msgstr "_Aldatu"
#: cui/uiconfig/ui/patterntabpage.ui:94
msgctxt "patterntabpage|extended_tip|BTN_MODIFY"
msgid "Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name."
-msgstr ""
+msgstr "Uneko ereduaren propietateak hautatutako ereduari aplikatzen dizkio. Nahi bada, eredua beste izen batekin gorde daiteke."
#. SnESZ
#: cui/uiconfig/ui/patterntabpage.ui:119
@@ -17690,7 +17690,7 @@ msgstr "Eredu-editorea"
#: cui/uiconfig/ui/patterntabpage.ui:198
msgctxt "patterntabpage|extended_tip|CTL_PIXEL"
msgid "Draw the pattern in the 8 x 8 pixel board. Click on a pattern pixel to activate it, click again to deactivate it."
-msgstr ""
+msgstr "Marraztu eredua 8 x 8 pixel-taulan. Egin klik ereduaren pixel batean hura aktibatzeko, egin klik berriro desaktibatzeko."
#. BvHTn
#: cui/uiconfig/ui/patterntabpage.ui:229
@@ -17702,7 +17702,7 @@ msgstr "Aurreko planoaren kolorea:"
#: cui/uiconfig/ui/patterntabpage.ui:253
msgctxt "patterntabpage|extended_tip|LB_COLOR"
msgid "Set the color of the activated pattern pixels."
-msgstr ""
+msgstr "Ezarri aktibatutako eredu-pixelen kolorea."
#. S8mpk
#: cui/uiconfig/ui/patterntabpage.ui:280
@@ -17714,7 +17714,7 @@ msgstr "Atzeko planoaren kolorea:"
#: cui/uiconfig/ui/patterntabpage.ui:304
msgctxt "patterntabpage|extended_tip|LB_BACKGROUND_COLOR"
msgid "Set the color of the deactivated pattern pixels."
-msgstr ""
+msgstr "Ezarri desaktibatutako eredu-pixelen kolorea."
#. hg7RL
#: cui/uiconfig/ui/patterntabpage.ui:329
@@ -17738,7 +17738,7 @@ msgstr "Aurrebista"
#: cui/uiconfig/ui/patterntabpage.ui:416
msgctxt "patterntabpage|extended_tip|PatternTabPage"
msgid "Fills the object with a simple two color pattern selected on this page."
-msgstr ""
+msgstr "Objektua orri honetan hautatutako bi koloreko eredu sinple batekin betetzen du."
#. WCjNN
#: cui/uiconfig/ui/percentdialog.ui:14
@@ -18989,7 +18989,7 @@ msgstr "_Kolorea:"
#: cui/uiconfig/ui/shadowtabpage.ui:211
msgctxt "shadowtabpage|FT_SHADOW_BLUR"
msgid "_Blur:"
-msgstr ""
+msgstr "_Lausotzea:"
#. DMAGP
#: cui/uiconfig/ui/shadowtabpage.ui:225
@@ -19047,14 +19047,9 @@ msgstr "Mikel Agirre"
#. F8khU
#: cui/uiconfig/ui/signatureline.ui:116
-#, fuzzy
msgctxt "signatureline|extended_tip|edit_name"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Sartu zure izena dokumentuaren sinatzaile gisa. Zure izena sinadura-marra horizontalaren gainean txertatuko da.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Sartu zure izena dokumentuaren sinatzaile gisa. Zure izena sinaduraren marra horizontalaren gainean txertatuko da.</ahelp>"
+msgstr "Sartu zure izena dokumentuaren sinatzaile gisa. Zure izena sinadura-marra horizontalaren gainean txertatuko da."
#. bMy9F
#: cui/uiconfig/ui/signatureline.ui:131
@@ -19064,14 +19059,9 @@ msgstr "Zuzendaria"
#. BfTFx
#: cui/uiconfig/ui/signatureline.ui:134
-#, fuzzy
msgctxt "signatureline|extended_tip|edit_title"
msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Txertatu sinatzailearen titulua. Titulu hori sinadura-marraren kutxa grafikoan bistaratuko da.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Sartu sinatzailearen izenburua. Izenburua sinadura-marraren koadro grafikoan bistaratuko da.</ahelp>"
+msgstr "Txertatu sinatzailearen titulua. Titulu hori sinadura-marraren kutxa grafikoan bistaratuko da."
#. 3SKcg
#: cui/uiconfig/ui/signatureline.ui:149
@@ -19083,7 +19073,7 @@ msgstr "mikel.agirre@adibidea.eus"
#: cui/uiconfig/ui/signatureline.ui:152
msgctxt "signatureline|extended_tip|edit_email"
msgid "Enter the email of the signer. The email is not displayed in the signature line graphic box, but is used for the digital signature."
-msgstr ""
+msgstr "Sartu sinatzailearen posta-elektronikoko helbidea. Helbidea ez da bistaratuko sinadura-marraren kutxa grafikoan, baina sinadura digitalean erabiliko da."
#. As8u6
#. Suggested Signer Name
@@ -19120,14 +19110,9 @@ msgstr "Sinatzaileak iruzkinak gehitu ditzake"
#. Gonpf
#: cui/uiconfig/ui/signatureline.ui:255
-#, fuzzy
msgctxt "signatureline|extended_tip|checkbox_can_add_comments"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Gaitu sinatzaileak iruzkinak txertatu ahal ditzan 'Sinatu sinadura-marra' elkarrizketa-koadroan, sinatzera doanean.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Gaitu sinatzaileak, sinatzerakoan, iruzkinak txertatu ditzan 'Sinadura-marra' elkarrizketa-koadroan.</ahelp>"
+msgstr "Gaitu sinatzaileak iruzkinak txertatu ahal ditzan 'Sinatu sinadura-marra' elkarrizketa-koadroan, sinatzera doanean."
#. BPMGM
#: cui/uiconfig/ui/signatureline.ui:266
@@ -19137,14 +19122,9 @@ msgstr "Erakutsi sinatze-data sinadura-marran"
#. QnaFT
#: cui/uiconfig/ui/signatureline.ui:275
-#, fuzzy
msgctxt "signatureline|extended_tip|checkbox_show_sign_date"
msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Markatu kontrol-lauki hau sinaduraren data bistaratzeko. Dokumentuari sinadura digitala gehitu zaioneko data izango da.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Markatu kontrol-lauki hau dokumentuari sinadura digitala gehitzen zaionean sinaduraren data bistaratzeko.</ahelp>"
+msgstr "Markatu kontrol-lauki hau sinaduraren data bistaratzeko. Dokumentuari sinadura digitala gehitu zaioneko data izango da."
#. fSsbq
#: cui/uiconfig/ui/signatureline.ui:289
@@ -19154,14 +19134,9 @@ msgstr "Sinatzailearentzako argibideak:"
#. AdqtN
#: cui/uiconfig/ui/signatureline.ui:314
-#, fuzzy
msgctxt "signatureline|extended_tip|edit_instructions"
msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Txertatu sinatzailearentzako argibideak. Argibide horiek 'Sinatu sinadura-marra' elkarrizketa-koadroan agertuko dira, sinatzerako unean.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Txertatu sinatzailearentzako argibideak. Argibideak 'Sinadura-marra' elkarrizketa-koadroan agertuko dira sinadura gehitzean.</ahelp>"
+msgstr "Txertatu sinatzailearentzako argibideak. Argibide horiek 'Sinatu sinadura-marra' elkarrizketa-koadroan agertuko dira, sinatzerako unean."
#. jqCPH
#: cui/uiconfig/ui/signatureline.ui:333
@@ -19189,14 +19164,9 @@ msgstr "Idatzi zure izena hemen"
#. XNvhh
#: cui/uiconfig/ui/signsignatureline.ui:115
-#, fuzzy
msgctxt "signsignatureline|extended_tip|edit_name"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Sartu zure izena dokumentuaren sinatzaile gisa. Zure izena sinadura-marra horizontalaren gainean txertatuko da.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Sartu zure izena dokumentuaren sinatzaile gisa. Zure izena sinaduraren marra horizontalaren gainean txertatuko da.</ahelp>"
+msgstr "Sartu zure izena dokumentuaren sinatzaile gisa. Zure izena sinadura-marra horizontalaren gainean txertatuko da."
#. dgTR9
#. Name of the signer
@@ -19220,14 +19190,9 @@ msgstr "Hautatu ziurtagiria"
#. uJ9EC
#: cui/uiconfig/ui/signsignatureline.ui:160
-#, fuzzy
msgctxt "signsignatureline|extended_tip|btn_select_certificate"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Egin klik 'Hautatu ziurtagiria' botoian izen bereko elkarrizketa-koadroa irekitzeko. Bertan, zure ziurtagirien zerrenda ikusiko duzu. Hautatu dokumentua sinatzeko egokia den ziurtagiria.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Egin klik 'Hautatu ziurtagiria' botoian 'Hautatu ziurtagiria' elkarrizketa-koadroa irekitzeko. Hor, zure ziurtagiriak zerrendatuta agertuko dira. Hautatu dokumentua sinatzeko erabili nahi duzun ziurtagiria.</ahelp>"
+msgstr "Egin klik 'Hautatu ziurtagiria' botoian izen bereko elkarrizketa-koadroa irekitzeko. Bertan, zure ziurtagirien zerrenda ikusiko duzu. Hautatu dokumentua sinatzeko egokia den ziurtagiria."
#. 3vSAS
#. Name of the signer
@@ -19268,14 +19233,9 @@ msgstr "Gehitu iruzkina:"
#. CJAg3
#: cui/uiconfig/ui/signsignatureline.ui:309
-#, fuzzy
msgctxt "signsignatureline|extended_tip|edit_comment"
msgid "Enter comments about the signature. The comments are displayed in the Description field of the certificate."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Sartu sinadurari buruzko iruzkinak. Iruzkinak ziurtagiriaren <emph>Deskribapena</emph> eremuan bistaratuko dira.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Sartu sinadurari buruzko iruzkinak. Iruzkin horiek ziurtagiriaren <emph>Deskribapena</emph> eremuan bistaratuko dira.</ahelp>"
+msgstr "Sartu sinadurari buruzko iruzkinak. Iruzkinak ziurtagiriaren 'Deskribapena' eremuan bistaratuko dira."
#. k4PqT
#: cui/uiconfig/ui/signsignatureline.ui:325
@@ -19285,14 +19245,9 @@ msgstr "Dokumentuaren egilearen argibideak:"
#. J8MFU
#: cui/uiconfig/ui/signsignatureline.ui:346
-#, fuzzy
msgctxt "signsignatureline|extended_tip|label_hint_text"
msgid "This area displays the instructions entered by the document creator when adding the signature line."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Area honek dokumentuaren sortzaileak <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">sinadura-marra gehitu zuenean</link> sartu zituen argibideak bistaratzen ditu.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Area honek dokumentuaren sortzaileak <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">sinadura-marra gehitzean</link> sartutako argibideak bistaratzen ditu.</ahelp>"
+msgstr "Area honek dokumentuaren sortzaileak sinadura-marra gehitu zuenean sartu zituen argibideak bistaratzen ditu."
#. kVoG9
#: cui/uiconfig/ui/signsignatureline.ui:363
@@ -19370,7 +19325,7 @@ msgstr "_X:"
#: cui/uiconfig/ui/slantcornertabpage.ui:92
msgctxt "slantcornertabpage|extended_tip|controlx1"
msgid "Enter the X coordinate of the control point 1"
-msgstr ""
+msgstr "Sartu 1. kontrol-puntuaren X koordenatua"
#. CkJx5
#: cui/uiconfig/ui/slantcornertabpage.ui:117
@@ -19382,7 +19337,7 @@ msgstr "_Y:"
#: cui/uiconfig/ui/slantcornertabpage.ui:137
msgctxt "slantcornertabpage|extended_tip|controly1"
msgid "Enter the Y coordinate of the control point 1"
-msgstr ""
+msgstr "Sartu 1. kontrol-puntuaren Y koordenatua"
#. gpixF
#: cui/uiconfig/ui/slantcornertabpage.ui:161
@@ -19436,7 +19391,7 @@ msgstr "_X:"
#: cui/uiconfig/ui/slantcornertabpage.ui:365
msgctxt "slantcornertabpage|extended_tip|controlx2"
msgid "Enter the X coordinate of the control point 2"
-msgstr ""
+msgstr "Sartu 2. kontrol-puntuaren X koordenatua"
#. 3EL7K
#: cui/uiconfig/ui/slantcornertabpage.ui:390
@@ -19448,7 +19403,7 @@ msgstr "_Y:"
#: cui/uiconfig/ui/slantcornertabpage.ui:410
msgctxt "slantcornertabpage|extended_tip|controly2"
msgid "Enter the Y coordinate of the control point 2"
-msgstr ""
+msgstr "Sartu 2. kontrol-puntuaren Y koordenatua"
#. FzWQs
#: cui/uiconfig/ui/slantcornertabpage.ui:434
@@ -20132,7 +20087,7 @@ msgstr "Orrialde bikoitietako lerrokatze horizontalaren ezarpenak alderantzikatz
#: cui/uiconfig/ui/swpossizepage.ui:587
msgctxt "swpossizepage|followtextflow"
msgid "Keep inside te_xt boundaries"
-msgstr ""
+msgstr "Mantendu te_stu-mugen barruan"
#. zfpt5
#: cui/uiconfig/ui/swpossizepage.ui:597
@@ -20942,73 +20897,85 @@ msgstr "Esteka"
#: cui/uiconfig/ui/toolbarmodedialog.ui:13
msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
+msgstr "Hautatu gogokoen duzun erabiltzaile-interfazea"
+
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
-msgstr ""
-
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
+msgstr "Tresna-barra estandarra"
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
-msgstr ""
+msgstr "Fitxaduna"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
-msgstr ""
-
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Fitxadun konpaktua"
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
-msgstr ""
+msgstr "Multzo-barra"
+
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Multzo-barra konpaktua"
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
-msgstr ""
+msgstr "Testuinguruaren araberako barra bakuna"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
-msgstr ""
+msgstr "Testuinguruaren araberako multzoak"
+
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Tresna-barra bakuna"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Alboko barra"
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
-msgstr ""
+msgstr "Interfaze-aldaerak"
#. H7m7J
#: cui/uiconfig/ui/toolbarmodedialog.ui:366
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
-msgstr ""
+msgstr "Aurrebista"
#. WChLB
#: cui/uiconfig/ui/transparencytabpage.ui:78
diff --git a/source/eu/extensions/messages.po b/source/eu/extensions/messages.po
index 394d3726333..4f5bf4e3367 100644
--- a/source/eu/extensions/messages.po
+++ b/source/eu/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-05-23 22:48+0000\n"
+"PO-Revision-Date: 2020-11-30 10:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/extensionsmessages/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1559416984.000000\n"
#. cBx8W
@@ -3167,6 +3167,11 @@ msgid ""
"\n"
"Click the button below to open another dialog where you can enter the settings for your data source."
msgstr ""
+"Helbide-datuak txantiloei gehitzeko, %PRODUCTNAME aplikazioak jakin behar zein eremutan dagoen informazioa.\n"
+"\n"
+"Adibidez, posta-helbidea \"email\" eremuan, \"eposta\" eremuan edo \"posta elek.\" eremuan, edo beste edoezin izeneko eremu batean, gordeta eduki dezakezu.\n"
+"\n"
+"Egin klik beheko botoia beste elkarrizketa-koadro bat irekitzeko eta zure datu-iturburuen ezarpenak sartu ahal izateko."
#. RkyNf
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:38
@@ -3268,7 +3273,7 @@ msgstr "Dauden eremuak"
#: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:401
msgctxt "gridfieldsselectionpage|label2"
msgid "Table Element"
-msgstr ""
+msgstr "Taula elementua"
#. Xk7cV
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:54
@@ -3322,7 +3327,7 @@ msgstr "Zein izen eman nahi diezu aukera-eremuei?"
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:309
msgctxt "groupradioselectionpage|label2"
msgid "Table Element"
-msgstr ""
+msgstr "Taula elementua"
#. 3dtcD
#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:15
@@ -4146,7 +4151,7 @@ msgstr "Be_hea:"
#: extensions/uiconfig/scanner/ui/sanedialog.ui:276
msgctxt "sanedialog|label1"
msgid "Scan Area"
-msgstr ""
+msgstr "Eskaneatze-area"
#. FZ7Vw
#: extensions/uiconfig/scanner/ui/sanedialog.ui:335
diff --git a/source/eu/helpcontent2/source/text/sbasic/python.po b/source/eu/helpcontent2/source/text/sbasic/python.po
index 684808fc297..6ff199ec109 100644
--- a/source/eu/helpcontent2/source/text/sbasic/python.po
+++ b/source/eu/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-07-05 09:08+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicpython/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1563601431.000000\n"
#. naSFZ
@@ -1841,7 +1841,7 @@ msgctxt ""
"N0388\n"
"help.text"
msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behavior. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls."
-msgstr ""
+msgstr "Artefaktu grafikoak, teklatu-sarrerak, saguaren mugimenduak eta gizakien eta makinen arteko beste elkarrekintza batzuk erabiltzailearen portaeraren jarraipena egiten duten UNO entzuleak erabilita kontrolatu daitezke. Entzuleak makro-esleipenen ordezko programa-kode dinamikoak dira. Jarraitu nahi den gertaera bakoitzeko UNO entzule bat sortu daiteke. Entzule bakar batek erabiltzaile-interfazearen kontrol anitz maneiatu ditzake."
#. UVzsE
#: python_listener.xhp
diff --git a/source/eu/helpcontent2/source/text/sbasic/shared.po b/source/eu/helpcontent2/source/text/sbasic/shared.po
index 3ce5b198732..2599682d1c0 100644
--- a/source/eu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/eu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-25 19:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/eu/>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir instrukzioa</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Datu-euskarrian direktorio berria sortzen du."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
+msgid "Creates a new directory on a data medium."
+msgstr "Datu-euskarrian direktorio berria sortzen du."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Testua As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Testua:</emph> Sortu beharreko direktorioaren izena eta bide-izena zehazten duen kate-adierazpena. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL idazkera\">URL idazkera</link> ere erabil dezakezu."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Bide-izena zehazten ez bada, direktorioa uneko direktorioan sortuko da."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Lehendik dagoen direktorio bat datu-euskarritik ezabatzen du."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Testua As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Bide-izena zehazten ez bada, <emph>RmDir instrukzioak</emph> uneko bide-izenean bilatuko du ezabatu nahi duzun direktorioa. Hor aurkitzen ez bada, errore-mezua agertuko da."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Basic programaren exekuzioa gelditzen du."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With instrukzioa</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Objektu bat objektu lehenetsi gisa ezartzen du. Beste objektu-izen bat deklaratzen ez bada, propietate eta metodo guztiek objektu lehenetsiari egingo diote erreferentzia End With instrukziora iritsi arte."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Objektu batentzako hainbat propietate eta metodo badituzu, erabili <emph>With</emph> eta <emph>End With</emph>."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Ordenagailuaren bozgorailutik tonu bat jotzen du. Tonua sistemaren mende dago, eta ezin duzu haren bolumena edo doinua aldatu."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/eu/helpcontent2/source/text/scalc.po b/source/eu/helpcontent2/source/text/scalc.po
index 9ce27f805d3..20658df4742 100644
--- a/source/eu/helpcontent2/source/text/scalc.po
+++ b/source/eu/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-08-05 15:35+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1536681726.000000\n"
#. ZxQeC
@@ -419,7 +419,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#object\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"><emph>Formatua</emph> menuak dokumentuko gelaxka hautatuei, <link href=\"text/shared/00/00000005.xhp#object\" name=\"objects\">objektuei</link> eta gelaxka-edukiei formatua emateko komandoak ditu.</ahelp>"
#. Ly37n
#: main0105.xhp
@@ -545,7 +545,7 @@ msgctxt ""
"hd_id3148488\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Irudi-mapa</link>"
#. ToZU6
#: main0106.xhp
diff --git a/source/eu/helpcontent2/source/text/scalc/00.po b/source/eu/helpcontent2/source/text/scalc/00.po
index 22c8078f455..5ece36239b4 100644
--- a/source/eu/helpcontent2/source/text/scalc/00.po
+++ b/source/eu/helpcontent2/source/text/scalc/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-07 15:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1556007652.000000\n"
#. E9tti
@@ -509,7 +509,7 @@ msgctxt ""
"par_id3159173\n"
"help.text"
msgid "<variable id=\"logical\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"logical\"><emph>>Txertatu - Funtzioa</emph> - Kategoria <emph>Logikoa</emph></variable>"
#. FqeXh
#: 00000404.xhp
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Aukeratu <item type=\"menuitem\">Ikusi - Zatitu leihoa</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Aukeratu <item type=\"menuitem\">Ikusi - Finkatu gelaxkak - Finkatu errenkadak eta zutabeak</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr "<variable id=\"fefix\">Aukeratu <item type=\"menuitem\">Ikusi - Finkatu errenkada eeta zutabeak</item>.</variable>"
#. BkQfX
#: 00000412.xhp
diff --git a/source/eu/helpcontent2/source/text/scalc/05.po b/source/eu/helpcontent2/source/text/scalc/05.po
index 763e34066ab..bceee8acb56 100644
--- a/source/eu/helpcontent2/source/text/scalc/05.po
+++ b/source/eu/helpcontent2/source/text/scalc/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-03-04 14:15+0000\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc05/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1556007718.000000\n"
#. Cxzki
@@ -329,7 +329,7 @@ msgctxt ""
"par_id3145635\n"
"help.text"
msgid "<emph>Compiler:</emph> an identifier in the formula exceeds 64 kB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 kB in size."
-msgstr ""
+msgstr "<emph>Konpilatzailea:</emph> formulako identifikatzaile batek 64 kB-ko tamaina gainditzen du. <emph>Interpretatzailea:</emph> kate-eragiketaren emaitza batek 64 kB-ko tamaina gainditzen du."
#. E7ohJ
#: 02140000.xhp
diff --git a/source/eu/helpcontent2/source/text/scalc/guide.po b/source/eu/helpcontent2/source/text/scalc/guide.po
index bf0d9efce2c..d942fe3aa24 100644
--- a/source/eu/helpcontent2/source/text/scalc/guide.po
+++ b/source/eu/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/eu/>\n"
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Horizontalean nahiz bertikalean finkatzeko, hautatu finkatu nahi duzun errenkadaren azpiko edo zutabearen eskuineko <emph>gelaxka</emph>."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Aukeratu <item type=\"menuitem\">Ikusi - Finkatu gelaxkak - Finkatu errenkadak eta zutabeak</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Desaktibatzeko, aukeratu <item type=\"menuitem\">Ikusi - Finkatu gelaxkak - Finkatu errenkadak eta zutabeak</item> berriro."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Errenkada jakin bat dokumentuaren orri guztietan inprimatu nahi baduzu, hautatu <item type=\"menuitem\">Formatua - Inprimatze-tarteak - Editatu</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Ikusi - Finkatu gelaxkak - Finkatu errenkadak eta zutabeak</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
diff --git a/source/eu/helpcontent2/source/text/sdraw.po b/source/eu/helpcontent2/source/text/sdraw.po
index 964298fe76a..ced1b3b8af7 100644
--- a/source/eu/helpcontent2/source/text/sdraw.po
+++ b/source/eu/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-06-29 11:28+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1558248219.000000\n"
#. dHbww
@@ -113,7 +113,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "View (menu in Draw)"
-msgstr ""
+msgstr "Ikusi (Draw aplikazioko menua)"
#. hWYJ3
#: main0103.xhp
@@ -158,7 +158,7 @@ msgctxt ""
"par_idN105B2\n"
"help.text"
msgid "Master"
-msgstr ""
+msgstr "Maisua"
#. eSnQZ
#: main0103.xhp
@@ -167,7 +167,7 @@ msgctxt ""
"par_idN105B6\n"
"help.text"
msgid "Switch to the master view."
-msgstr ""
+msgstr "Aldatu ikuspegi maisura."
#. nstgU
#: main0103.xhp
@@ -176,7 +176,7 @@ msgctxt ""
"hd_id221605492986383\n"
"help.text"
msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">Erabiltzaile-interfazea</link>"
#. tYxbF
#: main0103.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"par_id761605493042236\n"
"help.text"
msgid "Opens dialog box for selecting layout of user interface."
-msgstr ""
+msgstr "Erabiltzaile-interfazearen diseinua hautatzeko elkarrizketa-koadroa irekitzen du."
#. JChXS
#: main0103.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"hd_id102720151746522815\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Iruzkinak"
#. XjZkS
#: main0103.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"par_id102720150112252143\n"
"help.text"
msgid "Show or hide annotations on the page."
-msgstr ""
+msgstr "Erakutsi edo ezkutatu orrialdeko oharpenak."
#. Y3uKu
#: main0103.xhp
@@ -212,7 +212,7 @@ msgctxt ""
"hd_id961605560845125\n"
"help.text"
msgid "Shift"
-msgstr ""
+msgstr "Desplazatu"
#. 3Eaeo
#: main0103.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"par_id301605560855098\n"
"help.text"
msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
-msgstr ""
+msgstr "Erabili hau orrialdeak leihoan duen kokalekua desplazatzeko. Gaituta dagoenean, sagu-erakuslearen itxura aldatu egingo da. Egin klik orrialdean eta arrastatu nahi den kokalekura."
#. 7AgpR
#: main0103.xhp
@@ -563,7 +563,7 @@ msgctxt ""
"hd_id3146313\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Atxiki atxikitze-gidei</link>"
#. eUTG8
#: main0213.xhp
diff --git a/source/eu/helpcontent2/source/text/sdraw/00.po b/source/eu/helpcontent2/source/text/sdraw/00.po
index 10927654420..b844c36d9be 100644
--- a/source/eu/helpcontent2/source/text/sdraw/00.po
+++ b/source/eu/helpcontent2/source/text/sdraw/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2019-12-24 16:19+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw00/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1561102789.000000\n"
#. EDSDr
@@ -50,7 +50,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <menuitem>Page - Page Properties</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Aukeratu <menuitem>Orrialdea - Orrialde-propietateak</menuitem> </variable>"
#. h9HDn
#: page_menu.xhp
@@ -59,7 +59,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <menuitem>Page - Page Properties</menuitem> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Aukeratu <menuitem>Orrialdea - Orrialde-propietateak</menuitem> eta egin klik <emph>Orrialdea</emph> fitxan </variable>"
#. 6eTqD
#: page_menu.xhp
@@ -68,7 +68,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <menuitem>Page - Page Properties</menuitem> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Aukeratu <menuitem>Orrialdea - Orrialde-propietateak</menuitem> eta egin klik <emph>Atzeko planoa</emph> fitxan </variable>"
#. UqCyU
#: page_menu.xhp
@@ -77,7 +77,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Page - Master Page</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Aukeratu <menuitem>Orrialdea - Orrialde maisua</menuitem> </variable>"
#. paRMk
#: page_menu.xhp
@@ -86,7 +86,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <menuitem>Page - New Page</menuitem>"
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Orrialdea</menuitem>."
#. EpBTa
#: page_menu.xhp
diff --git a/source/eu/helpcontent2/source/text/sdraw/01.po b/source/eu/helpcontent2/source/text/sdraw/01.po
index 61fb47e8059..07707f4eb2d 100644
--- a/source/eu/helpcontent2/source/text/sdraw/01.po
+++ b/source/eu/helpcontent2/source/text/sdraw/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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-06-29 11:28+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/eu/>\n"
"Language: eu\n"
@@ -581,7 +581,7 @@ msgctxt ""
"hd_id641596204028276\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Izenburua"
#. waSME
#: insert_layer.xhp
@@ -590,7 +590,7 @@ msgctxt ""
"par_id271596204273624\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/title\">Enter the title of the layer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/title\">Sartu geruzaren izenburua.</ahelp>"
#. GGy5s
#: insert_layer.xhp
@@ -599,7 +599,7 @@ msgctxt ""
"hd_id791596204033460\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Deskribapena"
#. q5F9X
#: insert_layer.xhp
@@ -608,7 +608,7 @@ msgctxt ""
"par_id471596204283656\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/textview\">Enter a description of the layer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/textview\">Sartu geruzaren deskribapena.</ahelp>"
#. WFSEL
#: insert_layer.xhp
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Orrialdearen orientazioa, marjinak, atzeko planoa eta beste diseinu-aukera batzuk ezartzen ditu.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Aktibo dagoen fitxategiko orri guztien atzeko planoa aldatzeko, hautatu atzeko plano bat, egin klik <emph>Ados</emph> botoian eta hautatu <emph>Bai</emph> <emph>Orriaren konfigurazioa</emph> elkarrizketa-koadroan."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/00.po b/source/eu/helpcontent2/source/text/shared/00.po
index 97c429a5aae..e3bb439ba29 100644
--- a/source/eu/helpcontent2/source/text/shared/00.po
+++ b/source/eu/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-25 19:35+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1562054310.000000\n"
#. 3B8ZN
@@ -680,7 +680,7 @@ msgctxt ""
"hd_id321597440555403\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Aplikatu"
#. yJtrx
#: 00000001.xhp
@@ -689,7 +689,7 @@ msgctxt ""
"par_id51597440622057\n"
"help.text"
msgid "Applies the modified or selected values without closing the Options dialog."
-msgstr ""
+msgstr "Aldatutako edo hautatutako balioak aplikatzen ditu 'Aukerak' elkarrizketa-koadroa itxi gabe."
#. BRStA
#: 00000001.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/01.po b/source/eu/helpcontent2/source/text/shared/01.po
index 6d1407403a9..7e05a5824eb 100644
--- a/source/eu/helpcontent2/source/text/shared/01.po
+++ b/source/eu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-25 19:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/eu/>\n"
@@ -7999,14 +7999,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "Zortzi digituko Unicode kode hamaseitarrak ordezkatutako karakterea (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "Zenbait ikurretarako, karaktere berezien Unicode kodea erabiltzen ari den letra-tipoaren araberakoa izan daiteke. Unicode kodeak ikusteko, aukeratu <menuitem>Txertatu - Karaktere berezia</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/05.po b/source/eu/helpcontent2/source/text/shared/05.po
index 156ce617b0f..1702d5371ac 100644
--- a/source/eu/helpcontent2/source/text/shared/05.po
+++ b/source/eu/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-01-24 14:51+0000\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textshared05/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1540281958.000000\n"
#. WPTtk
@@ -131,7 +131,7 @@ msgctxt ""
"par_id0804200803314235\n"
"help.text"
msgid "In case you are concerned about any security issue with using this software, you can contact the developers on the <link href=\"https://lists.freedesktop.org/mailman/listinfo/libreoffice\">public mailing list</link>. If you want to discuss any issue with other users, send an email to the public mailing list <literal>users@global.libreoffice.org</literal>."
-msgstr ""
+msgstr "Software hau erabiltzean izango duzun segurtasunaz kezkatuta bazaude, garatzaileekin harremanetan jarri zaitezke <link href=\"https://lists.freedesktop.org/mailman/listinfo/libreoffice\">posta-zerrenda publikoan</link>. Edozein auzi beste erabiltzaile batzuekin eztabaidatu nahi baduzu, bidali mezu bat <literal>users@global.libreoffice.org</literal> posta-zerrenda publikora."
#. tEPqi
#: 00000001.xhp
@@ -1265,7 +1265,7 @@ msgctxt ""
"hd_id3146957\n"
"help.text"
msgid "Could not find Help page (404)."
-msgstr ""
+msgstr "Ezin izan da laguntza-orria aurkitu (404)."
#. YF3vS
#: err_html.xhp
@@ -1274,7 +1274,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "That is an error. Possible causes are:"
-msgstr ""
+msgstr "Errore bat izan da. Zergatia hauetako bat izan daiteke:"
#. afzNC
#: err_html.xhp
@@ -1283,7 +1283,7 @@ msgctxt ""
"par_id131592238966436\n"
"help.text"
msgid "The page does not exist and must be created."
-msgstr ""
+msgstr "Orria ez da existitzen eta sortu egin behar da."
#. wBHiJ
#: err_html.xhp
@@ -1292,7 +1292,7 @@ msgctxt ""
"par_id201592238985883\n"
"help.text"
msgid "The page exists, but the Help ID is wrong or missing."
-msgstr ""
+msgstr "Orria badago, baina laguntzaren IDa okerra da edo falta da."
#. Bbuu2
#: err_html.xhp
@@ -1301,7 +1301,7 @@ msgctxt ""
"par_id761592239118086\n"
"help.text"
msgid "Use the Module, Contents, Index and Search selectors to find the right page."
-msgstr ""
+msgstr "Erabili 'Modulua', 'Edukiak', 'Aurkibidea' eta 'Bilatu' hautatzaileak orri zuzena aurkitzeko."
#. aKd5h
#: err_html.xhp
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id971592240070356\n"
"help.text"
msgid "The following data could be helpful in locating the error:"
-msgstr ""
+msgstr "Honako datuak erabilgarriak izan daitezke errorea aurkitzeko:"
#. Eekrb
#: err_html.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/06.po b/source/eu/helpcontent2/source/text/shared/06.po
index bb9d7ffbf2f..a47279306b4 100644
--- a/source/eu/helpcontent2/source/text/shared/06.po
+++ b/source/eu/helpcontent2/source/text/shared/06.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-25 19:35+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textshared06/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1536301319.000000\n"
#. EUcrc
@@ -203,7 +203,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Calc Screenshots"
-msgstr ""
+msgstr "Calc pantaila-argazkiak"
#. QaaKZ
#: sc_screenshots.xhp
@@ -302,7 +302,7 @@ msgctxt ""
"par_id521601001943409\n"
"help.text"
msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">'Inklinazioa eta izkinako erradioa' fitxa-orria</alt></image>"
#. agtWk
#: simpress_screenshots.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/explorer/database.po b/source/eu/helpcontent2/source/text/shared/explorer/database.po
index 9dcf2186135..492c202ac73 100644
--- a/source/eu/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/eu/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-10-25 19:35+0000\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1563085513.000000\n"
#. fUPBC
@@ -7097,7 +7097,7 @@ msgctxt ""
"par_idN105F8\n"
"help.text"
msgid "Email Document"
-msgstr ""
+msgstr "Bidali dokumentua posta elektroniko bidez"
#. Qxg2W
#: menufile.xhp
@@ -7106,7 +7106,7 @@ msgctxt ""
"par_idN105FC\n"
"help.text"
msgid "Opens the default email application to send a new email. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body."
-msgstr ""
+msgstr "Posta elektronikoko aplikazio lehenetsia irekitzen du posta berria bidaltzeko. Uneko datu-basearen fitxategia erantsiko da. Gaia, hartzaileak eta mezuaren gorputza sartu ahal dituzu."
#. 9WihT
#: menufile.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/guide.po b/source/eu/helpcontent2/source/text/shared/guide.po
index 4e7ac6b454d..6e3d2f69691 100644
--- a/source/eu/helpcontent2/source/text/shared/guide.po
+++ b/source/eu/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-06-16 20:22+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/eu/>\n"
"Language: eu\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\"><item type=\"productname\">%PRODUCTNAME</item></link> aplikazioarekin lan egitea"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -923,7 +932,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "Choose <menuitem>Format - Page Style</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Orrialde-estiloa</menuitem>."
#. DjYpm
#: background.xhp
@@ -932,7 +941,7 @@ msgctxt ""
"par_id3149581\n"
"help.text"
msgid "On the <emph>Area</emph> tab page, select a background color or a background graphic."
-msgstr ""
+msgstr "<emph>Area</emph> fitxa-orrian, hautatu atzeko planorako kolore edo grafiko bat."
#. WCBmU
#: background.xhp
@@ -950,7 +959,7 @@ msgctxt ""
"par_id3156180\n"
"help.text"
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\"><emph>Area</emph> tab page</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\"><emph>Area</emph> fitxa-orria</link>"
#. BDPLL
#: background.xhp
@@ -2759,7 +2768,7 @@ msgctxt ""
"par_id170820161605428591\n"
"help.text"
msgid "The <emph>Remote files</emph> dialog appears. Select the remote file server."
-msgstr ""
+msgstr "<emph>Urruneko fitxateigak</emph> elkarrizketa-koadroa agertuko da. Hautatu urruneko fitxategien zerbitzaria."
#. wQjzG
#: cmis-remote-files.xhp
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "HTML dokumentua"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "OpenDocument testua (XML laua)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 testu-dokumentua"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 testu-dokumentua"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 testu-dokumentua"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "T602 dokumentua"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Testua"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Testua"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "GRAPHICFILTER iragazkiak"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows bit-mapa"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCADen truke-formatua"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF - Enhanced Meta File"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF - Enhanced Meta File"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Kapsulatutako PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Kapsulatutako PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr "GIF - Graphics Interchange"
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr "GIF - Graphics Interchange"
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr "text/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET - OS/2 Metafile"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - QuickTime fitxategi-formatua"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr "PCD - Photo CD Base4"
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT - Mac irudia"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Portable Graymap"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network Graphic"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Portable Pixelmap"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Sun raster irudia"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun raster irudia"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Grafiko bektorial eskalakorra"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Grafiko bektorial eskalakorra"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Grafiko bektorial eskalakorra"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - Grafiko bektorial eskalakorreko irudia"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr "SVM - StarView Meta File"
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF - Tagged Image File Format"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Windows Metafile"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitmap"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -6530,7 +6260,7 @@ msgctxt ""
"par_id3153223\n"
"help.text"
msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Kontsulta-diseinua</link>"
#. 2ArGc
#: data_forms.xhp
@@ -7088,7 +6818,7 @@ msgctxt ""
"par_idN1065F\n"
"help.text"
msgid "You see the <link href=\"text/sdatabase/02010100.xhp\">Query Design window</link>."
-msgstr ""
+msgstr "<link href=\"text/sdatabase/02010100.xhp\">'Kontsulta-diseinua' leihoa</link> ikusiko duzu."
#. xGFGr
#: data_register.xhp
@@ -7880,7 +7610,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "Each field can only accept data corresponding to the specified field type. For example, it is not possible to enter text in a number field. Memo fields in dBASE III format are references to internally-managed text files which can hold up to 64 kB text."
-msgstr ""
+msgstr "Eremu bakoitzak zehaztutako eremu motari dagozkion datuak soilik onartu ditzake. Adibidez, ez da posible testua sartzea zenbakizko eremu batean. dBASE III formatuko memo eremuak barnean kudeatutako testu-fitxategien erreferentziak dira, 64 kB testu arte gorde ditzaketenak."
#. oApsQ
#: data_tabledefine.xhp
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Erroreen berri emateko tresna"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>erroreen berri emateko tresna</bookmark_value> <bookmark_value>txostenak;errore-txostenak</bookmark_value> <bookmark_value>kraskaduren txostenak</bookmark_value> <bookmark_value>aktibatzea;erroreen berri emateko tresna</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Erroreen berri emateko tresna</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Erroreen berri emateko tresna automatikoki abiarazten da programa-kraskadura bat gertatzen denean."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Erroreen berri emateko tresnak programa-garatzaileei kodea hobetzen laguntzeko eta etorkizuneko bertsioetan errore bera ez geratzeko beharrezkoa den informazio guztia biltzen du. Lagundu softwarea hobetzen, eta bidali sortutako errore-txostena."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Erroreen berri emateko tresna abiaraztea"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Programa-kraskadura gehienetan, erroreen berri emateko tresna automatikoki abiaraziko da."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Txostena osatzea"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Erroreen berri emateko tresnaren elkarrizketa-koadro nagusian, informazio osagarria sar dezakezu garatzaileei errorea lokalizatzen laguntzeko. Adibidez, errorea hardwarean edo softwarean aldaketaren bat egindakoan edo botoiren bat sakatzean soilik gertatzen den. Hala bada, sartu informazio hori ere."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Errore-txostena bidaltzea"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Erroreen berri emateko tresnak HTTP PUT / SOAP protokoloa erabiltzen du txostena bidaltzeko. Nahi izanez gero, azalpen-testua sar dezakezu programa-kraskaduraren testuingurua identifikatzen laguntzeko. Ondoren, sakatu <emph>Bidali</emph> botoia."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Ez duzu errore-txostenari buruzko erantzunik jasoko. Laguntza behar baduzu, bisitatu <link href=\"text/shared/main0108.xhp\">laguntza-foroa</link> Interneten."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Zein datu bidaltzen dira?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Errore-txostena hainbat fitxategik osatzen dute. Fitxategi nagusiak honako informazioa dauka: errore mota, sistema eragilearen izena eta bertsioa, memoriaren erabilera eta idatzi duzun deskribapena. Fitxategi nagusian zer bidaliko den ikusteko, sakatu erroreen berri emateko tresnaren elkarrizketa-koadro nagusiko <emph>Erakutsi txostena</emph> botoia."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Horrez gain, sistemaren zenbait tresna estandarrek (\"dbhhelp.dll\" Windows sistemetan, \"pstack\" UNIXen) memoriaren edukia eta pila-aztarna garrantzitsuak biltzen dituzte. Informazio hori ere bidali egiten da."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Gogoan izan fax bakoitzerako inprimatze-lan bat sortu behar duzula, bestela, lehenengo hartzaileak fax guztiak jasoko ditu. <emph>Tresnak - Posta-konbinazioa</emph> elkarrizketa-koadroan, hautatu <emph>Inprimagailua</emph> aukera, eta gero, markatu <emph>Inprimatze-lan indibiduala</emph> kontrol-laukia."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Txantiloi lehenetsiak aldatzea"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>eraldatzea; ikusi aldatzea</bookmark_value><bookmark_value>aldatzea; ikusi baita ere editatzea eta ordeztea</bookmark_value><bookmark_value>txantiloi lehenetsiak; aldatzea</bookmark_value><bookmark_value>lehenetsiak;dokumentuak</bookmark_value><bookmark_value>txantiloi pertsonalizatuak</bookmark_value><bookmark_value>eguneratu; txantiloiak</bookmark_value><bookmark_value>editatu;txantiloiak</bookmark_value><bookmark_value>txantiloiak;editatu eta gordetzea</bookmark_value><bookmark_value>gorde;txantiloiak</bookmark_value><bookmark_value>leheneratu;txantiloiak</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Txantiloi lehenetsiak aldatzea</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Dokumentu berri bat <emph>Fitxategia - Berria</emph> aukeraren bidez irekitzean, $[officename] txantiloi batean oinarritutako dokumentu hutsa agertuko da. Txantiloi hori editatu, aldatu edo ordeztu dezakezu, dokumentu berriak estilo pertsonalizatua edo beste eduki batzuk eduki ditzan."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Txantiloi lehenetsiak aldatzea"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Lehenengo, ireki lehendik dagoen $[officename] txantiloia eta aldatu, edo ireki dokumentu berria eta editatu nahieran, nahi duzun txantiloia sortzeko."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
+"help.text"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
+
+#. td5TZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3146901\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "$[officename] modulu bakoitzarentzat dokumentu-txantiloi bat defini dezakezu. Ondoren, testu-dokumentuetan zer egin behar den deskribatzen da."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
-#. dAATP
+#. MEA5R
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Gorde dokumentua <emph>Fitxategia - Txantiloiak - Gorde txantiloi gisa</emph> aukeratuta eta dokumentua <emph>Txantiloiak</emph> kategorian gordeta."
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Aukeratu <emph>Fitxategia - Berria - Txantiloiak</emph>"
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Egin klik bikoitza zerrendako <emph>Txantiloiak</emph> aukeran. Erabiltzaileak definitutako txantiloiak ikusiko dituzu erabiltzaileak definitutako direktorioan. Direktorio hori <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Bide-izenak</emph> aukeran zehazten da. Hautatu berriki gorde duzun txantiloia."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Aukeratu <emph>Ezarri lehenetsi gisa</emph>. Testu-dokumentu berria irekitzen duzun hurrengoan, dokumentu berria txantiloi lehenetsi berrian oinarrituko da."
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
-#. GuEWL
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Txantiloi lehenetsiak erabiltzea"
+msgid "Creating a Custom Template"
+msgstr ""
-#. Quf5G
+#. eUBit
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id231605475396242\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Txantiloi pertsonalizatuen bidez, lana hainbat modutan erraztu daiteke."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
-#. S8XFP
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Txantiloien karpetako txantiloiak"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Txantiloi berria gorde dezakezu <emph>Fitxategia - Txantiloiak - Gorde txantiloi gisa</emph> erabilita edo \"Txantiloia\" fitxategi mota hautatuta edozein 'Gorde' elkarrizketa-koadrotan. Gorde txantiloia <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Bide-izenak</emph> atalean zehaztutako erabiltzaile-direktorioan, txantiloia <emph>Fitxategia - Berria - Txantiloiak</emph> elkarrizketa-koadrotik atzitu ahal izateko."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Txantiloi bat ireki eta editatzeko, aukeratu <emph>Fitxategia - Berria - Txantiloiak</emph>, hautatu txantiloia eta sakatu <emph>Editatu</emph> botoia."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,14 +24100,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Ikusi <link href=\"text/swriter/guide/templates_styles.xhp\">Txantiloiak eta estiloak</link> horri buruzko informazio gehiago jasotzeko."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Ikusi <link href=\"text/swriter/guide/template_create.xhp\">Dokumentu-txantiloia sortzea</link>, informazio gehiago jasotzeko."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/optionen.po b/source/eu/helpcontent2/source/text/shared/optionen.po
index 3978e36440c..3c553d70acc 100644
--- a/source/eu/helpcontent2/source/text/shared/optionen.po
+++ b/source/eu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-12 20:34+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/eu/>\n"
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "Ikusi"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>bistak; lehenespenak</bookmark_value> <bookmark_value>lehenespenak; bistak</bookmark_value> <bookmark_value>ezarpenak; bistak</bookmark_value> <bookmark_value>ikonoak; tamainak</bookmark_value> <bookmark_value>ikonoak; estiloak</bookmark_value> <bookmark_value>WYSIWYG letra-tipoen zerrendetan</bookmark_value> <bookmark_value>aurrebistak; letra-tipoen zerrendak</bookmark_value> <bookmark_value>letra-tipoen zerrendak</bookmark_value> <bookmark_value>letra-tipoaren izen-kutxa</bookmark_value> <bookmark_value>sagua; kokagunea</bookmark_value> <bookmark_value>arbela; hautapen-arbela</bookmark_value> <bookmark_value>hautapen-arbela</bookmark_value> <bookmark_value>OpenGL;ezarpenak</bookmark_value> <bookmark_value>OpenGL;zerrenda beltza</bookmark_value> <bookmark_value>OpenGL;zerrenda zuria</bookmark_value> <bookmark_value>OpenGL;grafikoen irteera</bookmark_value> <bookmark_value>koaderno-barra;ikono-tamaina</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Bistaratze-aukerak zehazten ditu."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Erabiltzaile-interfazea"
+msgid "Icon style"
+msgstr "Ikono-estiloa"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Tresna-barrako ikonoen tamaina"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Tresna-barretako eta elkarrizketa-koadroetako ikonoen estiloa zehazten du.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Tresna-barretako ikonoen bistaratze-tamaina zehazten du.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> <emph>Automatikoa</emph> aukerarekin, zure sistema-eragileak menuetako letra-tipoaren tamainarako dituen ezarpenak erabiliko dira.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Aboko barrako ikonoen tamaina"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Alboko barrako ikonoen bistaratze-tamaina zehazten du.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Koaderno-barrako ikono-tamaina"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\"><link href=\"text/shared/01/notebook_bar.xhp\">Koaderno-barrako</link> ikonoen bistaratze-tamaina zehazten du.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Ikono-estiloa"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Tresna-barretako eta elkarrizketa-koadroetako ikonoen estiloa zehazten du.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Alboko barrako ikonoen bistaratze-tamaina zehazten du.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Lisatu pantailako letra-tipoak"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Hautatu testuak pantailan duen itxura leuntzeko.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Sartu letra-tamaina txikiena antialiasing-a aplikatzeko.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Menu-elementu bakoitzari dagokion ikonoa bistaratzen du. Hautatu \"Automatikoa\", \"Ezkutatu\" eta \"Erakutsi\" aukeren artean. \"Automatikoa\" aukerarekin, sistemaren ezarpenen eta azalen arabera erakutsiko dira ikonoak.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Sagua"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Sagua kokatzea"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Saguaren erakuslea azkena irekitako elkarrizketa-koadroetan kokatu behar den eta nola kokatuko den zehazten du.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Saguaren erdiko botoia"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "Hautatutako arbelaren edukia, egindako azken hautapena da."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Grafikoen irteera"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Uneko dokumentuko ikuspegia leheneratzeko edo freskatzeko sakatu Shift+Ctrl+R.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Uneko dokumentuko ikuspegia leheneratzeko edo freskatzeko sakatu Shift+Ctrl+R.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,68 +3805,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Onartuta dagoenean, grafikoen antialiasing-a gaitu edo desgaitu dezakezu. Gaituta dagoenean, objektu grafiko gehienen bistaratzea leunagoa izango da eta akats gutxiago izango ditu.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Erabili OpenGL errendatze guztietan (berrabiarazi eta gero)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Erabili performantzia handiko Open Graphics Library liburutegia (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) aplikazioaren ikusizko elementu guztiak errendatzeko: leihoak, menuak, tresna-barrak, ikonoak...</ahelp> OpenGL-k ordenagailuaren gailu grafikoa erabiltzen du grafikoen errendatzea azkartzeko. Gailua zerrenda beltzean badago (ikusi behean) aukera honek ez du funtzionatuko."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Behartu OpenGL, zerrenda beltzean egon arren (berrabiarazi eta gero)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">OpenGL erabiltzea behartzen du, nahiz eta grafikoen gailua zerrenda beltzean egon.</ahelp> Gailu bat zerrenda beltzean badago, esan nahi du akatsak eman ditzekeela edo kalitate eskaseko grafikoak errendatzen dituela."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menua"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Ikonoak menuetan"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Menu-elementu bakoitzari dagokion ikonoa bistaratzen du. Hautatu \"Automatikoa\", \"Ezkutatu\" eta \"Erakutsi\" aukeren artean. \"Automatikoa\" aukerarekin, sistemaren ezarpenen eta azalen arabera erakutsiko dira ikonoak.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Letra-tipo hautagarrien izenak, bakoitza bere letra-tipoarekin bistaratzen du, adibidez, <emph>Formatua</emph> barrako letra-tipoen kutxan.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Lisatu pantailako letra-tipoak"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Hautatu testuak pantailan duen itxura leuntzeko.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Sartu letra-tamaina txikiena antialiasing-a aplikatzeko.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/simpress.po b/source/eu/helpcontent2/source/text/simpress.po
index a746e7f4a62..6c01db742cb 100644
--- a/source/eu/helpcontent2/source/text/simpress.po
+++ b/source/eu/helpcontent2/source/text/simpress.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-06-24 10:16+0000\n"
+"PO-Revision-Date: 2020-11-30 00:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1558334072.000000\n"
#. 2Va4w
@@ -1589,7 +1589,7 @@ msgctxt ""
"hd_id3149499\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Object and Shape</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Objektua eta forma</link>"
#. XrW2e
#: main_format.xhp
diff --git a/source/eu/helpcontent2/source/text/simpress/02.po b/source/eu/helpcontent2/source/text/simpress/02.po
index a3d6c6deb07..95b8e324012 100644
--- a/source/eu/helpcontent2/source/text/simpress/02.po
+++ b/source/eu/helpcontent2/source/text/simpress/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-04-26 09:16+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1558946417.000000\n"
#. AiACn
@@ -5702,7 +5702,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Snap to Snap Guides"
-msgstr ""
+msgstr "Atxiki atxikitze-gidei"
#. DQ4DB
#: 13140000.xhp
@@ -5711,7 +5711,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Atxiki atxikitze-gidei</link>"
#. GXfRk
#: 13140000.xhp
@@ -5720,7 +5720,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Ikonoa</alt></image>"
#. wYSJV
#: 13140000.xhp
@@ -5729,7 +5729,7 @@ msgctxt ""
"par_id3154255\n"
"help.text"
msgid "Snap to Snap Guides"
-msgstr ""
+msgstr "Atxiki atxikitze-gidei"
#. oXWsX
#: 13150000.xhp
diff --git a/source/eu/helpcontent2/source/text/simpress/guide.po b/source/eu/helpcontent2/source/text/simpress/guide.po
index 1168fbd05dc..ca2c675be3b 100644
--- a/source/eu/helpcontent2/source/text/simpress/guide.po
+++ b/source/eu/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-05-21 10:40+0000\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpressguide/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1555928226.000000\n"
#. S83CC
@@ -1355,7 +1355,7 @@ msgctxt ""
"hd_id3153191\n"
"help.text"
msgid "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Adding a Header or a Footer to All Slides</link></variable>"
-msgstr ""
+msgstr "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Goiburukoa edo orri-oina gehitzea diapositiba guztiei</link></variable>"
#. fRX2a
#: footer.xhp
@@ -1535,7 +1535,7 @@ msgctxt ""
"par_id171597939732335\n"
"help.text"
msgid "Normally the predefined elements of the master slide are set to visible in the presentation. You can control the visibility of the predefined elements by choosing <menuitem>Slide - Master Elements</menuitem>."
-msgstr ""
+msgstr "Gehienetan, diapositiba maisuan aurredefinituta dauden elementuak ikusgai daude aurkezpenean. Elementu aurredefinituen ikusgaitasuna kontrolatzeko, aukeratu <menuitem>Diapositiba - Elementu maisuak</menuitem>."
#. MhrkU
#: footer.xhp
@@ -1571,7 +1571,7 @@ msgctxt ""
"par_id3147295\n"
"help.text"
msgid "On the <emph>Drawing</emph> bar, select the <emph>Text</emph> icon<image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Icon</alt></image>."
-msgstr ""
+msgstr "<emph>Marrazkia</emph> barran, hautatu <emph>Testua</emph> ikonoa<image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Ikonoa</alt></image>."
#. pV2Dh
#: footer.xhp
diff --git a/source/eu/helpcontent2/source/text/smath.po b/source/eu/helpcontent2/source/text/smath.po
index e6ceedaf614..23fe288479c 100644
--- a/source/eu/helpcontent2/source/text/smath.po
+++ b/source/eu/helpcontent2/source/text/smath.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:43+0100\n"
-"PO-Revision-Date: 2018-11-20 15:50+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath/eu/>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1542729046.000000\n"
#. yKBT5
@@ -176,7 +176,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements pane with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><menuitem>View - Elements</menuitem></link>."
-msgstr ""
+msgstr "Bistaratze-eskala ezartzen du eta ikusgai egongo diren elementuak definitzen ditu. <emph>Komandoak</emph> leihoan sartu daitezkeen komando gehienak saguarekin klik eginda ere atzitu daitezke, <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><menuitem>Ikusi - Elementuak</menuitem></link> aukerarekin jadanik 'Elementuak' panela ireki bada."
#. ZJSDS
#: main0103.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter/guide.po b/source/eu/helpcontent2/source/text/swriter/guide.po
index c7283a15a5c..5df91470427 100644
--- a/source/eu/helpcontent2/source/text/swriter/guide.po
+++ b/source/eu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/eu/>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Bestelakorik zehazten ez baduzu, $[officename] testu-dokumentu berri guztiak txantiloi lehenetsian oinarritzen dira."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] aplikazioak <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">aurrez zehaztutako txantiloiak</link> ditu, eta horiek dokumentu mota ezberdinak edo testu-dokumentuak sortzeko erabil ditzakezu, adibidez, gutun komertzialak."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Zuzeneko kurtsorearen portaera ezartzeko, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formateatzeko laguntza</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "<item type=\"menuitem\">Tresnak</item> barran, sakatu <item type=\"menuitem\">Zuzeneko kurtsorea</item> ikonoa <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Ikonoa</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Egin klik testu-dokumentuko leku libre batean. Saguaren erakuslea aldatu egiten da zuk idatziko testuari aplikatuko zaion lerrokapena erakusteko:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Ikonoa</alt></image> Lerrokatu ezkerrean"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Ikonoa</alt></image> Erdian"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Ikonoa</alt></image> Lerrokatu eskuinean"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter/librelogo.po b/source/eu/helpcontent2/source/text/swriter/librelogo.po
index 0fa994537dd..1cf52a3a74f 100644
--- a/source/eu/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/eu/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-04-01 10:16+0000\n"
+"PO-Revision-Date: 2020-11-30 00:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterlibrelogo/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1563085437.000000\n"
#. kypzs
@@ -2273,7 +2273,7 @@ msgctxt ""
"par_2490\n"
"help.text"
msgid "; Python-like list generation<br/> PRINT LIST RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 3 ; print [3, 6, 9]<br/> <br/> FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]<br/> FORWARD i<br/> LEFT 90<br/> ]<br/>"
-msgstr ""
+msgstr "; Python-en antzeko zerrenden sorrera<br/> PRINT LIST RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 3 ; print [3, 6, 9]<br/> <br/> FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]<br/> FORWARD i<br/> LEFT 90<br/> ]<br/>"
#. 2849D
#: LibreLogo.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter/menu.po b/source/eu/helpcontent2/source/text/swriter/menu.po
index a26c4bbfc8d..eef76dd66c7 100644
--- a/source/eu/helpcontent2/source/text/swriter/menu.po
+++ b/source/eu/helpcontent2/source/text/swriter/menu.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2017-10-22 09:06+0000\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textswritermenu/eu/>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1508663161.000000\n"
#. tP5yN
@@ -176,7 +176,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "More Breaks (submenu)"
-msgstr ""
+msgstr "Jauzi gehiago (azpimenua)"
#. smw7v
#: submenu_more_breaks.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"hd_id651601651730204\n"
"help.text"
msgid "<link href=\"text/swriter/menu/submenu_more_breaks.xhp\" name=\"morebreaks\">More Breaks</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/menu/submenu_more_breaks.xhp\" name=\"morebreaks\">Jauzi gehiago</link>"
#. CLUjA
#: submenu_more_breaks.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"par_id911601651828340\n"
"help.text"
msgid "<ahelp hid=\".\">Submenu with additional row, column, and page breaks</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Errenkadetan, zutabeetan eta orrialdeetan jauziak sartzeko azpimenu gehigarria</ahelp>"
#. t534N
#: submenu_more_breaks.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"hd_id41601652439817\n"
"help.text"
msgid "Insert Manual Row Break"
-msgstr ""
+msgstr "Txertatu eskuzko errenkada-jauzia"
#. AEbaf
#: submenu_more_breaks.xhp
@@ -212,7 +212,7 @@ msgctxt ""
"par_id41601888013000\n"
"help.text"
msgid "<image src=\"cmd/lc_insertlinebreak.svg\" id=\"img_id281601888013000\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381601888013000\">Manual Row Break Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertlinebreak.svg\" id=\"img_id281601888013000\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381601888013000\">Eskuzko errenkada-jauziaren ikonoa</alt></image>"
#. QGmjC
#: submenu_more_breaks.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"bm_id651604885957774\n"
"help.text"
msgid "<bookmark_value>text documents; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>testu-dokumentuak; zutabe-jauziak txertatzea</bookmark_value><bookmark_value>zutabe-jauziak; txertatzea</bookmark_value><bookmark_value>txertatzea; eskuzko zutabe-jauziak</bookmark_value><bookmark_value>eskuzko zutabe-jauziak</bookmark_value>"
#. XBU67
#: submenu_more_breaks.xhp
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id531601652875225\n"
"help.text"
msgid "Insert Manual Column Break"
-msgstr ""
+msgstr "Txertatu eskuzko zutabe-jauziak"
#. jBj9E
#: submenu_more_breaks.xhp
@@ -239,7 +239,7 @@ msgctxt ""
"par_id121601888786076\n"
"help.text"
msgid "<image src=\"cmd/lc_insertcolumnbreak.svg\" id=\"img_id851601888786076\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id881601888786076\">Manual Column Break Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertcolumnbreak.svg\" id=\"img_id851601888786076\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id881601888786076\">Eskuzko zutabe-jauzien ikonoa</alt></image>"
#. Mx6DD
#: submenu_more_breaks.xhp
@@ -248,7 +248,7 @@ msgctxt ""
"hd_id281601654787535\n"
"help.text"
msgid "<link href=\"text/swriter/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04010000.xhp\" name=\"Manual Break\">Eskuzko jauzia</link>"
#. XACTx
#: submenu_more_breaks.xhp
@@ -257,4 +257,4 @@ msgctxt ""
"par_id621601889272427\n"
"help.text"
msgid "<image src=\"cmd/lc_insertbreak.svg\" id=\"img_id461601889272427\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id31601889272427\">Manual Break icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertbreak.svg\" id=\"img_id461601889272427\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id31601889272427\">Eskuzko jauziaren ikonoa</alt></image>"
diff --git a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
index 5611055c222..60383a820a5 100644
--- a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-11 20:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1564560909.000000\n"
#. W5ukN
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Ezkutatu diapositiba"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~stua..."
+msgid "Te~xt Attributes..."
+msgstr "Test_u-atributuak..."
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Triangelu erregularra"
#. BUJ28
#: Effects.xcu
@@ -14144,7 +14144,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fall and fade out"
-msgstr ""
+msgstr "Erori eta ixteko itzali"
#. cCMGr
#: Effects.xcu
@@ -14154,7 +14154,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fall simulated"
-msgstr ""
+msgstr "Erortze simulatua"
#. BqK9h
#: Effects.xcu
@@ -14164,7 +14164,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Shoot right and return"
-msgstr ""
+msgstr "Bota eskuinera eta itzuli"
#. DHrg4
#: Effects.xcu
@@ -14174,7 +14174,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Shoot left and return"
-msgstr ""
+msgstr "Bota ezkerrera eta itzuli"
#. MZBtm
#: Effects.xcu
@@ -25056,7 +25056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "User ~Interface..."
-msgstr ""
+msgstr "Erabiltzaile-~interfazea..."
#. i8oSn
#: GenericCommands.xcu
@@ -25066,7 +25066,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a dialog to select the user interface"
-msgstr ""
+msgstr "Erabiltzaile-interfazea hautatzeko elkarrizketa-koadro bat erakusten du"
#. uQVBR
#: GenericCommands.xcu
@@ -25296,7 +25296,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Comment Thread"
-msgstr ""
+msgstr "Ezabatu iruzkin-haria"
#. s3CwY
#: GenericCommands.xcu
@@ -25316,7 +25316,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Resolved Thread"
-msgstr ""
+msgstr "Ebatzitako haria"
#. JZHpu
#: GenericCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Fitxategia"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Lerro~katu"
+msgid "Alig~n Objects"
+msgstr "Lerro~katu objektuak"
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Lerro~katu"
+msgid "Align Tex~t"
+msgstr "Lerrokatu te~stua"
#. y3E2U
#: GenericCommands.xcu
@@ -26426,7 +26426,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Distribution"
-msgstr ""
+msgstr "~Banaketa"
#. 2HWrF
#: GenericCommands.xcu
@@ -26436,7 +26436,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select at least three objects to distribute"
-msgstr ""
+msgstr "Hautatu banatuko diren hiru objektu gutxienez"
#. zEiFi
#: GenericCommands.xcu
@@ -26446,7 +26446,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Distribute Selection"
-msgstr ""
+msgstr "Banatu hautapena"
#. vDkBA
#: GenericCommands.xcu
@@ -26456,7 +26456,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Horizontally Left"
-msgstr ""
+msgstr "Banatu horizontalean ezkerrean"
#. gjrG6
#: GenericCommands.xcu
@@ -26466,7 +26466,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Horizontally ~Left"
-msgstr ""
+msgstr "Horizontalean e~zkerrean"
#. BBazW
#: GenericCommands.xcu
@@ -26476,7 +26476,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Horizontally Center"
-msgstr ""
+msgstr "Banatu horizontalean erdian"
#. SqFTB
#: GenericCommands.xcu
@@ -26486,7 +26486,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Horizontally ~Center"
-msgstr ""
+msgstr "Horizontalean e~rdian"
#. QXntz
#: GenericCommands.xcu
@@ -26496,7 +26496,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Horizontally Spacing"
-msgstr ""
+msgstr "Banatu horizontalean tarteka"
#. GQEXJ
#: GenericCommands.xcu
@@ -26506,7 +26506,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Horizontally ~Spacing"
-msgstr ""
+msgstr "Horizontalean ~tarteka"
#. Smk23
#: GenericCommands.xcu
@@ -26516,7 +26516,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Horizontally Right"
-msgstr ""
+msgstr "Banatu horizontalean eskuinean"
#. SDkHd
#: GenericCommands.xcu
@@ -26526,7 +26526,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Horizontally ~Right"
-msgstr ""
+msgstr "Horizontalean e~skuinean"
#. iJB7y
#: GenericCommands.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Erakutsi ~aldaketak"
#. sMgCx
#: WriterCommands.xcu
@@ -29936,7 +29936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline content visibility button"
-msgstr ""
+msgstr "Erakutsi eskemaren edukiaren ikusgaitasun-botoia"
#. 9DzFr
#: WriterCommands.xcu
@@ -29946,7 +29946,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show outline content visibility button"
-msgstr ""
+msgstr "Erakutsi eskemaren edukiaren ikusgaitasun-botoia"
#. C5mHk
#: WriterCommands.xcu
@@ -29956,7 +29956,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show tracked deletions in margin"
-msgstr ""
+msgstr "Erakutsi aldaketen ezabaketa marjinan"
#. 3GVrG
#: WriterCommands.xcu
@@ -29966,7 +29966,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show tracked deletions in margin"
-msgstr ""
+msgstr "Erakutsi aldaketen ezabaketak marjinan"
#. QFi68
#: WriterCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Hautatu paragrafo-amaieraraino"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Hautatu eskuineko hitzeraino"
+msgid "Select to End of Word"
+msgstr "Hautatu hitzaren amaieraraino"
#. bpBoC
#: WriterCommands.xcu
@@ -35206,7 +35206,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Content Visibility"
-msgstr ""
+msgstr "Txandakatu eskemaren edukiaren ikusgaitasuna"
#. mByUW
#: WriterCommands.xcu
@@ -35216,7 +35216,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Fold or unfold outline content in document"
-msgstr ""
+msgstr "Tolestu edo zabaldu eskemaren edukia dokumentuan"
#. qaWQG
#: WriterCommands.xcu
@@ -35226,7 +35226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Inspector Deck"
-msgstr ""
+msgstr "Ikuskatzaile-panela"
#. joS9f
#: WriterFormWindowState.xcu
diff --git a/source/eu/sc/messages.po b/source/eu/sc/messages.po
index ac9c0bcb424..300fb00966f 100644
--- a/source/eu/sc/messages.po
+++ b/source/eu/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/eu/>\n"
"Language: eu\n"
@@ -14683,7 +14683,7 @@ msgstr "Funtzioaren emaitza proba TRUE (egiazkoa) bada."
#: sc/inc/scfuncs.hrc:3606
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value."
-msgstr ""
+msgstr "Adierazpenak konparatzen ditu balio/emaitza bikoteen zerrenda batekin, eta adierazpenarekin bat datorren lehen balioaren emaitzak itzultzen ditu. Adierazpena ez badator bat balioren batekin, emaitza lehenetsi bat itzultzen da, emaitza hori parametro-zerrendan baliorik gabe ipintzen bada."
#. PneN8
#: sc/inc/scfuncs.hrc:3607
@@ -14695,7 +14695,7 @@ msgstr "Adierazpena"
#: sc/inc/scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to be compared against value1…valueN (N ≤ 127)"
-msgstr ""
+msgstr "Balio1...balioN aurka konparatuko den balioa (N ≤ 127)"
#. 9wcvj
#: sc/inc/scfuncs.hrc:3609
@@ -14707,7 +14707,7 @@ msgstr "Balioa"
#: sc/inc/scfuncs.hrc:3610
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to compare against expression. If no result is given, then value is returned as default result."
-msgstr ""
+msgstr "Adierazpenekin konparatuko den balioa. Emaitzarik ematen ez bada, balioa emaitza lehenetsi gisa itzuliko da."
#. dsARv
#: sc/inc/scfuncs.hrc:3611
@@ -22812,7 +22812,7 @@ msgstr "Aukerak"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:422
msgctxt "fourieranalysisdialog|extended_tip|FourierAnalysisDialog"
msgid "Produces the Fourier analysis of a data set by computing the Discrete Fourier Transform (DFT) of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms."
-msgstr ""
+msgstr "Datu multzo baten Fourier analisia ekoizten du zenbaki konplexuen sarrerako matrize batekin Fourierren transformatu diskretua (DFT) kalkulatuta Fourierren transformatu azkarren (FFT) algoritmo pare baten bidez."
#. FEwZR
#: sc/uiconfig/scalc/ui/functionpanel.ui:63
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "~Fitxategia"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Zehaztu hautatutako gelaxken ertzak."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Handitu koska"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Txikitu koska"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Karpeta nagusia"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hasiera"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "E_remua"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Txertatu"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Txertatu"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektuaren lerrokatzea"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Diseinua"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Di~seinua"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "E_statistikak"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Datuak"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Datuak"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Be_rrikusi"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Ber~rikusi"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ikusi"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ikusi"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ir_udia"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Irud~ia"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Marraztu"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Marraztu"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Bihurtu"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektua"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objektua"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "In_primatu"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "In~primatu"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "I_nprimakia"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Inp~rimakia"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Hedapena"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Hedapena"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tresnak"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Tre~snak"
@@ -25214,13 +25214,13 @@ msgstr "3. azentua"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "1. izenburua"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "2. izenburua"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -28610,7 +28610,7 @@ msgstr "Kokatu gelaxka-erreferentzia hautapenarekin"
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:342
msgctxt "extended_tip|legacy_cell_selection_cb"
msgid "With the option set, expanding a selection (with Ctrl + Shift + Down/Up) jumps to the end of the range in the column that was added as last to the initial selection. When the option is not set, expanding a selection (with Ctrl + Shift + Down/Up) jumps to the end of the range in the column where selecting the cell range was started. The same of course applies when extending a selection on rows, with Ctrl + Shift + Left/Right."
-msgstr ""
+msgstr "Aukera ezarrita badago, hautapena hedatzen bada (Ctrl + ⇧ + ↑/↓ erabilita) barrutiaren amaierara egiten du jauzi hasierako hautapenari azken zutabe gisa gehitu den zutabean. Aukera ezarrita ez badago, hautapena hedatzen bada (Ctrl + ⇧ + ↑/↓ erabilita) barrutiaren amaierara egiten du jauzi gelaxka-barrutiaren hautapena hasi den zutabean. Arau bera aplikatzen da errenkaden hautapen bat hedatzean (Ctrl + ⇧ + ←/→ erabilita)."
#. S2fGF
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:354
@@ -28628,7 +28628,7 @@ msgstr "Arbeletik hartutako gelaxkak hutsik ez dagoen gelaxka-barruti batean its
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
msgctxt "scgeneralpage|enter_paste_mode_cb"
msgid "Press Enter to paste and clear clipboard"
-msgstr ""
+msgstr "Sakatu ↵ arbelekoa itsatsi eta garbitzeko"
#. LFenu
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
@@ -29626,338 +29626,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Ebazlea"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr "_Berrezarri dena"
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_Aukerak..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Ebazle-aukeren elkarrizketa-koadroa irekitzen du."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Ebatzi"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Helburuko gelaxka"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimizatu emaitza"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Gelaxkak aldatuz"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Mi_nimoa"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Sartu aldatu daitekeen gelaxka-barrutia."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Ma_ximoa"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Sartu aldatu daitekeen gelaxka-barrutia."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Sartu aldatu daitekeen gelaxka-barrutia."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
-msgstr ""
+msgstr "Sartu edo egin klik helburuko gelaxkaren gelaxka-erreferentzian. Eremu honek optimizatuko den gelaxka-balioaren helbidea hartzen du."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Balioa:"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Sartu aldatu daitekeen gelaxka-barrutia."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Sartu aldatu daitekeen gelaxka-barrutia."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Gelaxken e_rreferentzia"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "Er_agilea"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "_Balioa"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Gelaxka-erreferentzia"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Gelaxka-erreferentzia"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Gelaxka-erreferentzia"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Gelaxka-erreferentzia"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Osokoa"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Bitarra"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Eragilea"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Osokoa"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Bitarra"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Eragilea"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Osokoa"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Bitarra"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Eragilea"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Osokoa"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Bitarra"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Eragilea"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Balioa"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Balioa"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Balioa"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Balioa"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Kendu"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Kendu"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Kendu"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Kendu"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Muga-baldintzak"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Ebazlearen elkarrizketa-koadroa irekitzen du. Ebazleei esker, aldagai ezezagun anitz eta aldagaietan murrizketa multzo bat dituzten arazo matematikoak ebatzi daitezke, helburuak bilatzeko metodoak erabilita."
@@ -31988,7 +31994,7 @@ msgstr "Honen arabera elkartuta:"
#: sc/uiconfig/scalc/ui/ttestdialog.ui:319
msgctxt "ttestdialog|extended_tip|TTestDialog"
msgid "Calculates the paired t-Test of two data samples."
-msgstr ""
+msgstr "Bi datu-laginen parekatutako t-testa kalkulatzen du."
#. ccFZ3
#: sc/uiconfig/scalc/ui/ungroupdialog.ui:8
diff --git a/source/eu/sd/messages.po b/source/eu/sd/messages.po
index 0e9ac56a0fc..5dc94d3bd5f 100644
--- a/source/eu/sd/messages.po
+++ b/source/eu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-10 19:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/eu/>\n"
@@ -3819,116 +3819,116 @@ msgstr "~Taula"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Bihurtu"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ir_udia"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ir~udia"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Marraztu"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Marraztu"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektua"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektua"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "I_nprimakia"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Inp~rimakia"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Maisua"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Maisua"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Hedapena"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Hedapena"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tresnak"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tresnak"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menua"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Hedapena"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "~Fitxategia"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Karpeta nagusia"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hasiera"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "E_remua"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Txertatu"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Txertatu"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Diseinua"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Di~seinua"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Diapositiba-aurkezpena"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Diapositiba-~aurkezpena"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Be_rrikusi"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Berrikusi"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ikusi"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ikusi"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Bihurtu"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ir_udia"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Irud~ia"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Marraztu"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Marraztu"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektua"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektua"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "I_nprimakia"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Inp~rimakia"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Maisua"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Maisua"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Ikusi"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Es~kema"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Hedapena"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Hedapena"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tresnak"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tresnak"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Editatu ingerada"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Hedapena"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/eu/sfx2/messages.po b/source/eu/sfx2/messages.po
index f7dc7a47c6b..12a6670e59c 100644
--- a/source/eu/sfx2/messages.po
+++ b/source/eu/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-08 11:35+0000\n"
+"PO-Revision-Date: 2020-11-30 10:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/eu/>\n"
"Language: eu\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.1.1\n"
"X-POOTLE-MTIME: 1559627054.000000\n"
#. bHbFE
@@ -4133,37 +4133,37 @@ msgstr "Ezabatu..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Atrakatu"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Desatrakatu"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Itxi alboko barra"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Pertsonalizazioa"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Berrezarri lehenetsia"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Alboko barraren ezarpenak"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/eu/starmath/messages.po b/source/eu/starmath/messages.po
index 684dd0baacf..b50aa9e85f4 100644
--- a/source/eu/starmath/messages.po
+++ b/source/eu/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-14 08:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/eu/>\n"
"Language: eu\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.1.1\n"
#. GrDhX
#: starmath/inc/smmod.hrc:16
@@ -506,7 +506,7 @@ msgstr "Zatiketa (zatikia)"
#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Zatikia"
#. 37Fw8
#: starmath/inc/strings.hrc:47
@@ -716,7 +716,7 @@ msgstr "Desberdintasuna"
#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Zatidura multzoa"
#. ToVZV
#: starmath/inc/strings.hrc:82
@@ -1400,13 +1400,13 @@ msgstr "Gorri kolorea"
#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Ur kolorea"
#. 6zGQ2
#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Magenta kolorea"
#. em3aA
#: starmath/inc/strings.hrc:197
@@ -1472,79 +1472,79 @@ msgstr "RGB kolorea"
#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "RGBA kolorea"
#. UxFDW
#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
-msgstr ""
+msgstr "Kolore hamaseitarra"
#. MGdCv
#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
-msgstr ""
+msgstr "Koral kolorea"
#. gPCCe
#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
-msgstr ""
+msgstr "Gorrimin kolorea"
#. oDRbR
#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
-msgstr ""
+msgstr "Gauerdiko urdin kolorea"
#. 4aCMu
#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
-msgstr ""
+msgstr "Bioleta kolorea"
#. Qivdb
#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
-msgstr ""
+msgstr "Laranja kolorea"
#. CVygm
#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
-msgstr ""
+msgstr "Laranja-gorri kolorea"
#. LbfRK
#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
-msgstr ""
+msgstr "Itsasoko berde kolorea"
#. DKivY
#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
-msgstr ""
+msgstr "Anil kolorea"
#. TZQzN
#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
-msgstr ""
+msgstr "Larrosa bero kolorea"
#. GHgTB
#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
-msgstr ""
+msgstr "Izpiliku kolorea"
#. HQmw7
#: starmath/inc/strings.hrc:219
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
-msgstr ""
+msgstr "Elur kolorea"
#. A2GQ4
#: starmath/inc/strings.hrc:220
@@ -1694,25 +1694,25 @@ msgstr "Giltzak behean (eskalagarria)"
#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Ebaluatu"
#. vfpuY
#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
-msgstr ""
+msgstr "Ebaluatu azpiindizea behean"
#. Q6G2q
#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
-msgstr ""
+msgstr "Ebaluatu goi-indizea goian"
#. 6NGAj
#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
-msgstr ""
+msgstr "Ebaluatu azpiindizea/goi-indizea"
#. wePDA
#: starmath/inc/strings.hrc:248
@@ -2168,7 +2168,7 @@ msgstr "Pitagorasen teorema"
#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Taylor seriea"
#. MuqjR
#: starmath/inc/strings.hrc:325
@@ -2180,43 +2180,43 @@ msgstr "Gauss banaketa"
#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Euler-Lagrange ekuazioa"
#. LnNNA
#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Kalkuluaren funtsezko teorema"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Kaosaren ekuazioa"
#. afEQ8
#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Eulerren identitatea"
#. m3ukF
#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Newton-en bigarren legea"
#. ZmaUU
#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Erlatibitate orokorra"
#. ADBy9
#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Erlatibitate berezia"
#. u47dF
#: starmath/inc/strings.hrc:334
@@ -2264,13 +2264,13 @@ msgstr "gorria"
#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "ura"
#. GLy7q
#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "magenta"
#. fZKES
#: starmath/inc/strings.hrc:343
@@ -2330,67 +2330,67 @@ msgstr "horia"
#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
-msgstr ""
+msgstr "korala"
#. RZSh6
#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
-msgstr ""
+msgstr "gorrimina"
#. QGibF
#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
-msgstr ""
+msgstr "gauerdia"
#. NKAkW
#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
-msgstr ""
+msgstr "bioleta"
#. sF9zc
#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
-msgstr ""
+msgstr "laranja"
#. CXMyK
#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
-msgstr ""
+msgstr "laranja-gorria"
#. Ak3yd
#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
-msgstr ""
+msgstr "izpilikua"
#. DLUaV
#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
-msgstr ""
+msgstr "elurra"
#. QDTEU
#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
-msgstr ""
+msgstr "itsasoko berdea"
#. PNveS
#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
-msgstr ""
+msgstr "anila"
#. r5S8P
#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
-msgstr ""
+msgstr "larrosa beroa"
#. NNmRT
#: starmath/inc/strings.hrc:363
@@ -2402,13 +2402,13 @@ msgstr "rgb"
#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "hex"
#. CCpNs
#: starmath/inc/strings.hrc:366
@@ -2546,7 +2546,7 @@ msgstr "Ez dira onartzen azpi-/goi-indize bikoitzak"
#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Zenbakia espero zen"
#. ZWBDD
#: starmath/inc/strings.hrc:389
diff --git a/source/eu/svx/messages.po b/source/eu/svx/messages.po
index 83517db2171..e5ed7a8d600 100644
--- a/source/eu/svx/messages.po
+++ b/source/eu/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-09 15:36+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/eu/>\n"
"Language: eu\n"
@@ -2399,7 +2399,7 @@ msgstr "Neurriaren laguntza-lerroa irtenda"
#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
-msgstr "Neurriaren laguntza-lerroaren tartea"
+msgstr "Neurriaren laguntzaren lerroartea"
#. jw9E7
#: include/svx/strings.hrc:425
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Doitu diapositiba uneko lehiora."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Ezin dira SmartArt guztiak kargatu. Microsoft Office 2010 bertsioan gordetzen baduzu, arazo hori saihetsiko duzu."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Ezin dira SmartArt objektu guztiak kargatu. Microsoft Office 2010 bertsioan edo berriagoan gordetzen bada, arazo hori saihestuko da."
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Nabigazio-barra"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Kraskadura-txostena ongi igo da.\n"
-"Laster txostena honako helbidean erakutsiko da:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Bidali kra_skaduren txostena"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "E_z bidali"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -16336,7 +16333,7 @@ msgstr "Komo_dinak"
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
msgid "Comme_nts"
-msgstr ""
+msgstr "Iru_zkinak"
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/eu/sw/messages.po b/source/eu/sw/messages.po
index a2f0c225cdf..497b7d8004a 100644
--- a/source/eu/sw/messages.po
+++ b/source/eu/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-09 15:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/eu/>\n"
"Language: eu\n"
@@ -98,13 +98,13 @@ msgstr "Taulek ez dute izenbururik eduki behar."
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Mantendu izenburu-mailak ordenatuta. %LEVEL_CURRENT% izenburu-mailak ez du egon behar %LEVEL_PREV% ondoren."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr "Saihestu Fontwork objektuak zure dokumentuetan. Ziurtatu lagin gisa soilik edo garrantzirik gabeko testuetarako besterik ez dela erabiltzen."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Zenbakitutako paragrafoak"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Karaktereen formatu zuzena"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Paragrafoen formatu zuzena"
#. YUbUQ
#. Format names
@@ -705,7 +705,7 @@ msgstr "Karakterearen ihes automatikoa"
#: sw/inc/inspectorproperties.hrc:48
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Auto Kerning"
-msgstr "Karakterearen kerning automatikoa"
+msgstr "Karakterearen doitze automatikoa"
#. jP3gx
#: sw/inc/inspectorproperties.hrc:49
@@ -825,7 +825,7 @@ msgstr "Karaktere-ihesaren altuera"
#: sw/inc/inspectorproperties.hrc:68
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Flash"
-msgstr ""
+msgstr "Karaktere-dirdira"
#. XXqBJ
#: sw/inc/inspectorproperties.hrc:69
@@ -885,589 +885,589 @@ msgstr "Karakterearen letra-izen konplexua"
#: sw/inc/inspectorproperties.hrc:78
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Pitch"
-msgstr ""
+msgstr "Karakterearen letren distantzia"
#. kHGrk
#: sw/inc/inspectorproperties.hrc:79
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Pitch Asian"
-msgstr ""
+msgstr "Karakterearen letren distantzia asiarra"
#. KVfXe
#: sw/inc/inspectorproperties.hrc:80
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Pitch Complex"
-msgstr ""
+msgstr "Karakterearen letren distantzia konplexua"
#. CQWM3
#: sw/inc/inspectorproperties.hrc:81
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Style Name"
-msgstr ""
+msgstr "Karakterearen letra-estiloaren izena"
#. h6gAC
#: sw/inc/inspectorproperties.hrc:82
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Style Name Asian"
-msgstr ""
+msgstr "Karakterearen letra-estiloaren izen asiarra"
#. Tm4Rb
#: sw/inc/inspectorproperties.hrc:83
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Style Name Complex"
-msgstr ""
+msgstr "Karakterearen letra-estiloaren izen konplexua"
#. AQzKB
#: sw/inc/inspectorproperties.hrc:84
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Height"
-msgstr ""
+msgstr "Karaktere-altuera"
#. zqVBR
#: sw/inc/inspectorproperties.hrc:85
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Height Asian"
-msgstr ""
+msgstr "Karaktere-altuera asiarra"
#. FNnH2
#: sw/inc/inspectorproperties.hrc:86
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Height Complex"
-msgstr ""
+msgstr "Karaktere-altuera konplexua"
#. 3DzPD
#: sw/inc/inspectorproperties.hrc:87
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Hidden"
-msgstr ""
+msgstr "Karaktere ezkutua"
#. TkovG
#: sw/inc/inspectorproperties.hrc:88
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Highlight"
-msgstr ""
+msgstr "Karaktere-nabarmentzea"
#. T44dN
#: sw/inc/inspectorproperties.hrc:89
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Interoperability Grab Bag"
-msgstr ""
+msgstr "Karaktereen elkarreraginkortasunerako saski-naskia"
#. EzwnG
#: sw/inc/inspectorproperties.hrc:90
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Kerning"
-msgstr ""
+msgstr "Karakterearen doitzea"
#. CFpCB
#: sw/inc/inspectorproperties.hrc:91
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Left Border"
-msgstr ""
+msgstr "Karakterearen ezkerreko ertza"
#. ZZNYY
#: sw/inc/inspectorproperties.hrc:92
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Left Border Distance"
-msgstr ""
+msgstr "Karakterearen ezkerreko ertzaren distantzia"
#. ZAkB6
#: sw/inc/inspectorproperties.hrc:93
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Locale"
-msgstr ""
+msgstr "Karakterearen hizkuntza"
#. Ju3fR
#: sw/inc/inspectorproperties.hrc:94
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Locale Asian"
-msgstr ""
+msgstr "Karakterearen hizkuntza asiarra"
#. sA8Rk
#: sw/inc/inspectorproperties.hrc:95
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Locale Complex"
-msgstr ""
+msgstr "Karakterearen hizkuntza konplexua"
#. AAvjB
#: sw/inc/inspectorproperties.hrc:96
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char No Hyphenation"
-msgstr ""
+msgstr "Karakterearen hitz-zatiketarik eza"
#. ioDYE
#: sw/inc/inspectorproperties.hrc:97
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Overline"
-msgstr ""
+msgstr "Karakterearen goimarra"
#. GBMFT
#: sw/inc/inspectorproperties.hrc:98
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Overline Color"
-msgstr ""
+msgstr "Karakterearen goimarraren kolorea"
#. 5y7T3
#: sw/inc/inspectorproperties.hrc:99
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Overline Has Color"
-msgstr ""
+msgstr "Karakterearen goimarrak kolorea du"
#. BEeWf
#: sw/inc/inspectorproperties.hrc:100
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Posture"
-msgstr ""
+msgstr "Karaktere-postura"
#. yTFRk
#: sw/inc/inspectorproperties.hrc:101
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Posture Asian"
-msgstr ""
+msgstr "Karaktere-postura asiarra"
#. 8WG25
#: sw/inc/inspectorproperties.hrc:102
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Posture Complex"
-msgstr ""
+msgstr "Karaktere-postura konplexua"
#. yuK3c
#: sw/inc/inspectorproperties.hrc:103
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Property Height"
-msgstr ""
+msgstr "Karakterearen propietatea altuera"
#. j4w85
#: sw/inc/inspectorproperties.hrc:104
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Property Height Asian"
-msgstr ""
+msgstr "Karakterearen propietatea altuera asiarra"
#. C5Ds3
#: sw/inc/inspectorproperties.hrc:105
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Property Height Complex"
-msgstr ""
+msgstr "Karakterearen propietatea altuera konplexua"
#. ABhRa
#: sw/inc/inspectorproperties.hrc:106
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Relief"
-msgstr ""
+msgstr "Karaktere-erliebea"
#. BsxCo
#: sw/inc/inspectorproperties.hrc:107
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Right Border"
-msgstr ""
+msgstr "Karakterearen eskuineko ertza"
#. jrnRf
#: sw/inc/inspectorproperties.hrc:108
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Right Border Distance"
-msgstr ""
+msgstr "Karakterearen eskuineko ertzaren distantzia"
#. UEpDe
#: sw/inc/inspectorproperties.hrc:109
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Rotation"
-msgstr ""
+msgstr "Karaktere-biraketa"
#. jwSQF
#: sw/inc/inspectorproperties.hrc:110
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Rotation is Fit To Line"
-msgstr ""
+msgstr "Karaktere-biraketa lerrora doitzea da"
#. cYG7T
#: sw/inc/inspectorproperties.hrc:111
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Scale Width"
-msgstr ""
+msgstr "Karaktere-eskalaren zabalera"
#. WFuSd
#: sw/inc/inspectorproperties.hrc:112
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Shading Value"
-msgstr ""
+msgstr "Karaktere-itzalaren balioa"
#. 9sRCG
#: sw/inc/inspectorproperties.hrc:113
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Shadow Format"
-msgstr ""
+msgstr "Karaktere-itzalaren formatua"
#. tKjaF
#: sw/inc/inspectorproperties.hrc:114
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Shadowed"
-msgstr ""
+msgstr "Karaktere itzalduna"
#. H9st9
#: sw/inc/inspectorproperties.hrc:115
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Strikeout"
-msgstr ""
+msgstr "Karaktere marratua"
#. zrLCN
#: sw/inc/inspectorproperties.hrc:116
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Style Name"
-msgstr ""
+msgstr "Karaktere-estiloaren izena"
#. PN2pE
#: sw/inc/inspectorproperties.hrc:117
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Style Names"
-msgstr ""
+msgstr "Karaktere-estiloen izenak"
#. rq2fu
#: sw/inc/inspectorproperties.hrc:118
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Top Border"
-msgstr ""
+msgstr "Karakterearen goiko ertza"
#. SNLiC
#: sw/inc/inspectorproperties.hrc:119
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Top Border Distance"
-msgstr ""
+msgstr "Karakterearen goiko ertzaren distantzia"
#. ZoAde
#: sw/inc/inspectorproperties.hrc:120
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Transparence"
-msgstr ""
+msgstr "Karaktere-gardentasuna"
#. CAJEC
#: sw/inc/inspectorproperties.hrc:121
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Underline"
-msgstr ""
+msgstr "Karaktere-azpimarra"
#. yGPLz
#: sw/inc/inspectorproperties.hrc:122
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Underline Color"
-msgstr ""
+msgstr "Karaktere-azpimarraren kolorea"
#. HmfPF
#: sw/inc/inspectorproperties.hrc:123
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Underline Has Color"
-msgstr ""
+msgstr "Karaktere-azpimarrak kolorea du"
#. QRCs4
#: sw/inc/inspectorproperties.hrc:124
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight"
-msgstr ""
+msgstr "Karaktere-pisua"
#. EwWk2
#: sw/inc/inspectorproperties.hrc:125
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight Asian"
-msgstr ""
+msgstr "Karaktere-pisu asiarra"
#. nxNQB
#: sw/inc/inspectorproperties.hrc:126
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight Complex"
-msgstr ""
+msgstr "Karaktere-pisu konplexua"
#. D4T2M
#: sw/inc/inspectorproperties.hrc:127
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Word Mode"
-msgstr ""
+msgstr "Karakterearen hitz modua"
#. z8NA6
#: sw/inc/inspectorproperties.hrc:128
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Continuing Previous Tree"
-msgstr ""
+msgstr "Aurreko zuhaitza jarraitzen"
#. 4BCE7
#: sw/inc/inspectorproperties.hrc:129
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Display Name"
-msgstr ""
+msgstr "Bistaratze-izena"
#. JXrsY
#: sw/inc/inspectorproperties.hrc:130
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Document Index"
-msgstr ""
+msgstr "Dokumentu-indizea"
#. A3nea
#: sw/inc/inspectorproperties.hrc:131
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Document Index Mark"
-msgstr ""
+msgstr "Dokumentu-indizearen marka"
#. XgFaZ
#: sw/inc/inspectorproperties.hrc:132
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Char Style Name"
-msgstr ""
+msgstr "Letra kapitalaren karaktere-estiloaren izena"
#. BtV5G
#: sw/inc/inspectorproperties.hrc:133
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Format"
-msgstr ""
+msgstr "Letra kapitalaren formatua"
#. SnMZX
#: sw/inc/inspectorproperties.hrc:134
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Whole Word"
-msgstr ""
+msgstr "Letra kapitalaren hitz osoa"
#. LXhoV
#: sw/inc/inspectorproperties.hrc:135
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Endnote"
-msgstr ""
+msgstr "Amaiera-oharra"
#. YmvFY
#: sw/inc/inspectorproperties.hrc:136
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Background"
-msgstr ""
+msgstr "Betegarriaren atzeko planoa"
#. TvMCc
#: sw/inc/inspectorproperties.hrc:137
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap"
-msgstr ""
+msgstr "Betegarriaren bit-mapa"
#. GWWrC
#: sw/inc/inspectorproperties.hrc:138
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Logical Size"
-msgstr ""
+msgstr "Betegarriaren bit-mapa tamaina logikoa"
#. r2Aif
#: sw/inc/inspectorproperties.hrc:139
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Mode"
-msgstr ""
+msgstr "Betegarriaren bit-maparen modua"
#. FZtcW
#: sw/inc/inspectorproperties.hrc:140
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Name"
-msgstr ""
+msgstr "Betegarriaren bit-maparen izena"
#. C4jU5
#: sw/inc/inspectorproperties.hrc:141
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Offset X"
-msgstr ""
+msgstr "Betegarriaren bit-maparen X desplazamendua"
#. w2UVD
#: sw/inc/inspectorproperties.hrc:142
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Offset Y"
-msgstr ""
+msgstr "Betegarriaren bit-maparen Y desplazamendua"
#. ZTKw7
#: sw/inc/inspectorproperties.hrc:143
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Position Offset X"
-msgstr ""
+msgstr "Betegarriaren bit-maparen posizioaren X desplazamendua"
#. BVBvB
#: sw/inc/inspectorproperties.hrc:144
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Position Offset Y"
-msgstr ""
+msgstr "Betegarriaren bit-maparen posizioaren Y desplazamendua"
#. CzVxv
#: sw/inc/inspectorproperties.hrc:145
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Rectangle Point"
-msgstr ""
+msgstr "Betegarriaren bit-maparen laukizuzen puntua"
#. GrmLm
#: sw/inc/inspectorproperties.hrc:146
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Size X"
-msgstr ""
+msgstr "Betegarriaren bit-maparen X tamaina"
#. stSMW
#: sw/inc/inspectorproperties.hrc:147
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Size Y"
-msgstr ""
+msgstr "Betegarriaren bit-maparen Y tamaina"
#. zJV5G
#: sw/inc/inspectorproperties.hrc:148
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Stretch"
-msgstr ""
+msgstr "Betegarriaren bit-mapa tiratua"
#. HMq2D
#: sw/inc/inspectorproperties.hrc:149
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Tile"
-msgstr ""
+msgstr "Betegarriaren bit-maparen izenburua"
#. 6iSjs
#: sw/inc/inspectorproperties.hrc:150
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap URL"
-msgstr ""
+msgstr "Betegarriaren bit-maparen URLa"
#. Fd28G
#: sw/inc/inspectorproperties.hrc:151
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color"
-msgstr ""
+msgstr "Betegarriaren kolorea"
#. neFA2
#: sw/inc/inspectorproperties.hrc:152
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color2"
-msgstr ""
+msgstr "Betegarriaren kolorea2"
#. 72i4Q
#: sw/inc/inspectorproperties.hrc:153
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Gradient"
-msgstr ""
+msgstr "Betegarriaren gradientea"
#. uWcQT
#: sw/inc/inspectorproperties.hrc:154
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Gradient Name"
-msgstr ""
+msgstr "Betegarriaren gradientearen izena"
#. uazQm
#: sw/inc/inspectorproperties.hrc:155
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Gradient Step Count"
-msgstr ""
+msgstr "Betegarriaren gradientearen urrats-zenbaketa"
#. bTjNu
#: sw/inc/inspectorproperties.hrc:156
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Hatch"
-msgstr ""
+msgstr "Betegarriaren itzaleztadura"
#. YCBtr
#: sw/inc/inspectorproperties.hrc:157
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Hatch Name"
-msgstr ""
+msgstr "Betegarriaren itzaleztaduraren izena"
#. GbQPt
#: sw/inc/inspectorproperties.hrc:158
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Style"
-msgstr ""
+msgstr "Betegarriaren estiloa"
#. tFYmZ
#: sw/inc/inspectorproperties.hrc:159
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Transparence"
-msgstr ""
+msgstr "Betegarriaren gardentasuna"
#. H9v5s
#: sw/inc/inspectorproperties.hrc:160
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Transparence Gradient"
-msgstr ""
+msgstr "Betegarriaren gardentasunaren gradientea"
#. pZH4P
#: sw/inc/inspectorproperties.hrc:161
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Transparence Gradient Name"
-msgstr ""
+msgstr "Betegarriaren gardentasunaren gradientearen izena"
#. WqmBo
#: sw/inc/inspectorproperties.hrc:162
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Follow Style"
-msgstr ""
+msgstr "Jarraipen-estiloa"
#. 32Vgt
#: sw/inc/inspectorproperties.hrc:163
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Footnote"
-msgstr ""
+msgstr "Oin-oharra"
#. NuA4J
#: sw/inc/inspectorproperties.hrc:164
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hidden"
-msgstr ""
+msgstr "Ezkutua"
#. TwGWU
#: sw/inc/inspectorproperties.hrc:165
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Events"
-msgstr ""
+msgstr "Hiperestekaren gertaerak"
#. XU6P3
#: sw/inc/inspectorproperties.hrc:166
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Name"
-msgstr ""
+msgstr "Hiperestekaren izena"
#. qRBxH
#: sw/inc/inspectorproperties.hrc:167
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Target"
-msgstr ""
+msgstr "Hiperestekaren helburua"
#. BoFLZ
#: sw/inc/inspectorproperties.hrc:168
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink URL"
-msgstr ""
+msgstr "Hiperestekaren URLa"
#. CbvLt
#: sw/inc/inspectorproperties.hrc:169
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Is Auto Update"
-msgstr ""
+msgstr "Eguneratze automatikokoa da"
#. DYXxe
#: sw/inc/inspectorproperties.hrc:170
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Is Physical"
-msgstr ""
+msgstr "Fisikoa da"
#. AdAo8
#: sw/inc/inspectorproperties.hrc:171
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Left Border"
-msgstr ""
+msgstr "Ezkerreko ertza"
#. tAqBG
#: sw/inc/inspectorproperties.hrc:172
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Left Border Distance"
-msgstr ""
+msgstr "Ezkerreko ertzaren distantzia"
#. 9cGvH
#: sw/inc/inspectorproperties.hrc:173
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Auto Format"
-msgstr ""
+msgstr "Zerrendaren formatu automatikoa"
#. fBeTS
#: sw/inc/inspectorproperties.hrc:174
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Id"
-msgstr ""
+msgstr "Zerrendaren IDa"
#. b73Zq
#: sw/inc/inspectorproperties.hrc:175
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Label String"
-msgstr ""
+msgstr "Zerrenda-etiketaren katea"
#. n9DQD
#: sw/inc/inspectorproperties.hrc:176
@@ -1509,7 +1509,7 @@ msgstr "Zebakitze-estiloaren izena"
#: sw/inc/inspectorproperties.hrc:182
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Outline Content Visible"
-msgstr ""
+msgstr "Eskemaren edukia ikusgai"
#. NNuo4
#: sw/inc/inspectorproperties.hrc:183
@@ -1521,7 +1521,7 @@ msgstr "Eskema-maila"
#: sw/inc/inspectorproperties.hrc:184
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Page Desc Name"
-msgstr ""
+msgstr "Orrialdearen deskribapenaren izena"
#. wLGct
#: sw/inc/inspectorproperties.hrc:185
@@ -1539,349 +1539,349 @@ msgstr "Orrialde-estiloaren izena"
#: sw/inc/inspectorproperties.hrc:187
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Rsid"
-msgstr ""
+msgstr "Paragrafoaren Rsid-a"
#. xqcEV
#: sw/inc/inspectorproperties.hrc:188
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Adjust"
-msgstr ""
+msgstr "Paragrafoaren doitzea"
#. SyTxG
#: sw/inc/inspectorproperties.hrc:189
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Auto Style Name"
-msgstr ""
+msgstr "Paragraforaren estilo-izen automatikoa"
#. WHaym
#: sw/inc/inspectorproperties.hrc:190
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Color"
-msgstr ""
+msgstr "Paragrafoaren atzeko planoko kolorea"
#. uKmB5
#: sw/inc/inspectorproperties.hrc:191
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic"
-msgstr ""
+msgstr "Paragrafoaren atzeko planoko grafikoa"
#. f6RGz
#: sw/inc/inspectorproperties.hrc:192
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic Filter"
-msgstr ""
+msgstr "Paragrafoaren atzeko planoko grafikoaren iragazkia"
#. Yy5RY
#: sw/inc/inspectorproperties.hrc:193
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic Location"
-msgstr ""
+msgstr "Paragrafoaren atzeko planoko grafikoaren kokalekua"
#. MLDdK
#: sw/inc/inspectorproperties.hrc:194
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic URL"
-msgstr ""
+msgstr "Paragrafoaren atzeko planoko grafikoaren URLa"
#. HkGF3
#: sw/inc/inspectorproperties.hrc:195
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Transparent"
-msgstr ""
+msgstr "Paragrafoaren atzeko plano gardena"
#. TuYLo
#: sw/inc/inspectorproperties.hrc:196
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Bottom Margin"
-msgstr ""
+msgstr "Paragrafoaren beheko marjina"
#. r5BAb
#: sw/inc/inspectorproperties.hrc:197
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Bottom Margin Relative"
-msgstr ""
+msgstr "Paragrafoaren beheko marjina erlatiboa"
#. rCWLX
#: sw/inc/inspectorproperties.hrc:198
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Chapter Numbering Level"
-msgstr ""
+msgstr "Paragrafoaren kapitulu-zenbakitzearen maila"
#. GLxXC
#: sw/inc/inspectorproperties.hrc:199
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Conditional Style Name"
-msgstr ""
+msgstr "Paragrafoaren baldintzapeko estiloaren izena"
#. AFGoP
#: sw/inc/inspectorproperties.hrc:200
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Context Margin"
-msgstr ""
+msgstr "Paragrafoaren testuinguru-marjina"
#. dpsFJ
#: sw/inc/inspectorproperties.hrc:201
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Expand Single Word"
-msgstr ""
+msgstr "Paragrafoan hedatu hitz bakarra"
#. iD2DL
#: sw/inc/inspectorproperties.hrc:202
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para First Line Indent"
-msgstr ""
+msgstr "Paragrafoaren lehen lerroaren koska"
#. wCMnF
#: sw/inc/inspectorproperties.hrc:203
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para First Line Indent Relative"
-msgstr ""
+msgstr "Paragrafoaren lehen lerroaren koska erlatiboa"
#. z47wS
#: sw/inc/inspectorproperties.hrc:204
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Hyphens"
-msgstr ""
+msgstr "Paragrafoaren hitz-zatiketa kopuru gehienekoa"
#. nFxKY
#: sw/inc/inspectorproperties.hrc:205
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Leading Chars"
-msgstr ""
+msgstr "Paragrafoen hitz-zatiketaren gehieneko ezkerreko karakterak"
#. agdzD
#: sw/inc/inspectorproperties.hrc:206
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Trailing Chars"
-msgstr ""
+msgstr "Paragrafoen hitz-zatiketaren gehieneko eskuineko karakterak"
#. hj7Fp
#: sw/inc/inspectorproperties.hrc:207
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation No Caps"
-msgstr ""
+msgstr "Paragrafoaren hitz-zatiketan maiuskularik ez"
#. 4bemD
#: sw/inc/inspectorproperties.hrc:208
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Interop Grab Bag"
-msgstr ""
+msgstr "Paragrafoen elkarreraginkortasunerako saski-naskia"
#. fCGA4
#: sw/inc/inspectorproperties.hrc:209
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Auto First Line Indent"
-msgstr ""
+msgstr "Paragrafoa lehen lerroko koska automatikoarekin"
#. Q68Bx
#: sw/inc/inspectorproperties.hrc:210
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Character Distance"
-msgstr ""
+msgstr "Paragrafoa karaktere-distantziarekin"
#. FGVAd
#: sw/inc/inspectorproperties.hrc:211
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Connect Border"
-msgstr ""
+msgstr "Paragrafoa ertzaren konexioarekin"
#. tBy9h
#: sw/inc/inspectorproperties.hrc:212
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Forbidden Rules"
-msgstr ""
+msgstr "Paragrafoa debeku-arauekin"
#. yZZSA
#: sw/inc/inspectorproperties.hrc:213
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Hanging Punctuation"
-msgstr ""
+msgstr "Paragrafoa puntuazio librearekin"
#. dDgrE
#: sw/inc/inspectorproperties.hrc:214
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Hyphenation"
-msgstr ""
+msgstr "Paragrafoa hitz-zatiketarekin"
#. mHDWE
#: sw/inc/inspectorproperties.hrc:215
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Numbering Restart"
-msgstr ""
+msgstr "Paragrafoa zenbakitzearen berrabiaraztearekin"
#. Mnm2C
#: sw/inc/inspectorproperties.hrc:216
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Keep Together"
-msgstr ""
+msgstr "Paragrafoa mantendu elkarrekin"
#. 8Z5AP
#: sw/inc/inspectorproperties.hrc:217
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Last Line Adjust"
-msgstr ""
+msgstr "Paragrafoaren azken lerroaren doikuntza"
#. 6CaHh
#: sw/inc/inspectorproperties.hrc:218
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Left Margin"
-msgstr ""
+msgstr "Paragrafoaren ezkerreko marjina"
#. ZDnZk
#: sw/inc/inspectorproperties.hrc:219
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Left Margin Relative"
-msgstr ""
+msgstr "Paragrafoaren ezkerreko marjina erlatiboa"
#. G43XB
#: sw/inc/inspectorproperties.hrc:220
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Line Number Count"
-msgstr ""
+msgstr "Paragrafoaren lerro-zenbakiaren zenbaketa"
#. EjnTM
#: sw/inc/inspectorproperties.hrc:221
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Line Number Start Value"
-msgstr ""
+msgstr "Paragrafoaren lerro-zenbakiaren hasierako balioa"
#. eo9RR
#: sw/inc/inspectorproperties.hrc:222
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Line Spacing"
-msgstr ""
+msgstr "Paragrafoaren lerroartea"
#. kczeF
#: sw/inc/inspectorproperties.hrc:223
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Orphans"
-msgstr ""
+msgstr "Paragrafo umezurtzak"
#. FmuG6
#: sw/inc/inspectorproperties.hrc:224
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Register Mode Active"
-msgstr ""
+msgstr "Paragrafoen erregistro modu aktiboa"
#. Kwp9H
#: sw/inc/inspectorproperties.hrc:225
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Right Margin"
-msgstr ""
+msgstr "Paragrafoaren eskuineko marjina"
#. r2ao2
#: sw/inc/inspectorproperties.hrc:226
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Right Margin Relative"
-msgstr ""
+msgstr "Paragrafoaren eskuineko marjina erlatiboa"
#. FC9mA
#: sw/inc/inspectorproperties.hrc:227
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Shadow Format"
-msgstr ""
+msgstr "Paragrafoaren itzal-formatua"
#. VXwD2
#: sw/inc/inspectorproperties.hrc:228
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Split"
-msgstr ""
+msgstr "Paragrafoaren zatiketa"
#. gXoCF
#: sw/inc/inspectorproperties.hrc:229
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Style Name"
-msgstr ""
+msgstr "Paragragoaren estilo-izena"
#. sekLv
#: sw/inc/inspectorproperties.hrc:230
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Tab Stops"
-msgstr ""
+msgstr "Paragrafoaren tabulazioak"
#. reW9Y
#: sw/inc/inspectorproperties.hrc:231
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Top Margin"
-msgstr ""
+msgstr "Paragrafoaren goiko marjina"
#. wHuj4
#: sw/inc/inspectorproperties.hrc:232
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Top Margin Relative"
-msgstr ""
+msgstr "Paragrafoaren goiko marjina erlatiboa"
#. pUjFj
#: sw/inc/inspectorproperties.hrc:233
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para User Defined Attributes"
-msgstr ""
+msgstr "Paragrafoaren atributuak, erabiltzaileak definituak"
#. WvA9C
#: sw/inc/inspectorproperties.hrc:234
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Vertical Alignment"
-msgstr ""
+msgstr "Paragrafoaren lerrokatze bertikala"
#. u8Jc6
#: sw/inc/inspectorproperties.hrc:235
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Widows"
-msgstr ""
+msgstr "Paragrafoaren leihoak"
#. cdw2Q
#: sw/inc/inspectorproperties.hrc:236
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Reference Mark"
-msgstr ""
+msgstr "Erreferentzia-marka"
#. NDEck
#: sw/inc/inspectorproperties.hrc:237
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Right Border"
-msgstr ""
+msgstr "Ezkuineko ertza"
#. 6rs9g
#: sw/inc/inspectorproperties.hrc:238
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Right Border Distance"
-msgstr ""
+msgstr "Eskuineko ertzaren distantzia"
#. XYhSX
#: sw/inc/inspectorproperties.hrc:239
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Rsid"
-msgstr ""
+msgstr "RSIDa"
#. Uoosp
#: sw/inc/inspectorproperties.hrc:240
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Adjust"
-msgstr ""
+msgstr "Ruby doikuntza"
#. 3WwCU
#: sw/inc/inspectorproperties.hrc:241
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Char Style Name"
-msgstr ""
+msgstr "Ruby karaktereen estilo-izena"
#. DqMAX
#: sw/inc/inspectorproperties.hrc:242
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby is Above"
-msgstr ""
+msgstr "Ruby gainean dago"
#. w8jgs
#: sw/inc/inspectorproperties.hrc:243
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Position"
-msgstr ""
+msgstr "Ruby kokalekua"
#. ZREEa
#: sw/inc/inspectorproperties.hrc:244
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Text"
-msgstr ""
+msgstr "Ruby testua"
#. tJEtt
#: sw/inc/inspectorproperties.hrc:245
@@ -1893,7 +1893,7 @@ msgstr "Atxiki saretari"
#: sw/inc/inspectorproperties.hrc:246
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Style Interop Grab Bag"
-msgstr ""
+msgstr "Estiloen elkarreraginkortasunerako saski-naskia"
#. PV65u
#: sw/inc/inspectorproperties.hrc:247
@@ -1905,7 +1905,7 @@ msgstr "Testu-eremua"
#: sw/inc/inspectorproperties.hrc:248
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text Frame"
-msgstr ""
+msgstr "Testu-markoa"
#. CNyuR
#: sw/inc/inspectorproperties.hrc:249
@@ -1947,13 +1947,13 @@ msgstr "Goiko ertzaren distantzia"
#: sw/inc/inspectorproperties.hrc:255
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Unvisited Char Style Name"
-msgstr ""
+msgstr "Bisitatu gabeko karaktereen estilo-izena"
#. xcMEF
#: sw/inc/inspectorproperties.hrc:256
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Visited Char Style Name"
-msgstr ""
+msgstr "Bisitatutako karaktereen estilo-izena"
#. YiBym
#: sw/inc/inspectorproperties.hrc:257
@@ -2895,13 +2895,13 @@ msgstr "Irudia"
#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
-msgstr ""
+msgstr "Hartzailea"
#. PvoVz
#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
-msgstr ""
+msgstr "Bidaltzailea"
#. AChE4
#: sw/inc/strings.hrc:146
@@ -3197,7 +3197,7 @@ msgstr "Eskuineko orrialdea"
#: sw/inc/strings.hrc:196
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
-msgstr ""
+msgstr "Gutun-azala"
#. jGSGz
#: sw/inc/strings.hrc:197
@@ -5750,49 +5750,49 @@ msgstr "Desaktibatuta"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Egin klik edukiaren ikusgaitasuna txandakatzeko"
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "Eskuineko klik azpimailak sartzeko"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Egin klik edukiaren ikusgaitasuna txandakatzeko"
#. rkD8H
#: sw/inc/strings.hrc:649
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "Eskuineko klik azpimailak sartzeko"
#. JZgRD
#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
-msgstr ""
+msgstr "Eskema-edukiaren ikusgaitasuna"
#. oBH6y
#: sw/inc/strings.hrc:651
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
-msgstr ""
+msgstr "Txandakatu"
#. 7UQPv
#: sw/inc/strings.hrc:652
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
-msgstr ""
+msgstr "Erakutsi dena"
#. ZUuCQ
#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
-msgstr ""
+msgstr "Ezkutatu dena"
#. 9Fipd
#: sw/inc/strings.hrc:655
@@ -8012,7 +8012,7 @@ msgstr "Goiburukorik ez"
#: sw/inc/strings.hrc:1084
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
-msgstr ""
+msgstr "Optimoa"
#. HEuGy
#: sw/inc/strings.hrc:1085
@@ -8030,19 +8030,19 @@ msgstr "Zeharka"
#: sw/inc/strings.hrc:1087
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
-msgstr ""
+msgstr "Paraleloa"
#. hyEQ5
#: sw/inc/strings.hrc:1088
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
-msgstr ""
+msgstr "Aurretik"
#. bGBtQ
#: sw/inc/strings.hrc:1089
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
-msgstr ""
+msgstr "Ondoren"
#. SrG3D
#: sw/inc/strings.hrc:1090
@@ -8138,13 +8138,13 @@ msgstr "Lerroaren behealdea"
#: sw/inc/strings.hrc:1105
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
-msgstr ""
+msgstr "Orrialdearen lerroartea"
#. Cui3U
#: sw/inc/strings.hrc:1106
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
-msgstr ""
+msgstr "Orrialdearen lerroarte eza"
#. 4RL9X
#: sw/inc/strings.hrc:1107
@@ -9980,13 +9980,13 @@ msgstr "Ebatzi gabea"
#: sw/uiconfig/swriter/ui/annotationmenu.ui:42
msgctxt "annotationmenu|resolvethread"
msgid "Resolve Thread"
-msgstr ""
+msgstr "Ebatzi haria"
#. gE5Sy
#: sw/uiconfig/swriter/ui/annotationmenu.ui:50
msgctxt "annotationmenu|unresolvethread"
msgid "Unresolve Thread"
-msgstr ""
+msgstr "Utzi haria ebatzi gabe"
#. qAYam
#: sw/uiconfig/swriter/ui/annotationmenu.ui:58
@@ -9998,7 +9998,7 @@ msgstr "E_zabatu iruzkina"
#: sw/uiconfig/swriter/ui/annotationmenu.ui:66
msgctxt "annotationmenu|deletethread"
msgid "Delete _Comment Thread"
-msgstr ""
+msgstr "Ezabatu _iruzkinen haria"
#. z2NAS
#: sw/uiconfig/swriter/ui/annotationmenu.ui:74
@@ -10274,7 +10274,7 @@ msgstr "Posta bidaltzeko zerbitzariak (SMTP) au_tentifikazioa behar du"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:101
msgctxt "extended_tip|authentication"
msgid "Enables the authentication that is required to send email by SMTP."
-msgstr ""
+msgstr "Posta elektronikoa SMTP bidez bidaltzeko behar den autentifikazioa gaitzen du."
#. 5F7CW
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:113
@@ -10328,7 +10328,7 @@ msgstr "Posta bidaltzeko zerbitzariak posta _hartzeko zerbitzariak erabiltzen du
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:230
msgctxt "extended_tip|smtpafterpop"
msgid "Select if you are required to first read your email before you can send email."
-msgstr ""
+msgstr "Hautatu hau posta-mezuak bidali baino lehen postak irakurtzea derrigortu nahi bada."
#. hguDR
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:245
@@ -11018,7 +11018,7 @@ msgstr "Etxeko telefono-zenbakia"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:191
msgctxt "extended tip | fax"
msgid "Type company fax number in this field."
-msgstr ""
+msgstr "Idatzi enpresaren fax-zenbakia eremu honetan."
#. iGBqW
#: sw/uiconfig/swriter/ui/businessdatapage.ui:222
@@ -11030,7 +11030,7 @@ msgstr "Fax-zenbakia"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:223
msgctxt "extended tips | url"
msgid "Company homepage"
-msgstr ""
+msgstr "Enpresaren webgunea"
#. JBxqb
#: sw/uiconfig/swriter/ui/businessdatapage.ui:240
@@ -11042,7 +11042,7 @@ msgstr "Posta elektronikoko helbidea"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:241
msgctxt "extended tip | email"
msgid "Type your company email address."
-msgstr ""
+msgstr "Idatzi enpresaren posta elektronikoko helbidea."
#. CCKWa
#: sw/uiconfig/swriter/ui/businessdatapage.ui:260
@@ -11060,7 +11060,7 @@ msgstr "Abizena"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:285
msgctxt "extended tips | company2"
msgid "Company second line"
-msgstr ""
+msgstr "Enpresaren bigarren lerroa"
#. Po3B3
#: sw/uiconfig/swriter/ui/businessdatapage.ui:304
@@ -11078,7 +11078,7 @@ msgstr "Herria"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:329
msgctxt "extended tip | icity"
msgid "Type the company city"
-msgstr ""
+msgstr "Idatzi enpresaren hiria"
#. ytCQe
#: sw/uiconfig/swriter/ui/businessdatapage.ui:346
@@ -11096,7 +11096,7 @@ msgstr "Idatzi enpresaren ZIPa eremu honetan."
#: sw/uiconfig/swriter/ui/businessdatapage.ui:376
msgctxt "extended tips | slogan"
msgid "Company slogan"
-msgstr ""
+msgstr "Enpresaren eslogana"
#. GAi2c
#: sw/uiconfig/swriter/ui/businessdatapage.ui:406
@@ -12594,10 +12594,9 @@ msgstr "Te_stura bitarteko tartea:"
#. hsw2F
#: sw/uiconfig/swriter/ui/dropcapspage.ui:153
-#, fuzzy
msgctxt "dropcapspage|extended_tip|spinFLD_DROPCAPS"
msgid "Enter the number of characters to convert to drop caps."
-msgstr "Sartu maiuskula bihurtu beharreko karatereen kopurua. "
+msgstr "Sartu maiuskula bihurtuko diren karatereen kopurua."
#. mTJvq
#: sw/uiconfig/swriter/ui/dropcapspage.ui:171
@@ -13775,10 +13774,9 @@ msgstr "Bilatu hemen _bakarrik"
#. vXdjr
#: sw/uiconfig/swriter/ui/findentrydialog.ui:150
-#, fuzzy
msgctxt "findentrydialog|extended_tip|findin"
msgid "Restricts the search to one data field."
-msgstr "Bilaketa datu-eremu batera mugatzen du. "
+msgstr "Bilaketa datu-eremu batera mugatzen du."
#. LA7X8
#: sw/uiconfig/swriter/ui/findentrydialog.ui:169
@@ -13838,7 +13836,7 @@ msgstr "Hautatu eremuak zein datu-baseko taulari edo kontsultari egin behar dion
#: sw/uiconfig/swriter/ui/flddbpage.ui:300
msgctxt "flddbpage|label2"
msgid "Database S_election"
-msgstr ""
+msgstr "Datu-basearen _hautapena"
#. JeBVb
#: sw/uiconfig/swriter/ui/flddbpage.ui:326
@@ -13922,7 +13920,7 @@ msgstr "Mota zerrendan hautatutako eremu motarako dauden eremu erabilgarriak zer
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:169
msgctxt "flddocinfopage|label2"
msgid "_Select"
-msgstr ""
+msgstr "_Hautatu"
#. oGvBL
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:237
@@ -13934,7 +13932,7 @@ msgstr "Egin klik hautatutako eremuari aplikatu nahi diozun formatuan, edo egin
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:251
msgctxt "flddocinfopage|fixed"
msgid "Fi_xed content"
-msgstr ""
+msgstr "Eduki f_inkoa"
#. BojDo
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:260
@@ -13946,7 +13944,7 @@ msgstr "Eremua eduki estatiko gisa txertatzen du, hau da, eremua ezin da egunera
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:278
msgctxt "flddocinfopage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Formatua"
#. BmH6G
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:103
@@ -13970,7 +13968,7 @@ msgstr "Mota zerrendan hautatutako eremu motarako dauden eremu erabilgarriak zer
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:190
msgctxt "flddocumentpage|label2"
msgid "_Select"
-msgstr ""
+msgstr "_Hautatu"
#. xtXnr
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:267
@@ -13982,13 +13980,13 @@ msgstr "Egin klik hautatutako eremuari aplikatu nahi diozun formatuan, edo egin
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:327
msgctxt "flddocumentpage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Formatua"
#. k7KnK
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:343
msgctxt "flddocumentpage|fixed"
msgid "Fi_xed content"
-msgstr ""
+msgstr "Eduki f_inkoa"
#. TjKiH
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:352
@@ -14000,7 +13998,7 @@ msgstr "Eremua eduki estatiko gisa txertatzen du, hau da, eremua ezin da egunera
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:371
msgctxt "flddocumentpage|levelft"
msgid "_Level"
-msgstr ""
+msgstr "_Maila"
#. VX38D
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:388
@@ -14054,7 +14052,7 @@ msgstr "M_ota"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:167
msgctxt "fldfuncpage|label4"
msgid "_Select"
-msgstr ""
+msgstr "_Hautatu"
#. b3UqC
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:229
@@ -14066,7 +14064,7 @@ msgstr "Egin klik hautatutako eremuari aplikatu nahi diozun formatuan, edo egin
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:242
msgctxt "fldfuncpage|label2"
msgid "_Format"
-msgstr ""
+msgstr "_Formatua"
#. CGoTS
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:267
@@ -14300,7 +14298,7 @@ msgstr "Mota zerrendan hautatutako eremu motarako dauden eremu erabilgarriak zer
#: sw/uiconfig/swriter/ui/fldvarpage.ui:214
msgctxt "fldvarpage|label2"
msgid "_Select"
-msgstr ""
+msgstr "_Hautatu"
#. ZuuQf
#: sw/uiconfig/swriter/ui/fldvarpage.ui:306
@@ -14318,7 +14316,7 @@ msgstr "Formatua zerrendan, zehaztu balioa testu edo zenbaki gisa txertatu den."
#: sw/uiconfig/swriter/ui/fldvarpage.ui:371
msgctxt "fldvarpage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Formatua"
#. qPpKb
#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
@@ -14342,7 +14340,7 @@ msgstr "_Maila"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
msgctxt "fldvarpage|separatorft"
msgid "Se_parator"
-msgstr ""
+msgstr "_Bereizlea"
#. wrAG3
#: sw/uiconfig/swriter/ui/fldvarpage.ui:460
@@ -14856,10 +14854,9 @@ msgstr "Oin-oharrak jarraitzen duen orrialdean bistaratzea nahi duzun testua sar
#. PM3nD
#: sw/uiconfig/swriter/ui/footnotepage.ui:337
-#, fuzzy
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". %PRODUCTNAME Writer automatically inserts the number of the following page."
-msgstr "Oin-oharrak hurrengo orrialdean jarraitzen duenean bistaratzea nahi duzun testua sartu, adibidez, \"Jarraipena . orrialdean\". %PRODUCTNAME Writerrek automatikoki txertatzen du hurrengo orrialdearen zenbakia. "
+msgstr "Sartu oin-oharrak hurrengo orrialdean jarraitzen duenean bistaratuko den testua, adibidez \"Jarraipena . orrialdean\". %PRODUCTNAME Writerrek automatikoki txertatzen du hurrengo orrialdearen zenbakia."
#. ZEhG2
#: sw/uiconfig/swriter/ui/footnotepage.ui:354
@@ -16473,13 +16470,13 @@ msgstr "Balio maximoa kalkulatzen du barruti edo zerrenda batean."
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:294
msgctxt "inputwinmenu|count"
msgid "Count"
-msgstr ""
+msgstr "Zenbaketa"
#. 3VBfQ
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:302
msgctxt "inputwinmenu|product"
msgid "Product"
-msgstr ""
+msgstr "Produktua"
#. DRxEW
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:310
@@ -16569,13 +16566,13 @@ msgstr "Arku tangentea kalkulatzen du radianetan."
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:413
msgctxt "inputwinmenu|abs"
msgid "Abs"
-msgstr ""
+msgstr "Absolutua"
#. wmZwk
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:421
msgctxt "inputwinmenu|sign"
msgid "Sign"
-msgstr ""
+msgstr "Ikurra"
#. ytZBB
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:429
@@ -16603,10 +16600,9 @@ msgstr "Laster-marka"
#. fofuv
#: sw/uiconfig/swriter/ui/insertbookmark.ui:107
-#, fuzzy
msgctxt "insertbookmark|extended_tip|name"
msgid "Type the name of the bookmark that you want to create. Then press Insert."
-msgstr "Idatzi sortu nahi duzun laster-markaren izena. Ondoren, sakatu Txertatu."
+msgstr "Idatzi sortu nahi duzun laster-markaren izena. Ondoren, sakatu 'Txertatu'."
#. zocpL
#: sw/uiconfig/swriter/ui/insertbookmark.ui:118
@@ -16886,10 +16882,9 @@ msgstr "Kategoria:"
#. LySa4
#: sw/uiconfig/swriter/ui/insertcaption.ui:326
-#, fuzzy
msgctxt "insertcaption|extended_tip|category"
msgid "Select the caption category, or type a name to create a new category. The category text appears before the caption number in the caption label. Each predefined caption category is formatted with a paragraph style of the same name."
-msgstr "Hautatu epigrafe-kategoria edo idatzi izen bat kategoria berria sortzeko. Kategoria-testua epigrafe-zenbakiaren aurretik agertzen da epigrafe-etiketan. Aurrez definitutako epigrafe-kategoriei izen bereko paragrafo-estiloa aplikatzen zaie. "
+msgstr "Hautatu epigrafe-kategoria edo idatzi izen bat kategoria berria sortzeko. Kategoria-testua epigrafe-zenbakiaren aurretik agertzen da epigrafe-etiketan. Aurrez definitutako epigrafe-kategoriei izen bereko paragrafo-estiloa aplikatzen zaie."
#. rJDNR
#: sw/uiconfig/swriter/ui/insertcaption.ui:343
@@ -16983,10 +16978,9 @@ msgstr "Zerrendatutako datu-baseko eremu guztiak Taulako zutabea(k) zerrenda-koa
#. 36dFc
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:320
-#, fuzzy
msgctxt "insertdbcolumnsdialog|extended_tip|oneright"
msgid "Moves the selected database field into the Table column(s) list box."
-msgstr "Taulako zutabea(k) zerrenda-koadrora mugitzen da/dira hautatutako datu-baseko eremuan. "
+msgstr "Taulako zutabea(k) zerrenda-koadrora mugitzen da/dira hautatutako datu-baseko eremuan."
#. bGF2A
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:338
@@ -17206,7 +17200,6 @@ msgstr "Aukeratu..."
#. XDgLr
#: sw/uiconfig/swriter/ui/insertfootnote.ui:242
-#, fuzzy
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "Karaktere berezia txertatzen du oin-oharraren edo amaiera-oharraren aingura gisa."
@@ -17449,7 +17442,7 @@ msgstr "Sartu taulan izan nahi duzun errenkada kopurua."
#: sw/uiconfig/swriter/ui/inserttable.ui:245
msgctxt "inserttable|lbwarning"
msgid "Warning : Large tables may adversely affect performance and compatibility"
-msgstr ""
+msgstr "Abisua: Taula handiek errendimenduan eta bateragarritasunean eragina izan dezakete"
#. M2tGB
#: sw/uiconfig/swriter/ui/inserttable.ui:261
@@ -18031,13 +18024,13 @@ msgstr "Idatzi izena."
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:66
msgctxt "extended_tip|address"
msgid "Enter your email address for replies."
-msgstr ""
+msgstr "Sartu erantzunetarako erabiliko den posta-helbidea."
#. yBLGV
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:83
msgctxt "extended_tip|replyto"
msgid "Enter the address to use for email replies."
-msgstr ""
+msgstr "Sartu posta-erantzunetarako erabiliko den helbidea."
#. nfWNf
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:97
@@ -18061,7 +18054,7 @@ msgstr "Bidali erantzunak _beste helbide elektroniko batera"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:131
msgctxt "extended_tip|replytocb"
msgid "Uses the email address that you enter in the Reply address text box as the reply-to email address."
-msgstr ""
+msgstr "'Erantzunerako helbidea' testu-koadroan sartutako posta-helbidea erabiltzen du posta-mezuei erantzuteko."
#. AESca
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:145
@@ -18091,7 +18084,7 @@ msgstr "Zer_bitzariaren autentifikazioa..."
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:235
msgctxt "extended_tip|serverauthentication"
msgid "Opens the Server Authentication dialog where you can specify the server authentication settings for secure email."
-msgstr ""
+msgstr "'Zerbitzariaren autentifikazioa' elkarrizketa-koadroa irekitzen du, posta segurua erabiltzeko zerbitzariaren autentifikazio-ezarpenak zehazteko."
#. AqgAF
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:258
@@ -18121,7 +18114,7 @@ msgstr "Erabili _konexio segurua (SSL)"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:308
msgctxt "extended_tip|secure"
msgid "When available, uses a secure connection to send emails."
-msgstr ""
+msgstr "Erabilgarri badago, konexio segurua erabiltzen du posta-mezuak bidaltzeko."
#. U82eq
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:327
@@ -18145,7 +18138,7 @@ msgstr "Bidaltzeko zerbitzariaren (SMTP) ezarpenak"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:379
msgctxt "extended_tip|MailConfigPage"
msgid "Specifies the user information and server settings for when you send form letters as email messages."
-msgstr ""
+msgstr "Erabiltzaile-informazioa eta zerbitzari-ezarpenak zehazten ditu inprimaki-gutunak posta-mezu modura bidaltzen direnerako."
#. RyDB6
#: sw/uiconfig/swriter/ui/mailmerge.ui:16
@@ -18967,7 +18960,7 @@ msgstr "Hemen idatzi mezua"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:117
msgctxt "mmmailbody|extended_tip|bodymle"
msgid "Enter the main text of the email."
-msgstr ""
+msgstr "Sartu mezuaren testu nagusia."
#. AEVTw
#: sw/uiconfig/swriter/ui/mmmailbody.ui:143
@@ -18979,7 +18972,7 @@ msgstr "Mezu honek agurra eduki behar du"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:152
msgctxt "mmmailbody|extended_tip|greeting"
msgid "Adds a salutation to the email."
-msgstr ""
+msgstr "Agur bat gehitzen dio posta-mezuari."
#. i7T9E
#: sw/uiconfig/swriter/ui/mmmailbody.ui:178
@@ -19087,7 +19080,7 @@ msgstr "Agur pertsonalizatua gehitzen du. Agur lehenetsia erabiltzeko, garbitu k
#: sw/uiconfig/swriter/ui/mmmailbody.ui:486
msgctxt "mmmailbody|extended_tip|MailBodyDialog"
msgid "Type the message and the salutation for files that you send as email attachments."
-msgstr ""
+msgstr "Idatzi eranskin modura bidaliko diren fitxategietarako mezua eta agurra."
#. Zqr7R
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:44
@@ -19123,7 +19116,7 @@ msgstr "_Posta elektronikoko mezua"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:113
msgctxt "mmoutputtypepage|extended_tip|email"
msgid "Creates mail merge documents that you can send as an email message or an email attachment."
-msgstr ""
+msgstr "Posta-mezu modura edo posta-eranskin gisa bidali daitekeen posta konbinazioko dokumentuak sortzen ditu."
#. roGWt
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:148
@@ -19153,7 +19146,7 @@ msgstr "Bidali dokumentuak"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:43
msgctxt "mmresultemaildialog|extended_tip|ok"
msgid "Click to start sending emails."
-msgstr ""
+msgstr "Egin klik mezuak bidaltzen hasteko."
#. cNmQk
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:123
@@ -19165,7 +19158,7 @@ msgstr "H_ona"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:140
msgctxt "mmresultemaildialog|extended_tip|mailto"
msgid "Select the database field that contains the email address of the recipient."
-msgstr ""
+msgstr "Hautatu hartzailearen posta-helbidea duen datu-baseko eremua."
#. H6VrM
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:151
@@ -19189,7 +19182,7 @@ msgstr "_Gaia"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:189
msgctxt "mmresultemaildialog|extended_tip|subject"
msgid "Enter the subject line for the email messages."
-msgstr ""
+msgstr "Sartu posta-mezuetarako erabiliko den gai-lerroa."
#. DRHXR
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:202
@@ -19231,7 +19224,7 @@ msgstr "Testu soila"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:226
msgctxt "mmresultemaildialog|extended_tip|sendas"
msgid "Select the mail format for the email messages."
-msgstr ""
+msgstr "Hautatu posta-mezuen formatua."
#. A25u6
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:237
@@ -19243,7 +19236,7 @@ msgstr "P_ropietateak..."
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:245
msgctxt "mmresultemaildialog|extended_tip|sendassettings"
msgid "Opens the E-Mail Message dialog where you can enter the email message for the mail merge files that are sent as attachments."
-msgstr ""
+msgstr "'Posta elektronikoko mezua' elkarrizketa-koadroa irekitzen du, eranskin modura bidali diren posta konbinazioko fitxategietarako posta-mezua sartu ahal dadin."
#. TePCV
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:258
@@ -19273,7 +19266,7 @@ msgstr "Eran_skinaren izena"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:358
msgctxt "mmresultemaildialog|label2"
msgid "Email Options"
-msgstr ""
+msgstr "Posta elektronikoaren aukerak"
#. kCBDz
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:390
@@ -19285,7 +19278,7 @@ msgstr "B_idali dokumentu guztiak"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:400
msgctxt "mmresultemaildialog|extended_tip|sendallrb"
msgid "Select to send emails to all recipients."
-msgstr ""
+msgstr "Hautatu posta-mezuak hartzaile guztiei bidaltzeko."
#. EN8Jh
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:418
@@ -19321,13 +19314,13 @@ msgstr "Sartu posta-konbinazioan sartuko den azken erregistroaren zenbakia."
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:507
msgctxt "mmresultemaildialog|label1"
msgid "Send Records"
-msgstr ""
+msgstr "Bidali erregistroak"
#. 6VhcE
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:532
msgctxt "mmresultemaildialog|extended_tip|MMResultEmailDialog"
msgid "Sends the mail merge output as email messages to all or some recipients."
-msgstr ""
+msgstr "Posta konbinazioaren irteera posta-mezu gisa bidaltzen dizkie hartzaile guztiei edo batzuei."
#. rD68U
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:20
@@ -19375,7 +19368,7 @@ msgstr "Inprimagailuaren propietateak aldatzen ditu."
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:170
msgctxt "mmresultprintdialog|label2"
msgid "Printer Options"
-msgstr ""
+msgstr "Inprimagailu-aukerak"
#. VemES
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:206
@@ -19423,7 +19416,7 @@ msgstr "Sartu posta-konbinazioan sartuko den azken erregistroaren zenbakia."
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:326
msgctxt "mmresultprintdialog|label1"
msgid "Print Records"
-msgstr ""
+msgstr "Inprimatu erregistroak"
#. ZZ5p9
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:351
@@ -19507,7 +19500,7 @@ msgstr "Sartu posta-konbinazioan sartuko den azken erregistroaren zenbakia."
#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:254
msgctxt "mmresultsavedialog|label2"
msgid "Save As Options"
-msgstr ""
+msgstr "Gordetzeko aukerak"
#. 2BCiE
#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:279
@@ -19819,7 +19812,7 @@ msgstr "Posta bidaltzeko zerbitzariaren konexioa ezarri da"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:113
msgctxt "mmsendmails|label1"
msgid "Connection Status"
-msgstr ""
+msgstr "Konexioaren egoera"
#. s8CDU
#: sw/uiconfig/swriter/ui/mmsendmails.ui:162
@@ -19861,7 +19854,7 @@ msgstr "Xehetasunak"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:307
msgctxt "mmsendmails|label2"
msgid "Transfer Status"
-msgstr ""
+msgstr "Transferentziaren egoera"
#. c2i5B
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
@@ -19975,7 +19968,7 @@ msgstr "Ezabatu dena"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
-msgstr ""
+msgstr "Eskema-edukiaren ikusgaitasuna"
#. EBK2E
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
@@ -20059,13 +20052,13 @@ msgstr "Ikuspegi maisuaren eta ikuspegi normalaren artean txandakatzen da dokume
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
-msgstr ""
+msgstr "Joan orrialdera"
#. avLGA
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
-msgstr ""
+msgstr "Sartu orrialde-zenbakia eta sakatu 'Enter'. Erabili geziak hurrengo orrialdera, aurrerantz edo atzerantz, joateko."
#. DgvFE
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
@@ -20368,181 +20361,181 @@ msgid "~File"
msgstr "~Fitxategia"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Karpeta nagusia"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hasiera"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Txertatu"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Txertatu"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Diseinua"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Di~seinua"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "E_rreferentziak"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Erre~ferentziak"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Be_rrikusi"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Berrikusi"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ikusi"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ikusi"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ir_udia"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Irud~ia"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Ma_rraztu"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Ma~rraztu"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektua"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektua"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "In_primatu"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "In~primatu"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "I_nprimakia"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Inp~rimakia"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Hedapena"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Hedapena"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tresnak"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Tresnak"
@@ -21580,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Editatu ingerada"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Hedapena"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
@@ -22098,7 +22085,7 @@ msgstr "Berrantolatu 'Inprimakia' menua MS bateragarria izan dadin"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:139
msgctxt "optcompatpage|label2"
msgid "Global Compatibility Options"
-msgstr ""
+msgstr "Bateragarritasun globalaren aukerak"
#. KC3YE
#: sw/uiconfig/swriter/ui/optcompatpage.ui:235
@@ -22444,7 +22431,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optformataidspage.ui:273
msgctxt "optformataidspage|displayfl"
msgid "Display Formatting"
-msgstr ""
+msgstr "Bistaratze-formatua"
#. ufN3R
#: sw/uiconfig/swriter/ui/optformataidspage.ui:305
@@ -22456,7 +22443,7 @@ msgstr "Math oinarri-lerroaren lerrokatzea"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:326
msgctxt "optformataidspage|layoutopt"
msgid "Layout Assistance"
-msgstr "Datuen diseinua"
+msgstr "Diseinu-morroia"
#. s9cDX
#: sw/uiconfig/swriter/ui/optformataidspage.ui:358
@@ -23696,7 +23683,7 @@ msgstr "Eduki bera:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Marjinak:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23786,7 +23773,7 @@ msgstr "Eduki bera:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Marjinak:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
@@ -24590,7 +24577,7 @@ msgstr "Iruzkinak"
#: sw/uiconfig/swriter/ui/printoptionspage.ui:476
msgctxt "printoptionspage|label5"
msgid "_Fax:"
-msgstr ""
+msgstr "_Faxa:"
#. CFCk9
#: sw/uiconfig/swriter/ui/printoptionspage.ui:481
@@ -24740,7 +24727,7 @@ msgstr "Kokagunea"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:215
msgctxt "extended tips | job"
msgid "Type your profession"
-msgstr ""
+msgstr "Idatzi zure lanbidea"
#. 344nc
#: sw/uiconfig/swriter/ui/privateuserpage.ui:244
@@ -24764,7 +24751,7 @@ msgstr "Fax-zenbakia"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:277
msgctxt "extended tips | url"
msgid "Enter your home page"
-msgstr ""
+msgstr "Sartu zure webgunea"
#. AnyFT
#: sw/uiconfig/swriter/ui/privateuserpage.ui:294
@@ -24776,7 +24763,7 @@ msgstr "Posta elektronikoko helbidea"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:295
msgctxt "extended tip | email"
msgid "Type your email address."
-msgstr ""
+msgstr "Idatzi zure posta elektronikoko helbidea."
#. Qxb4Q
#: sw/uiconfig/swriter/ui/privateuserpage.ui:314
@@ -24794,7 +24781,7 @@ msgstr "Abizena"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:339
msgctxt "extended tips | firstname2"
msgid "Type your first name"
-msgstr ""
+msgstr "Idatzi zure lehen izena"
#. rDNHk
#: sw/uiconfig/swriter/ui/privateuserpage.ui:356
@@ -24806,7 +24793,7 @@ msgstr "Izena"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:357
msgctxt "extended tips | lastname2"
msgid "Type your last name "
-msgstr ""
+msgstr "Idatzi zure abizena "
#. rztbH
#: sw/uiconfig/swriter/ui/privateuserpage.ui:374
@@ -24818,7 +24805,7 @@ msgstr "Inizialak"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:375
msgctxt "extended tips | shortname2"
msgid "Type your initials"
-msgstr ""
+msgstr "Idatzi zure inizialak"
#. LGHpW
#: sw/uiconfig/swriter/ui/privateuserpage.ui:394
@@ -24860,7 +24847,7 @@ msgstr "Idatzi zure kalearen izena eremu honetan."
#: sw/uiconfig/swriter/ui/privateuserpage.ui:496
msgctxt "extended tips | country"
msgid "Type the country name"
-msgstr ""
+msgstr "Idatzi herrialdearen izena"
#. y652V
#: sw/uiconfig/swriter/ui/privateuserpage.ui:513
@@ -24884,7 +24871,7 @@ msgstr "Titulua"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:558
msgctxt "extended tips | phone"
msgid "Type your phone number"
-msgstr ""
+msgstr "Idatzi zure telefono-zenbakia"
#. GThP4
#: sw/uiconfig/swriter/ui/privateuserpage.ui:575
@@ -24896,7 +24883,7 @@ msgstr "Kokagunea"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:576
msgctxt "extended tips | mobile"
msgid "Type your mobile phone number"
-msgstr ""
+msgstr "Idatzi zure mugikorraren telefono-zenbakia"
#. bGoA3
#: sw/uiconfig/swriter/ui/privateuserpage.ui:599
@@ -28770,7 +28757,7 @@ msgstr "Ezkutuko te_stua"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:249
msgctxt "extended_tip|hiddentextfield"
msgid "Displays text that is hidden by Conditional Text or Hidden Text fields."
-msgstr "Baldintzapeko testua edo Ezkutuko testua eremuen ondorioz ezkutuan dagoen testua bistaratzen du."
+msgstr "'Baldintzapeko testua' edo 'Ezkutuko testua' eremuen ondorioz ezkutuan dagoen testua bistaratzen du."
#. Mbfk7
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:260
@@ -28782,19 +28769,19 @@ msgstr "Ezkutuko _paragrafoak"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:269
msgctxt "extended_tip|hiddenparafield"
msgid "If you have inserted text using the Hidden Paragraph field, specifies whether to display the hidden paragraph."
-msgstr "Testua Ezkutuko paragrafoa eremua erabilita txertatu bada, ezkutuko paragrafoa bistaratuko den ala ez zehazten du."
+msgstr "Testua 'Ezkutuko paragrafoa' eremua erabilita txertatu bada, ezkutuko paragrafoa bistaratuko den ala ez zehazten du."
#. hFXBr
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:286
msgctxt "viewoptionspage|fieldslabel"
msgid "Display Fields"
-msgstr ""
+msgstr "Bistaratu eremuak"
#. EiyCk
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:320
msgctxt "viewoptionspage|changesinmargin"
msgid "Tracked _deletions in margin"
-msgstr ""
+msgstr "Aldaketen _ezabaketak marjinan"
#. vvvb7
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:329
@@ -28812,19 +28799,19 @@ msgstr "_Aholkuak grabatutako aldaketetan"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:361
msgctxt "viewoptionspage|changeslabel"
msgid "Display tracked changes"
-msgstr ""
+msgstr "Bistaratu jarraitutako aldaketak"
#. CuQqf
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:395
msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
msgid "_Show outline content visibility button"
-msgstr ""
+msgstr "Erakutsi es_kemaren edukiaren ikusgaitasun-botoia"
#. jQBeb
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:416
msgctxt "viewoptionspage|outlinelabel"
msgid "Outline mode"
-msgstr ""
+msgstr "Eskema modua"
#. YD6TK
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:462
@@ -29224,10 +29211,9 @@ msgstr "_Optimoa"
#. 4pAFL
#: sw/uiconfig/swriter/ui/wrappage.ui:210
-#, fuzzy
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
-msgstr "Testua objektuaren ertzeko markoaren ezkerrean, eskuinean edo lau aldeetan egokitzen du automatikoki. Objektuaren eta orrialde-marjinaren arteko distantzia 2 cm baino txikiagoa bada, testua ez da egokituko. "
+msgstr "Testua objektuaren ertzeko markoaren ezkerrean, eskuinean edo lau aldeetan egokitzen du automatikoki. Objektuaren eta orrialde-marjinaren arteko distantzia 2 cm baino txikiagoa bada, testua ez da egokituko."
#. FezRV
#: sw/uiconfig/swriter/ui/wrappage.ui:227
diff --git a/source/fa/chart2/messages.po b/source/fa/chart2/messages.po
index 9615c80212e..6087f824dee 100644
--- a/source/fa/chart2/messages.po
+++ b/source/fa/chart2/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-04-22 08:08+0000\n"
-"Last-Translator: hussein <ghasemi.hussein@gmail.com>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: Persian <https://weblate.documentfoundation.org/projects/libo_ui-master/chart2messages/fa/>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1541615421.000000\n"
#. NCRDD
@@ -2448,7 +2448,7 @@ msgstr "نشانگر"
#: chart2/uiconfig/ui/sidebarseries.ui:45
msgctxt "sidebarseries|checkbutton_label"
msgid "Show data labels"
-msgstr "نمایش برچست داده‌ها"
+msgstr "نمایش برچسب داده‌ها"
#. BsC9D
#: chart2/uiconfig/ui/sidebarseries.ui:69
@@ -2464,7 +2464,6 @@ msgstr "بالا"
#. e4znD
#: chart2/uiconfig/ui/sidebarseries.ui:85
-#, fuzzy
msgctxt "sidebarseries|comboboxtext_label"
msgid "Below"
msgstr "زیر"
@@ -2491,13 +2490,13 @@ msgstr "داخل"
#: chart2/uiconfig/ui/sidebarseries.ui:89
msgctxt "sidebarseries|comboboxtext_label"
msgid "Near origin"
-msgstr ""
+msgstr "نزدیک مبدأ"
#. erC9C
#: chart2/uiconfig/ui/sidebarseries.ui:114
msgctxt "sidebarseries|checkbutton_trendline"
msgid "Show trendline"
-msgstr ""
+msgstr "نمایش خط روند"
#. bXUND
#: chart2/uiconfig/ui/sidebarseries.ui:150
@@ -2515,10 +2514,9 @@ msgstr "میله‌های خطای X"
#. FFPa2
#: chart2/uiconfig/ui/sidebarseries.ui:188
-#, fuzzy
msgctxt "sidebarseries|label1"
msgid "Error Bars"
-msgstr "میله‌های خطای X"
+msgstr "میله‌های خطا"
#. vhdnt
#: chart2/uiconfig/ui/sidebarseries.ui:221
diff --git a/source/fa/connectivity/registry/mork/org/openoffice/Office/DataAccess.po b/source/fa/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
index d4e82222c3d..b2cdd7968d1 100644
--- a/source/fa/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
+++ b/source/fa/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-04-14 16:48+0000\n"
-"Last-Translator: hussein <ghasemi.hussein@gmail.com>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: Persian <https://weblate.documentfoundation.org/projects/libo_ui-master/connectivityregistrymorkorgopenofficeofficedataaccess/fa/>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1524566859.000000\n"
#. ftPgS
@@ -24,4 +24,4 @@ msgctxt ""
"DriverTypeDisplayName\n"
"value.text"
msgid "Thunderbird Address Book"
-msgstr "دفترچه آدرس Thunderbird"
+msgstr "دفترچه آدرس تاندربرد"
diff --git a/source/fa/cui/messages.po b/source/fa/cui/messages.po
index 5f71b502824..67705881b19 100644
--- a/source/fa/cui/messages.po
+++ b/source/fa/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21533,60 +21533,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
index 478652774a5..b97ab9d5fcf 100644
--- a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-05-08 18:16+0000\n"
-"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: Mohammadreza Razian <razian.mr@gmail.com>\n"
"Language-Team: Persian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fa/>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1542023219.000000\n"
#. W5ukN
@@ -126,7 +126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Check Box"
-msgstr ""
+msgstr "جعبه انتخاب فرم"
#. RDGEE
#: BasicIDECommands.xcu
@@ -8160,15 +8160,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "ن~شان دادن/مخفی کردن اسلاید"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "م~تن..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -20318,7 +20318,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show the Styles Sidebar"
-msgstr ""
+msgstr "نمایش نوار کناری سبک‌ها"
#. mPHxC
#: GenericCommands.xcu
@@ -20328,7 +20328,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Styles"
-msgstr ""
+msgstr "سبک‌ها"
#. ptyRB
#: GenericCommands.xcu
@@ -21488,7 +21488,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "سبک‌های جدول"
#. GF4U9
#: GenericCommands.xcu
@@ -21498,7 +21498,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Auto~Format Styles..."
-msgstr ""
+msgstr "سبک‌های ~قالب‌بندی خودکار…"
#. XdHHU
#: GenericCommands.xcu
@@ -25852,27 +25852,25 @@ msgctxt ""
msgid "~File"
msgstr "~پرونده"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ردیف کردن"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ردیف کردن"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31574,15 +31572,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "انتخاب تا پایان بند"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "انتخاب تا راست کلمه"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/fa/sc/messages.po b/source/fa/sc/messages.po
index 5a86a0df5b6..ad03f941a51 100644
--- a/source/fa/sc/messages.po
+++ b/source/fa/sc/messages.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2018-11-12 11:47+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
+"Language-Team: Persian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/fa/>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1542023221.000000\n"
#. kBovX
@@ -705,7 +705,7 @@ msgstr "محدوده‌های حاوی خانه‌های ادغام شده را
#: sc/inc/globstr.hrc:136
msgctxt "STR_MSSG_SOLVE_0"
msgid "Goal Seek succeeded. Result: "
-msgstr "جستجوی هدف موفقیت‌آمیز بود. نتیجه:"
+msgstr "جستجوی هدف موفقیت‌آمیز بود. نتیجه: "
#. nLBkx
#: sc/inc/globstr.hrc:137
@@ -6376,7 +6376,7 @@ msgstr "اگر یک آرگومان «درست» باشد، «درست» برمی
#: sc/inc/scfuncs.hrc:903
msgctxt "SC_OPCODE_OR"
msgid "Logical value "
-msgstr "مقدار منطقی"
+msgstr "مقدار منطقی "
#. 8XBdG
#: sc/inc/scfuncs.hrc:904
@@ -6395,7 +6395,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:911
msgctxt "SC_OPCODE_XOR"
msgid "Logical value "
-msgstr "مقدار منطقی"
+msgstr "مقدار منطقی "
#. sX2H9
#: sc/inc/scfuncs.hrc:912
@@ -6414,7 +6414,7 @@ msgstr "اگر همهٔ آرگومان‌ها «درست» باشند، «درس
#: sc/inc/scfuncs.hrc:919
msgctxt "SC_OPCODE_AND"
msgid "Logical value "
-msgstr "مقدار منطقی"
+msgstr "مقدار منطقی "
#. f9SWZ
#: sc/inc/scfuncs.hrc:920
@@ -10187,7 +10187,7 @@ msgstr "آلفا"
#: sc/inc/scfuncs.hrc:2223
msgctxt "SC_OPCODE_CRIT_BINOM"
msgid "The border probability that is attained or exceeded."
-msgstr "احتمال حاشیه‌ای که "
+msgstr "احتمال حاشیه‌ای که حاصل شده یا از آن فراتر رفته باشد."
#. uHvfK
#: sc/inc/scfuncs.hrc:2229
@@ -10231,7 +10231,7 @@ msgstr "آلفا"
#: sc/inc/scfuncs.hrc:2235
msgctxt "SC_OPCODE_BINOM_INV"
msgid "The border probability that is attained or exceeded."
-msgstr "احتمال حاشیه‌ای که "
+msgstr "احتمال حاشیه‌ای که حاصل شده یا از آن فراتر رفته باشد."
#. qpmzB
#: sc/inc/scfuncs.hrc:2241
@@ -17063,7 +17063,7 @@ msgstr "صافی استاندارد..."
#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
-msgstr "10تای اول "
+msgstr "10 تای اول"
#. FNDLK
#: sc/inc/strings.hrc:36
@@ -25378,213 +25378,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30596,355 +30596,361 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "گزینه‌ها..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "~حداقل"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "~حداکثر"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
#, fuzzy
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "عملگر"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "مقادیر"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "عدد صحیح "
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "عملگر"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "عدد صحیح "
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "عملگر"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "عدد صحیح "
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "عملگر"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "عدد صحیح "
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "عملگر"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "مقادیر"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "مقادیر"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "مقادیر"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "مقادیر"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "حذف"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "حذف"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "حذف"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "حذف"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/fa/sd/messages.po b/source/fa/sd/messages.po
index ccd15994672..0fc7400a486 100644
--- a/source/fa/sd/messages.po
+++ b/source/fa/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3889,116 +3889,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4402,12 +4402,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6739,219 +6733,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7911,12 +7905,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "~ویرایش شمارشگر..."
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/fa/starmath/messages.po b/source/fa/starmath/messages.po
index adf6f8a2cb4..d629de9c2e5 100644
--- a/source/fa/starmath/messages.po
+++ b/source/fa/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2209,9 +2209,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/fa/svx/messages.po b/source/fa/svx/messages.po
index a817e7d2037..40db55bb332 100644
--- a/source/fa/svx/messages.po
+++ b/source/fa/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-04-14 16:49+0000\n"
"Last-Translator: hussein <ghasemi.hussein@gmail.com>\n"
"Language-Team: Persian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/fa/>\n"
@@ -7374,10 +7374,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14223,13 +14223,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "نوار ناوش"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14253,10 +14253,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/fa/sw/messages.po b/source/fa/sw/messages.po
index 92e6caedb91..29dd088da53 100644
--- a/source/fa/sw/messages.po
+++ b/source/fa/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: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-04-29 20:26+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-03 21:40+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: Persian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/fa/>\n"
"Language: fa\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -5560,7 +5560,6 @@ msgstr ""
#. HD64i
#: sw/inc/strings.hrc:603
-#, fuzzy
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
@@ -6917,7 +6916,7 @@ msgstr ""
#: sw/inc/strings.hrc:835
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
-msgstr " موجود نیست"
+msgstr " تاکنون مطابقت داده نشده "
#. Y6FhG
#: sw/inc/strings.hrc:836
@@ -16527,7 +16526,7 @@ msgstr "نمایه"
#: sw/uiconfig/swriter/ui/indexentry.ui:200
msgctxt "indexentry|new|tooltip_text"
msgid "New User-defined Index"
-msgstr "New User-defined Index"
+msgstr "شاخص جدید تعریف شده توسط کاربر"
#. zTEFk
#: sw/uiconfig/swriter/ui/indexentry.ui:216
@@ -20994,181 +20993,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22226,12 +22225,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "~ویرایش شمارشگر..."
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/fi/cui/messages.po b/source/fi/cui/messages.po
index e169878d478..be6d01d1d9c 100644
--- a/source/fi/cui/messages.po
+++ b/source/fi/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-17 20:35+0000\n"
-"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
+"Last-Translator: Julia Väre <juliavaere@gmail.com>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/fi/>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564954460.000000\n"
#. GyY9M
@@ -2108,7 +2108,7 @@ msgstr "%PRODUCTNAME tarjoaa erilaisia käyttöliittymävaihtoehtoja, jotta tunt
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
-msgstr ""
+msgstr "Lisäämällä tekstikehyksiä tai osioita Writerissa, pystyt sallimaan muutosten teon vain tiettyihin kirjoitussuojatun asiakirjan osiin."
#. BDEBo
#. local help missing
@@ -20920,60 +20920,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Valitse mieleisesi käyttöliittymä"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Yksirivinen"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Sivupalkki"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "Välilehdellinen"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "Tiivis välilehdellinen"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Tiivis ryhmäpalkki"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Ryhmäpalkki"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Tiivis ryhmäpalkki"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Kontekstisidonnainen yksirivinen"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Kontekstisidonnaiset ryhmät"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Yksirivinen"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Sivupalkki"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/fi/helpcontent2/source/text/sbasic/shared.po b/source/fi/helpcontent2/source/text/sbasic/shared.po
index 7985f337df5..a08cae25af7 100644
--- a/source/fi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fi/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/fi/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540152935.000000\n"
#. yzYVt
@@ -12819,50 +12819,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Luodaan uusi kansio tietovälineelle."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "Creates a new directory on a data medium."
+msgstr "Luodaan uusi kansio tietovälineelle."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir teksti1 As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Teksti1:</emph> merkkijonolauseke, joka määrittää luotavan kansion nimen ja polun. Voidaan käyttää myös <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-esitysmuotoa</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12873,15 +12864,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Jos polkua ei määritetä, hakemisto luodaan nykyiseen kansioon."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13143,14 +13125,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Poistetaan kansio tietovälineeltä."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13161,15 +13143,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir teksti1 As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13188,15 +13161,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Jos polkua ei ole määrätty, <emph>RmDir-lause</emph> etsii poistettavaa kansiota nykyisestä polusta. Jos kansiota ei löydy, saadaan virheilmoitus."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24609,23 +24573,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Pysäyttää Basic-ohjelman ajon."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24861,41 +24816,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "With-lause asettaa objektin oletusobjektiksi. Ellei toista objektin nimeä esitellä, kaikki ominaisuudet ja metodit viittaavat oletusobjektiin, kunnes End With -lause saavutetaan."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Käytä <emph>With</emph> ... <emph>End With</emph> -rakennetta, jos yhdellä objektilla on useita ominaisuuksia ja metodeja ohjelmassasi."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34104,23 +34068,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Beep-lause tuottaa äänen tietokoneen kaiuttimeen. Ääni riippuu käytettävästä järjestelmästä eikä sen voimakkuutta tai korkeutta voi muokata."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/fi/helpcontent2/source/text/scalc/00.po b/source/fi/helpcontent2/source/text/scalc/00.po
index 572dc222868..ec6e7f4bf1e 100644
--- a/source/fi/helpcontent2/source/text/scalc/00.po
+++ b/source/fi/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/fi/helpcontent2/source/text/scalc/guide.po b/source/fi/helpcontent2/source/text/scalc/guide.po
index 147ad87d722..0f4f5fdb203 100644
--- a/source/fi/helpcontent2/source/text/scalc/guide.po
+++ b/source/fi/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/fi/>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Yhtäaikaiseen vaaka- ja pystylukitukseen valitse <emph>solu</emph>, joka on lukittavan alueen ala- ja oikealla puolella."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Kun tulostetaan tietty rivi kaikille asiakirjan sivuille, valitaan <emph>Muotoilu - Tulostusalueet - Muokkaa</emph>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/fi/helpcontent2/source/text/sdraw/01.po b/source/fi/helpcontent2/source/text/sdraw/01.po
index d1e5a37d73f..0a7d6e20cf2 100644
--- a/source/fi/helpcontent2/source/text/sdraw/01.po
+++ b/source/fi/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 22:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/fi/helpcontent2/source/text/shared.po b/source/fi/helpcontent2/source/text/shared.po
index 2a2c63aa106..bbc8ecb7041 100644
--- a/source/fi/helpcontent2/source/text/shared.po
+++ b/source/fi/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-10-28 19:35+0000\n"
+"PO-Revision-Date: 2020-11-24 16:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared/fi/>\n"
"Language: fi\n"
@@ -2030,7 +2030,7 @@ msgctxt ""
"hd_id3154944\n"
"help.text"
msgid "Line Spacing: 1"
-msgstr ""
+msgstr "Riviväli: 1"
#. xxnjH
#: submenu_spacing.xhp
@@ -2039,7 +2039,7 @@ msgctxt ""
"hd_id3146969\n"
"help.text"
msgid "Line Spacing: 1.5"
-msgstr ""
+msgstr "Riviväli: 1,5"
#. acjb4
#: submenu_spacing.xhp
@@ -2048,7 +2048,7 @@ msgctxt ""
"hd_id3153711\n"
"help.text"
msgid "Line Spacing: 2"
-msgstr ""
+msgstr "Riviväli: 2"
#. 44Px9
#: submenu_spacing.xhp
@@ -2156,7 +2156,7 @@ msgctxt ""
"hd_id893328657433073\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id0123200902243376\">Overline</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id0123200902243376\">Ylleviivaus</link>"
#. U9h8v
#: submenu_text.xhp
@@ -2174,7 +2174,7 @@ msgctxt ""
"hd_id773632078996899\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3163714\">Shadow</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3163714\">Varjo</link>"
#. hMRVP
#: submenu_text.xhp
@@ -2192,7 +2192,7 @@ msgctxt ""
"hd_id207025326941609\n"
"help.text"
msgid "Wrap Text"
-msgstr ""
+msgstr "Rivitä teksti"
#. jBc2E
#: submenu_text.xhp
@@ -2264,7 +2264,7 @@ msgctxt ""
"hd_id172462591626807\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">UPPERCASE</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">ISOT KIRJAIMET</link>"
#. sjNg6
#: submenu_text.xhp
@@ -2282,7 +2282,7 @@ msgctxt ""
"hd_id935919548287354\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">lowercase</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">pienet kirjaimet</link>"
#. ijGEm
#: submenu_text.xhp
@@ -2354,7 +2354,7 @@ msgctxt ""
"hd_id3147521\n"
"help.text"
msgid "tOGGLE cASE"
-msgstr ""
+msgstr "vAIHDA kIRJAINKOKOA"
#. eb5K9
#: submenu_text.xhp
@@ -2372,7 +2372,7 @@ msgctxt ""
"hd_id342778277179117\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Kapiteelit</link>"
#. K6tXB
#: submenu_text.xhp
@@ -2390,7 +2390,7 @@ msgctxt ""
"hd_id442778277179117\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Kapiteelit</link>"
#. arEu2
#: submenu_text.xhp
@@ -2408,7 +2408,7 @@ msgctxt ""
"hd_id542778277179117\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Kapiteelit</link>"
#. okCcu
#: submenu_text.xhp
@@ -2462,7 +2462,7 @@ msgctxt ""
"hd_id3152996\n"
"help.text"
msgid "Hiragana"
-msgstr ""
+msgstr "HIragana"
#. AB6ta
#: submenu_text.xhp
@@ -2480,7 +2480,7 @@ msgctxt ""
"hd_id3154173\n"
"help.text"
msgid "Katakana"
-msgstr ""
+msgstr "Katakana"
#. QSxUp
#: submenu_text.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/01.po b/source/fi/helpcontent2/source/text/shared/01.po
index e5b250c8d63..8bc60acd6d5 100644
--- a/source/fi/helpcontent2/source/text/shared/01.po
+++ b/source/fi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/fi/>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/fi/helpcontent2/source/text/shared/05.po b/source/fi/helpcontent2/source/text/shared/05.po
index fd2c96aef8a..627699e53de 100644
--- a/source/fi/helpcontent2/source/text/shared/05.po
+++ b/source/fi/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-11-20 06:55+0000\n"
+"PO-Revision-Date: 2020-11-24 16:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared05/fi/>\n"
"Language: fi\n"
@@ -1161,7 +1161,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Contents - The Main Help Topics"
-msgstr "Sisältö - ohjeiden pääaiheet"
+msgstr "Sisältö – ohjeiden pääaiheet"
#. y5FLx
#: 00000160.xhp
@@ -1602,7 +1602,7 @@ msgctxt ""
"par_id961534889672410\n"
"help.text"
msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+D</emph> on most browsers."
-msgstr ""
+msgstr "Paina <switchinline select=\"sys\"> <caseinline select=\"MAC\"><emph>Komento</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+D</emph> (useimmissa selaimissa)."
#. a2wcp
#: new_help.xhp
@@ -1701,7 +1701,7 @@ msgctxt ""
"par_idN10930\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+C</emph>."
-msgstr ""
+msgstr "Paina <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Komento</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+C</emph>."
#. 7atTn
#: new_help.xhp
@@ -1755,7 +1755,7 @@ msgctxt ""
"par_idN10A36\n"
"help.text"
msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph>."
-msgstr ""
+msgstr "Voit myös painaa <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Komento</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph>."
#. TFYKC
#: new_help.xhp
@@ -1773,7 +1773,7 @@ msgctxt ""
"par_idN10A48\n"
"help.text"
msgid "Select the search options that you want to use."
-msgstr ""
+msgstr "Valitse haluamasi hakuasetukset."
#. GixFD
#: new_help.xhp
@@ -1782,7 +1782,7 @@ msgctxt ""
"par_idN10A26\n"
"help.text"
msgid "Press <emph>Enter</emph>."
-msgstr ""
+msgstr "Paina <emph>Enter</emph>."
#. 5DUch
#: new_help.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/guide.po b/source/fi/helpcontent2/source/text/shared/guide.po
index 10b9f9f1e85..ac2622b9f54 100644
--- a/source/fi/helpcontent2/source/text/shared/guide.po
+++ b/source/fi/helpcontent2/source/text/shared/guide.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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-06 12:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/fi/>\n"
"Language: fi\n"
@@ -50,7 +50,7 @@ msgctxt ""
"hd_id3156211\n"
"help.text"
msgid "How to simplify your work using samples and templates"
-msgstr "Työ helpottaminen esimerkkejä ja malleja käyttäen"
+msgstr "Työn helpottaminen esimerkkejä ja malleja käyttäen"
#. JuNfE
#: aaa_start.xhp
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"%PRODUCTNAME-ohjelmiston käyttö\"><item type=\"productname\">%PRODUCTNAME</item>-ohjelmiston käyttö</link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Virheraporttityökalu"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>virheraporttityökalu</bookmark_value><bookmark_value>raportit;virheen raportointi</bookmark_value><bookmark_value>kaatumisraportit</bookmark_value><bookmark_value>käyttöönotto;virheraporttityökalu</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Virheraporttityökalu</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Virheen raportointityökalu käynnistyy samalla, kun ohjelma kaatuu."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Virheraporttityökalu kerää tarpeellisia tietoja, jotka auttavat ohjelman kehittäjiä koodin parantamisessa, niin että myöhemmät ohjelmaversiot mahdollisesti välttävät nyt ilmenneen virheen. Käyttäjänä voit auttaa ohjelman kehittämisessä lähettämällä tuotetun virheraportin."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Virheraporttityökalun käynnistäminen"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Useimmissa tapauksissa ohjelman kaatuessa virheen raportointityökalu käynnistyy samalla."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Raportin viimeistely"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Virheraporttityökalun päävalintaikkunassa käyttäjä voi syöttää eräitä lisätietoja, jotka voivat auttaa kehittäjiä virheen paikallistamisessa. Esimerkiksi, jos virhe ilmenee vain laitteiston tai ohjelmistoympäristön muuttamisen jälkeen, tai jos napsautettiin jotain painiketta, tiedot näistä ovat hyödyllisiä."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Virheraportin lähettäminen"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Virheraporttityökalu käyttää HTTP PUT / SOAP -käytäntöä raportin lähettämisessä. Käyttäjä voi lisätä valinnaisen kuvailevan tekstin, joka auttaa ohjelman kaatumistilanteen tunnistamisessa. Napsautetaan sitten <emph>Lähetä</emph>-painiketta."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Virheraporttiin ei tule ohjeistavaa vastausta. Mikäli käyttäjä tarvitsee tukea, käytettävissä on <link href=\"text/shared/main0108.xhp\">tukifoorumit</link> Internetissä."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Lähetettävä aineisto"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Virheraportti sisältää useita tiedostoja. Päätiedostossa on tietoja virheen tyypistä, käyttöjärjestelmän nimestä ja versiosta, muistin käytöstä ja käyttäjän kirjoittama kuvaus. Käyttäjä voi napsauttaa <emph>Näytä raportti</emph> -painiketta virheraporttityökalun päävalintaikkunassa ja katsoa, mitä päätiedostossa lähetetään."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Tämän lisäksi asiaa koskeva muistin sisältö ja aliohjelmakutsupino kerätään joillakin järjestelmän vakiotyökaluilla (\"dbhhelp.dll\" Windows-järjestelmissä, \"pstack\" UNIX-järjestelmissä). Myös nämä tiedot lähetetään."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Kullekin lähetettävälle faksille pitää luoda oma tulostustyönsä. Muuten ensimmäinen vastaanottaja saa kaikki faksiviestit. Valitaan <emph>Työkalut - Joukkokirje</emph> -valintaikkunassa <emph>Tulostin</emph>-asetus ja valitaan sitten <emph>Yksittäiset tulostustyöt</emph> -valintaruutu."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Oletusmallien vaihtaminen"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>muuttaminen, katso vaihtaminen</bookmark_value><bookmark_value>vaihtaminen, katso myös muokkaaminen ja korvaaminen</bookmark_value><bookmark_value>oletusmallit; vaihtaminen</bookmark_value><bookmark_value>oletukset;asiakirjat</bookmark_value><bookmark_value>mukautetut mallit</bookmark_value><bookmark_value>päivittäminen; mallit</bookmark_value><bookmark_value>muokkaaminen;mallit</bookmark_value><bookmark_value>mallit;muokkaus ja tallennus</bookmark_value><bookmark_value>tallentaminen;mallit</bookmark_value><bookmark_value>palauttaminen;mallit</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Oletusmallien vaihtaminen\">Oletusmallien vaihtaminen</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Kun avataan uusia asiakirja <emph>Tiedosto - Uusi</emph> -komennolla, $[officename]-malliin perustuva tyhjä asiakirja tulee esille. Tätä mallia voi muokata, muuttaa tai sen voi korvata, niin että uudessa asiakirjassa on tyylit tai muu sisältö mukautettu."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Oletusmallien muokkaaminen"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Ensimmäiseksi avataan joko olemassa oleva $[officename]-malli ja muutetaan sitä tai avataan uusi asiakirja ja muokataan sitä uuden mallin luomiseen tarvittavalla tavalla."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Kullekin $[officename]-sovellukselle voidaan määrittää oma asiakirjamallinsa. Seuraavassa kuvaillaan toiminta tekstiasiakirjojen tapauksessa."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Valitaan <emph>Tiedosto - Uusi - Mallit</emph>"
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Valitse <emph>Aseta oletusmalliksi</emph>. Seuraavan kerran avattaessa uutta asiakirjaa se perustuu tähän uuteen oletusmalliin."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. GuEWL
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Mukautettujen mallien käyttö"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. Quf5G
+#. 3w93A
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id51605476162735\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Työtä voidaan helpottaa lukuisin tavoin käyttämällä mukautettuja malleja."
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. S8XFP
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Mallit mallikansiossa"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Mallipohjan av aamiseksi muokkaamista varten valitaan <emph>Tiedosto - Uusi - Mallit</emph>, valitaan malli ja napsautetaan <emph>Muokkaa</emph>-painiketta."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/fi/helpcontent2/source/text/shared/optionen.po b/source/fi/helpcontent2/source/text/shared/optionen.po
index 7267c6348f0..29d4b15f30b 100644
--- a/source/fi/helpcontent2/source/text/shared/optionen.po
+++ b/source/fi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-23 11:48+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/fi/>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "Näytä"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Näyttöfontin viivojen pehmennys"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Valinta silottaa tekstin ulkonäköä näytöllä.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Annetaan pienin fonttikoko, jolle käytetään reunan pehmennystä.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Grafiikkatuloste"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Painamalla Vaihto+Ctrl+R palautetaan tai päivitetään käsiteltävän asiakirjan näkymä.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Painamalla Vaihto+Ctrl+R palautetaan tai päivitetään käsiteltävän asiakirjan näkymä.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Grafiikan reunan pehmennys voidaan ottaa käyttöön tai poistaa käytöstä, mikäli ominaisuus on tuettu. Kun reunan tai viivan pehmennys on käytössä, useimpien graafisten objektien esitys on sileämpi ja vääristymiä on vähemmän.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Valikko"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Näyttöfontin viivojen pehmennys"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Valinta silottaa tekstin ulkonäköä näytöllä.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Annetaan pienin fonttikoko, jolle käytetään reunan pehmennystä.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/swriter/guide.po b/source/fi/helpcontent2/source/text/swriter/guide.po
index 2e005c2f490..15e4525d124 100644
--- a/source/fi/helpcontent2/source/text/swriter/guide.po
+++ b/source/fi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/fi/>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Ellei toisin määrätä, kaikki $[officename]- tekstiasiakirjat pohjautuvat oletusmalliin."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename]ssa on lukuisia <link href=\"text/swriter/01/05130000.xhp\" name=\"esimääritellyt mallit\">esimääriteltyjä malleja</link>, joita voidaan käyttää luotaessa erityyppisiä asiakirjoja, kuten liikekirjeitä."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Napsauta <item type=\"menuitem\">Työkalut</item>-palkissa <item type=\"menuitem\">Suora kohdistin</item> -kuvaketta <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Suora kohdistin -kuvake, jossa I-palkki ja keltainen tausta</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Napsauta tekstiasiakirjaan sen vapaassa tilassa. Hiiren osoittimen muutokset kuvastavat käyttöön tulevaa kirjoitettavan tekstin kohdistusta:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Tasaus vasemmalle -kuvake, jossa kolmio kärki vasemmalle ja pystyviiva</alt></image> Tasaus vasemmalle"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Keskitetty-kuvake, jossa pystyviivan molemmin puolin kolmiot</alt></image> Keskitetty"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Tasaus oikealle -kuvake, jossa pystyviiva ja kolmio kärki oikealle</alt></image> Tasaus oikealle"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/fi/officecfg/registry/data/org/openoffice/Office.po b/source/fi/officecfg/registry/data/org/openoffice/Office.po
index df67a177cd1..13fd1bdf498 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office.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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-09-30 15:35+0000\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/fi/>\n"
"Language: fi\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564951649.000000\n"
#. HhMVS
@@ -1634,7 +1634,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Email (96 DPI): minimize document size for sharing"
-msgstr ""
+msgstr "Sähköposti (96 DPI): minimoi asiakirjan koko jakamista varten"
#. mzFCD
#: PresentationMinimizer.xcu
@@ -1724,7 +1724,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Resume"
-msgstr ""
+msgstr "Jatka"
#. PhNCc
#: PresenterScreen.xcu
@@ -1734,7 +1734,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Resume"
-msgstr ""
+msgstr "Jatka"
#. 9xLAe
#: PresenterScreen.xcu
@@ -1774,7 +1774,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Exit"
-msgstr ""
+msgstr "Poistu"
#. DghaJ
#: PresenterScreen.xcu
diff --git a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
index 293b88fa541..bcf83a39205 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-29 14:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fi/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Piilota dia"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Teks~ti..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25510,25 +25510,25 @@ msgctxt ""
msgid "~File"
msgstr "~Tiedosto"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Tasaa"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Tasaa"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31101,15 +31101,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Valitse kappaleen loppuun"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Valitse sanan oikeaan reunaan"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/fi/sc/messages.po b/source/fi/sc/messages.po
index c59062c0006..e1456917ee0 100644
--- a/source/fi/sc/messages.po
+++ b/source/fi/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-20 16:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/fi/>\n"
"Language: fi\n"
@@ -1469,31 +1469,31 @@ msgstr "Dif-tiedostojen tuonti"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Oletus"
#. TG9pD
#: sc/inc/globstr.hrc:273
msgctxt "STR_STYLENAME_HEADING"
msgid "Heading"
-msgstr ""
+msgstr "Otsikko"
#. NM7R3
#: sc/inc/globstr.hrc:274
msgctxt "STR_STYLENAME_HEADING_1"
msgid "Heading 1"
-msgstr ""
+msgstr "Otsikko 1"
#. 8XF63
#: sc/inc/globstr.hrc:275
msgctxt "STR_STYLENAME_HEADING_2"
msgid "Heading 2"
-msgstr ""
+msgstr "Otsikko 2"
#. WBuWS
#: sc/inc/globstr.hrc:276
msgctxt "STR_STYLENAME_TEXT"
msgid "Text"
-msgstr ""
+msgstr "Teksti"
#. tMJaD
#: sc/inc/globstr.hrc:277
@@ -1505,13 +1505,13 @@ msgstr ""
#: sc/inc/globstr.hrc:278
msgctxt "STR_STYLENAME_FOOTNOTE"
msgid "Footnote"
-msgstr ""
+msgstr "Alaviite"
#. 2hk6H
#: sc/inc/globstr.hrc:279
msgctxt "STR_STYLENAME_HYPERLINK"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hyperlinkki"
#. aeksB
#: sc/inc/globstr.hrc:280
@@ -1523,31 +1523,31 @@ msgstr ""
#: sc/inc/globstr.hrc:281
msgctxt "STR_STYLENAME_GOOD"
msgid "Good"
-msgstr ""
+msgstr "Hyvä"
#. Ebk8F
#: sc/inc/globstr.hrc:282
msgctxt "STR_STYLENAME_NEUTRAL"
msgid "Neutral"
-msgstr ""
+msgstr "Neutraali"
#. FdWhD
#: sc/inc/globstr.hrc:283
msgctxt "STR_STYLENAME_BAD"
msgid "Bad"
-msgstr ""
+msgstr "Huono"
#. t6f8W
#: sc/inc/globstr.hrc:284
msgctxt "STR_STYLENAME_WARNING"
msgid "Warning"
-msgstr ""
+msgstr "Varoitus"
#. 99BgJ
#: sc/inc/globstr.hrc:285
msgctxt "STR_STYLENAME_ERROR"
msgid "Error"
-msgstr ""
+msgstr "Virhe"
#. yGAVF
#: sc/inc/globstr.hrc:286
@@ -2583,7 +2583,7 @@ msgstr "Nimi ei kelpaa. Se on jo käytössä valitussa kohteessa."
#: sc/inc/globstr.hrc:447
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Start with a letter, use only letters, numbers and underscore."
-msgstr ""
+msgstr "Nimi ei kelpaa. Aloita kirjaimella ja käytä vain kirjaimia, numeroita ja alaviivaa."
#. owW4Y
#: sc/inc/globstr.hrc:448
@@ -24594,215 +24594,215 @@ msgid "~File"
msgstr "~Tiedosto"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Määritä reunat valituille soluille."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Lisää sisennystä"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Vähennä sisennystä"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Koti"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Koti"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "K_enttä"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Lisää"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Lisää"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektin tasaus"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Asettelu"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Asettelu"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "Tilastotiede"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
#, fuzzy
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
#, fuzzy
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Ta_rkista"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Ta~rkista"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Näytä"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Näytä"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Kuva"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ku~va"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Piirrä"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Piirrä"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Muunna"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekti"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Tulosta"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Tulosta"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Lomak_e"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Lomak~e"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Lisäosa"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Lisäosa"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ty_ökalut"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29631,338 +29631,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Ratkaisin"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "A_setukset..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "Ratkaise"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Kohdesolu"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimoi tulosta"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Muuttamalla soluja"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minimi"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Enintään"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "Solun arvoon"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Solu"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "Operaattori"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Arvo"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Soluviite"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Soluviite"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Soluviite"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Soluviite"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Kokonaisluku"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binääri"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operaattori"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Kokonaisluku"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binääri"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operaattori"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Kokonaisluku"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binääri"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operaattori"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Kokonaisluku"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binääri"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operaattori"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Arvo"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Arvo"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Arvo"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Arvo"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Poista"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Poista"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Poista"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Poista"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Reunaehdot"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/fi/sd/messages.po b/source/fi/sd/messages.po
index 2ff803b38f6..af1c97f1512 100644
--- a/source/fi/sd/messages.po
+++ b/source/fi/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-13 15:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/fi/>\n"
"Language: fi\n"
@@ -3366,7 +3366,7 @@ msgstr "Korostus"
#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8
msgctxt "drawpagedialog|DrawPageDialog"
msgid "Page Properties"
-msgstr ""
+msgstr "Sivun ominaisuudet"
#. Py4db
#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136
@@ -3827,116 +3827,116 @@ msgstr "T~aulukko"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Muunna"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ku_va"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Kuva"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Piirrä"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Piirrä"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekti"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekti"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Lomak_e"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Lomak~e"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3D"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3D"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Pohja"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Pohja"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Lisäosa"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Lisäosa"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "T_yökalut"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "T~yökalut"
@@ -4340,12 +4340,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Valikko"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Lisäosa"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6578,219 +6572,219 @@ msgid "~File"
msgstr "~Tiedosto"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Koti"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Koti"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Kenttä"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Lisää"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Lisää"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Asettelu"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Asettelu"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Diaesitys"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Diaesitys"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Ta_rkista"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Ta~rkista"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Näytä"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Näytä"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "T_aulukko"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "T~aulukko"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Muunna"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ku_va"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Kuva"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Piirrä"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Piirrä"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekti"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekti"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Lomak_e"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Lomak~e"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Pohja"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Pohja"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Näytä"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Jäsennys"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Lisäosa"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Lisäosa"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "T_yökalut"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "T~yökalut"
@@ -7700,12 +7694,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Muokkaa ääriviivaa"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Lisäosa"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/fi/sfx2/messages.po b/source/fi/sfx2/messages.po
index a0f3860b91f..c6c92b6509e 100644
--- a/source/fi/sfx2/messages.po
+++ b/source/fi/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-29 14:35+0000\n"
+"PO-Revision-Date: 2020-11-23 20:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/fi/>\n"
"Language: fi\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564247041.000000\n"
#. bHbFE
@@ -4124,19 +4124,19 @@ msgstr "Poista..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Kiinnitä"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Irrota"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Sulje sivupalkki"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
@@ -4154,7 +4154,7 @@ msgstr ""
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Sivupalkin asetukset"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/fi/starmath/messages.po b/source/fi/starmath/messages.po
index 55ce71d26fa..cddb7c16fca 100644
--- a/source/fi/starmath/messages.po
+++ b/source/fi/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-09-08 17:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/fi/>\n"
"Language: fi\n"
@@ -1407,7 +1407,7 @@ msgstr ""
#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Väri fuksia"
#. em3aA
#: starmath/inc/strings.hrc:197
@@ -1473,13 +1473,13 @@ msgstr "Väri RGB"
#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Väri RGBA"
#. UxFDW
#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
-msgstr ""
+msgstr "Väri heksadesimaali"
#. MGdCv
#: starmath/inc/strings.hrc:209
@@ -1503,13 +1503,13 @@ msgstr ""
#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
-msgstr ""
+msgstr "Väri violetti"
#. Qivdb
#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
-msgstr ""
+msgstr "Väri oranssi"
#. CVygm
#: starmath/inc/strings.hrc:214
@@ -2169,7 +2169,7 @@ msgstr "Pythagoraan lause"
#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Taylorin sarja"
#. MuqjR
#: starmath/inc/strings.hrc:325
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
@@ -2205,13 +2205,13 @@ msgstr ""
#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Newtonin toinen laki"
#. ZmaUU
#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Yleinen suhteellisuusteoria"
#. ADBy9
#: starmath/inc/strings.hrc:332
@@ -2271,7 +2271,7 @@ msgstr ""
#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "fuksia"
#. fZKES
#: starmath/inc/strings.hrc:343
@@ -2349,13 +2349,13 @@ msgstr ""
#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
-msgstr ""
+msgstr "violetti"
#. sF9zc
#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
-msgstr ""
+msgstr "oranssi"
#. CXMyK
#: starmath/inc/strings.hrc:357
@@ -2403,13 +2403,13 @@ msgstr "rgb"
#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "heksa"
#. CCpNs
#: starmath/inc/strings.hrc:366
diff --git a/source/fi/svx/messages.po b/source/fi/svx/messages.po
index 66d41135b0c..08eb91f8cb2 100644
--- a/source/fi/svx/messages.po
+++ b/source/fi/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-07 06:36+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/fi/>\n"
"Language: fi\n"
@@ -5277,7 +5277,7 @@ msgstr ""
#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
-msgstr ""
+msgstr "Katkoviiva"
#. T7sVF
#: include/svx/strings.hrc:923
@@ -7236,11 +7236,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Sovita dia nykyiseen ikkunaan."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Kaikkien SmartArt-objektien lataaminen ei onnistunut. Ongelman voi välttää tallentamalla Microsoft Office 2010 tai myöhempien tiedostomuotoon."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13964,17 +13964,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Siirtymistyökalurivi"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Virheraportin lähettäminen onnistui.\n"
-"Raportin tiedot ovat pian luettavissa osoitteessa\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -14000,11 +13997,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Lähetä virheraportti"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Älä lähetä"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -19014,7 +19011,7 @@ msgstr "Säde:"
#: svx/uiconfig/ui/sidebareffect.ui:210
msgctxt "sidebarsoftedge|softedge"
msgid "Soft Edge"
-msgstr ""
+msgstr "Pehmeä reuna"
#. BEqw7
#: svx/uiconfig/ui/sidebarempty.ui:26
diff --git a/source/fi/sw/messages.po b/source/fi/sw/messages.po
index 915df5fc1dc..a10792de8d0 100644
--- a/source/fi/sw/messages.po
+++ b/source/fi/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-07 06:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-11-23 20:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/fi/>\n"
"Language: fi\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -4161,7 +4161,7 @@ msgstr ""
#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
-msgstr ""
+msgstr "Merkintä"
#. cT6YY
#: sw/inc/strings.hrc:374
@@ -5752,7 +5752,7 @@ msgstr ""
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Vaihda sisällön näkyvyyttä napsauttamalla"
#. 44jEc
#: sw/inc/strings.hrc:647
@@ -5764,7 +5764,7 @@ msgstr ""
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Vaihda sisällön näkyvyyttä napsauttamalla"
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -17452,7 +17452,7 @@ msgstr "Annetaan taulukkoon tulevien rivien lukumäärä."
#: sw/uiconfig/swriter/ui/inserttable.ui:245
msgctxt "inserttable|lbwarning"
msgid "Warning : Large tables may adversely affect performance and compatibility"
-msgstr ""
+msgstr "Varoitus: suuret taulukot voivat haitata suorityskykyä ja yhteensopivuutta"
#. M2tGB
#: sw/uiconfig/swriter/ui/inserttable.ui:261
@@ -20062,7 +20062,7 @@ msgstr "Vuorotellaan perusasiakirja- ja normaalinäkymää, jos perusasiakirja o
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
-msgstr ""
+msgstr "Siirry sivulle"
#. avLGA
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
@@ -20371,181 +20371,181 @@ msgid "~File"
msgstr "~Tiedosto"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Koti"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Koti"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Lisää"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Lisää"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Asettelu"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Asettelu"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Viittaukset"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Viittauk~set"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Ta_rkista"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Ta~rkista"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Näytä"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Näytä"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tau_lukko"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Tau~lukko"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ku_va"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ku~va"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Piirrä"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Piirrä"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekti"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekti"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Tul_osta"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Tul_osta"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Lomak_e"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Lomak~e"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Lisäosa"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Lisäosa"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ty_ökalut"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ty~ökalut"
@@ -21583,12 +21583,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Muokkaa ääriviivaa"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Lisäosa"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
@@ -23698,7 +23692,7 @@ msgstr "Sama sisältö:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Marginaalit:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23788,7 +23782,7 @@ msgstr "Sama sisältö:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Marginaalit:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
diff --git a/source/fr/cui/messages.po b/source/fr/cui/messages.po
index 2130e94939d..ae33ca081e2 100644
--- a/source/fr/cui/messages.po
+++ b/source/fr/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: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-20 07:13+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-11-26 16:35+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562576624.000000\n"
#. GyY9M
@@ -17323,7 +17323,7 @@ msgstr "_Automatique"
#: cui/uiconfig/ui/paraindentspacing.ui:167
msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text"
msgid "Indent paragraph automatically according to font size and line spacing."
-msgstr ""
+msgstr "Mettre le paragraphe en retrait automatiquement en fonction de la taille de la police et de l'espacement des lignes."
#. L9iw7
#: cui/uiconfig/ui/paraindentspacing.ui:218
@@ -17353,7 +17353,7 @@ msgstr "Sous le _paragraphe :"
#: cui/uiconfig/ui/paraindentspacing.ui:331
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Do not add space between paragraphs of the same style"
-msgstr ""
+msgstr "Ne pas ajouter d'espace entre les paragraphes de même style"
#. hWQWQ
#: cui/uiconfig/ui/paraindentspacing.ui:353
@@ -17413,20 +17413,20 @@ msgstr "de"
#: cui/uiconfig/ui/paraindentspacing.ui:479
msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "Activate page li_ne-spacing"
-msgstr ""
+msgstr "Activer l'interligne de page"
#. uesRM
#. xdds
#: cui/uiconfig/ui/paraindentspacing.ui:482
msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text"
msgid "Applies page line-spacing (register-true) if set for the Page Style."
-msgstr ""
+msgstr "Applique l'interligne de page (contrôle de repérage) s'il est défini pour le style de la page."
#. MwL9j
#: cui/uiconfig/ui/paraindentspacing.ui:488
msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER"
msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
-msgstr ""
+msgstr "Si l'interligne de page est activé et que le style de page utilise l'interligne de page, alors ce paragraphe s'alignera sur une grille verticale invisible, quelle que soit la taille de la police, de sorte que chaque ligne aura la même hauteur."
#. GxJB6
#: cui/uiconfig/ui/paraindentspacing.ui:506
@@ -17652,7 +17652,6 @@ msgstr "Insère le contenu du presse-papiers dans le fichier actif dans un forma
#. WiEC6
#: cui/uiconfig/ui/patterntabpage.ui:75
-#, fuzzy
msgctxt "patterntabpage|extended_tip|BTN_ADD"
msgid "Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button."
msgstr "Ajoute un motif personnalisé à la liste active. Spécifiez les propriété du motif et cliquez sur ce bouton."
@@ -18207,7 +18206,7 @@ msgstr "www.libreoffice.org"
#: cui/uiconfig/ui/qrcodegen.ui:121
msgctxt "qr text"
msgid "The text from which to generate the QR code."
-msgstr ""
+msgstr "Le texte à partir duquel le code QR est généré."
#. PFE57
#. Text to be stored in the QR
@@ -18234,7 +18233,7 @@ msgstr "Correction d'erreur :"
#: cui/uiconfig/ui/qrcodegen.ui:202
msgctxt "edit border"
msgid "The width in dots of the border surrounding the QR code."
-msgstr ""
+msgstr "La largeur en points de la bordure entourant le QR code."
#. vUJPT
#: cui/uiconfig/ui/qrcodegen.ui:219
@@ -18246,7 +18245,7 @@ msgstr "Faible"
#: cui/uiconfig/ui/qrcodegen.ui:232
msgctxt "button_low"
msgid "7% of codewords can be restored."
-msgstr ""
+msgstr "7 % des codes peuvent être restaurés."
#. 2gaf5
#: cui/uiconfig/ui/qrcodegen.ui:243
@@ -18258,7 +18257,7 @@ msgstr "Moyenne"
#: cui/uiconfig/ui/qrcodegen.ui:257
msgctxt "button_medium"
msgid "15% of codewords can be restored."
-msgstr ""
+msgstr "15 % des codes peuvent être restaurés."
#. GBf3R
#: cui/uiconfig/ui/qrcodegen.ui:268
@@ -18270,7 +18269,7 @@ msgstr "Quartile"
#: cui/uiconfig/ui/qrcodegen.ui:282
msgctxt "button_quartile"
msgid "25% of codewords can be restored."
-msgstr ""
+msgstr "25 % des codes peuvent être restaurés."
#. WS3ER
#: cui/uiconfig/ui/qrcodegen.ui:293
@@ -18282,7 +18281,7 @@ msgstr "Forte"
#: cui/uiconfig/ui/qrcodegen.ui:307
msgctxt "button_high"
msgid "30% of codewords can be restored."
-msgstr ""
+msgstr "30 % des codes peuvent être restaurés."
#. VCCGD
#: cui/uiconfig/ui/qrcodegen.ui:330
@@ -18294,7 +18293,7 @@ msgstr "Options"
#: cui/uiconfig/ui/qrcodegen.ui:361
msgctxt "qr code dialog title"
msgid "Generate QR Code for any text or URL."
-msgstr ""
+msgstr "Génère un QR code pour n'importe quel texte ou URL."
#. 3HNDZ
#: cui/uiconfig/ui/querychangelineenddialog.ui:7
@@ -18918,7 +18917,7 @@ msgstr "A_jouter..."
#: cui/uiconfig/ui/selectpathdialog.ui:135
msgctxt "cui/ui/selectpathdialog/add"
msgid "Opens the Select Path dialog to select another folder or the Open dialog to select another file."
-msgstr ""
+msgstr "Ouvre la boîte de dialogue Sélectionner un chemin pour sélectionner un autre dossier ou la boîte de dialogue Ouvrir pour sélectionner un autre fichier."
#. WKcRy
#: cui/uiconfig/ui/selectpathdialog.ui:154
@@ -18930,7 +18929,7 @@ msgstr "Supprime le ou les éléments sélectionnés sans demande de confirmatio
#: cui/uiconfig/ui/selectpathdialog.ui:202
msgctxt "cui/ui/selectpathdialog/paths"
msgid "Contains a list of the paths that have already been added. Mark the default path for new files."
-msgstr ""
+msgstr "Contient une liste des chemins qui ont déjà été ajoutés. Marquez le chemin par défaut pour les nouveaux fichiers."
#. oADTt
#: cui/uiconfig/ui/selectpathdialog.ui:221
@@ -18990,7 +18989,7 @@ msgstr "_Couleur :"
#: cui/uiconfig/ui/shadowtabpage.ui:211
msgctxt "shadowtabpage|FT_SHADOW_BLUR"
msgid "_Blur:"
-msgstr ""
+msgstr "_Flou :"
#. DMAGP
#: cui/uiconfig/ui/shadowtabpage.ui:225
@@ -19048,14 +19047,9 @@ msgstr "Jean Dupont"
#. F8khU
#: cui/uiconfig/ui/signatureline.ui:116
-#, fuzzy
msgctxt "signatureline|extended_tip|edit_name"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Saisissez votre nom comme signataire du document. Votre nom sera inséré au-dessus de la ligne horizontale de signature.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Saisissez votre nom comme signataire du document. Votre nom est inséré au-dessus de la ligne horizontale de signature.</ahelp>"
+msgstr "Saisissez votre nom comme signataire du document. Votre nom sera inséré au-dessus de la ligne horizontale de signature."
#. bMy9F
#: cui/uiconfig/ui/signatureline.ui:131
@@ -19065,14 +19059,9 @@ msgstr "Directeur"
#. BfTFx
#: cui/uiconfig/ui/signatureline.ui:134
-#, fuzzy
msgctxt "signatureline|extended_tip|edit_title"
msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Saisissez le titre du signataire. Le titre est affiché dans la zone graphique de la ligne de signature.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Saisissez le titre du signataire. Le titre est affiché dans la zone graphique de la ligne de signature.</ahelp>"
+msgstr "Saisissez le titre du signataire. Le titre est affiché dans la zone graphique de la ligne de signature."
#. 3SKcg
#: cui/uiconfig/ui/signatureline.ui:149
@@ -19121,14 +19110,9 @@ msgstr "Le signataire peut ajouter des commentaires"
#. Gonpf
#: cui/uiconfig/ui/signatureline.ui:255
-#, fuzzy
msgctxt "signatureline|extended_tip|checkbox_can_add_comments"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Permet au signataire d'insérer des commentaires dans la boîte de dialogue Signer la ligne de signature au moment de la signature.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Permettre au signataire d'insérer des commentaires dans la boîte de dialogue Signer la ligne de signature au moment de la signature.</ahelp>"
+msgstr "Permet au signataire d'insérer des commentaires dans la boîte de dialogue Signer Ligne de signature au moment de la signature."
#. BPMGM
#: cui/uiconfig/ui/signatureline.ui:266
@@ -19138,14 +19122,9 @@ msgstr "Afficher la date de signature dans la ligne de signature"
#. QnaFT
#: cui/uiconfig/ui/signatureline.ui:275
-#, fuzzy
msgctxt "signatureline|extended_tip|checkbox_show_sign_date"
msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Marquez cette case à cocher pour afficher la date de la signature au moment ou le document est numériquement signé.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Cochez cette case pour afficher la date de la signature au moment où le document est signé numériquement.</ahelp>"
+msgstr "Cochez cette case pour afficher la date de la signature au moment où le document est numériquement signé."
#. fSsbq
#: cui/uiconfig/ui/signatureline.ui:289
@@ -19155,14 +19134,9 @@ msgstr "Instructions pour le signataire :"
#. AdqtN
#: cui/uiconfig/ui/signatureline.ui:314
-#, fuzzy
msgctxt "signatureline|extended_tip|edit_instructions"
msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Insérez les instructions pour le signataire. Les instructions apparaissent dans la boîte de dialogue Signer la ligne de signature, au moment de la signature.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Insérez des instructions pour le signataire. Les instructions apparaissent dans la boîte de dialogue Signer la ligne de signature, au moment de la signature.</ahelp>"
+msgstr "Insérez les instructions pour le signataire. Les instructions apparaissent dans la boîte de dialogue Signer Ligne de signature, au moment de la signature."
#. jqCPH
#: cui/uiconfig/ui/signatureline.ui:333
@@ -19190,14 +19164,9 @@ msgstr "Saisissez votre nom ici"
#. XNvhh
#: cui/uiconfig/ui/signsignatureline.ui:115
-#, fuzzy
msgctxt "signsignatureline|extended_tip|edit_name"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Saisissez votre nom comme signataire du document. Votre nom sera inséré au-dessus de la ligne horizontale de signature.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Saisissez votre nom comme signataire du document. Votre nom est inséré au-dessus de la ligne horizontale de signature.</ahelp>"
+msgstr "Saisissez votre nom comme signataire du document. Votre nom sera inséré au-dessus de la ligne horizontale de signature."
#. dgTR9
#. Name of the signer
@@ -19221,14 +19190,9 @@ msgstr "Sélectionner le certificat"
#. uJ9EC
#: cui/uiconfig/ui/signsignatureline.ui:160
-#, fuzzy
msgctxt "signsignatureline|extended_tip|btn_select_certificate"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Cliquez sur le bouton Sélectionner un certificat pour ouvrir la boîte de dialogue Sélectionner un certificat, où vos certificats sont listés. Sélectionnez un certificat permettant de signer le document.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Cliquez sur le bouton Sélectionner un certificat pour ouvrir la boîte de dialogue Sélectionner un certificat, dans laquelle les certificats sont listés. Sélectionnez le certificat qui convient pour signer les document.</ahelp>"
+msgstr "Cliquez sur le bouton Sélectionner un certificat pour ouvrir la boîte de dialogue Sélectionner un certificat, où vos certificats sont listés. Sélectionnez un certificat permettant de signer le document."
#. 3vSAS
#. Name of the signer
@@ -19269,14 +19233,9 @@ msgstr "Ajouter un commentaire :"
#. CJAg3
#: cui/uiconfig/ui/signsignatureline.ui:309
-#, fuzzy
msgctxt "signsignatureline|extended_tip|edit_comment"
msgid "Enter comments about the signature. The comments are displayed in the Description field of the certificate."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Saisissez les commentaires à propos de la signature. Les commentaires sont affichés dans le champ <emph>Description</emph> du certificat.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Saisissez des commentaires à propos de la signature. Les commentaires sont affiché dans le champ <emph>Description</emph> du certificat.</ahelp>"
+msgstr "Saisissez les commentaires à propos de la signature. Les commentaires sont affichés dans le champ Description du certificat."
#. k4PqT
#: cui/uiconfig/ui/signsignatureline.ui:325
@@ -19286,14 +19245,9 @@ msgstr "Instructions du créateur du document :"
#. J8MFU
#: cui/uiconfig/ui/signsignatureline.ui:346
-#, fuzzy
msgctxt "signsignatureline|extended_tip|label_hint_text"
msgid "This area displays the instructions entered by the document creator when adding the signature line."
-msgstr ""
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Cette zone affiche les instructions saisies par le créateur du document lors de <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">l'ajout de la ligne de signature</link>.</ahelp>\n"
-"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
-"<ahelp hid=\".\">Cette zone affiche les instructions saisies par le créateur du document lors de l'<link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">ajout d'une ligne de signature</link>.</ahelp>"
+msgstr "Cette zone affiche les instructions saisies par le créateur du document lors de l'ajout de la ligne de signature."
#. kVoG9
#: cui/uiconfig/ui/signsignatureline.ui:363
@@ -19371,7 +19325,7 @@ msgstr "_X:"
#: cui/uiconfig/ui/slantcornertabpage.ui:92
msgctxt "slantcornertabpage|extended_tip|controlx1"
msgid "Enter the X coordinate of the control point 1"
-msgstr ""
+msgstr "Saisissez la coordonnée X du point de contrôle 1"
#. CkJx5
#: cui/uiconfig/ui/slantcornertabpage.ui:117
@@ -19383,7 +19337,7 @@ msgstr "_Y:"
#: cui/uiconfig/ui/slantcornertabpage.ui:137
msgctxt "slantcornertabpage|extended_tip|controly1"
msgid "Enter the Y coordinate of the control point 1"
-msgstr ""
+msgstr "Saisissez la coordonnée Y du point de contrôle 1"
#. gpixF
#: cui/uiconfig/ui/slantcornertabpage.ui:161
@@ -19437,7 +19391,7 @@ msgstr "_X:"
#: cui/uiconfig/ui/slantcornertabpage.ui:365
msgctxt "slantcornertabpage|extended_tip|controlx2"
msgid "Enter the X coordinate of the control point 2"
-msgstr ""
+msgstr "Saisissez la coordonnée X du point de contrôle 2"
#. 3EL7K
#: cui/uiconfig/ui/slantcornertabpage.ui:390
@@ -19449,7 +19403,7 @@ msgstr "_Y:"
#: cui/uiconfig/ui/slantcornertabpage.ui:410
msgctxt "slantcornertabpage|extended_tip|controly2"
msgid "Enter the Y coordinate of the control point 2"
-msgstr ""
+msgstr "Saisissez la coordonnée Y du point de contrôle 2"
#. FzWQs
#: cui/uiconfig/ui/slantcornertabpage.ui:434
@@ -20133,7 +20087,7 @@ msgstr "Inverse les paramètres d'alignement horizontal actuels sur les pages pa
#: cui/uiconfig/ui/swpossizepage.ui:587
msgctxt "swpossizepage|followtextflow"
msgid "Keep inside te_xt boundaries"
-msgstr ""
+msgstr "Conserver à l'intérieur des limites du te_xte"
#. zfpt5
#: cui/uiconfig/ui/swpossizepage.ui:597
@@ -20943,73 +20897,85 @@ msgstr "Lien"
#: cui/uiconfig/ui/toolbarmodedialog.ui:13
msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
+msgstr "Sélectionnez votre interface utilisateur préférée"
+
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
-msgstr ""
-
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
+msgstr "Barre d'outils standard"
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
-msgstr ""
+msgstr "Onglets"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
-msgstr ""
-
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Onglets compacts"
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barre groupée"
+
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Barre groupée compacte"
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
-msgstr ""
+msgstr "Contextuel compact"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
-msgstr ""
+msgstr "Groupes contextuels"
+
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Barre d'outils unique"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Volet latéral"
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
-msgstr ""
+msgstr "Les types d'interface utilisateur"
#. H7m7J
#: cui/uiconfig/ui/toolbarmodedialog.ui:366
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
-msgstr ""
+msgstr "Aperçu"
#. WChLB
#: cui/uiconfig/ui/transparencytabpage.ui:78
diff --git a/source/fr/helpcontent2/source/text/sbasic/shared.po b/source/fr/helpcontent2/source/text/sbasic/shared.po
index 3563f12be34..bb2d43e1a00 100644
--- a/source/fr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fr/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-18 18:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/fr/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562340649.000000\n"
@@ -12817,50 +12817,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">Instruction MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Crée un nouveau répertoire sur un média de données."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
+msgid "Creates a new directory on a data medium."
+msgstr "Crée un nouveau répertoire sur un média de données."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text :</emph> expression au format chaîne de caractères indiquant le nom et le chemin du répertoire à créer. Vous pouvez également utiliser la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notation URL\">notation URL</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12871,15 +12862,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Si le chemin n'est pas déterminé, le répertoire est créé dans le répertoire actif."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple :"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13141,14 +13123,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Supprime un répertoire existant d'un média de données."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13159,15 +13141,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13186,15 +13159,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Si le chemin n'est pas spécifié, l'<emph>instruction RmDir</emph> recherche le répertoire à supprimer dans le chemin actif. Si le répertoire est introuvable dans ce chemin, un message d'erreur s'affiche."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple :"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24607,23 +24571,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Arrête l'exécution du programme Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemple :"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24859,41 +24814,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">Instruction With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Définit un objet comme l'objet par défaut. Si aucun autre nom d'objet n'est déclaré, toutes les propriétés et méthodes font référence à l'objet par défaut jusqu'à ce que l'instruction End With soit atteinte."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Utilisez <emph>With</emph> et <emph>End With</emph> si plusieurs propriétés ou méthodes s'appliquent à un seul objet."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34102,23 +34066,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Émet un son par le haut-parleur de l'ordinateur. Ce son varie selon le système, et vous ne pouvez modifier ni son volume ni sa hauteur tonale."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemple :"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/fr/helpcontent2/source/text/scalc/00.po b/source/fr/helpcontent2/source/text/scalc/00.po
index daddac2a8f3..22a6ae673c1 100644
--- a/source/fr/helpcontent2/source/text/scalc/00.po
+++ b/source/fr/helpcontent2/source/text/scalc/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-20 15:02+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/fr/>\n"
"Language: fr\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Choisissez <item type=\"menuitem\">Affichage - Scinder la fenêtre</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Choisissez <item type=\"menuitem\">Affichage - Fixer les cellules - Fixer les lignes et les colonnes</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr "<variable id=\"fefix\">Choisissez <item type=\"menuitem\">Affichage - Fixer les lignes et les colonnes</item>.</variable>"
#. BkQfX
#: 00000412.xhp
diff --git a/source/fr/helpcontent2/source/text/scalc/guide.po b/source/fr/helpcontent2/source/text/scalc/guide.po
index d74d026d815..611892e3142 100644
--- a/source/fr/helpcontent2/source/text/scalc/guide.po
+++ b/source/fr/helpcontent2/source/text/scalc/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: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-11-21 15:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/fr/>\n"
"Language: fr\n"
@@ -7550,23 +7550,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Pour fixer la zone à la fois horizontalement et verticalement, sélectionnez la <emph>cellule</emph> située sous la ligne et à droite de la colonne à fixer."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Choisissez <item type=\"menuitem\">Affichage - Fixer les cellules - Fixer les lignes et les colonnes</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr "Choisissez <item type=\"menuitem\">Affichage - Fixer les lignes et les colonnes</item>."
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Pour le désactiver, choisissez de nouveau <item type=\"menuitem\">Affichage - Fixer les cellules - Fixer les lignes et les colonnes</item>."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr "Pour le désactiver, choisissez <item type=\"menuitem\">Affichage - Fixer les lignes et les colonnes</item> de nouveau."
#. U7GBK
#: line_fix.xhp
@@ -7586,14 +7586,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Pour imprimer une ligne précise sur toutes les pages d'un document, utilisez la commande <item type=\"menuitem\">Format - Zones d'impression - Éditer</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Affichage - Fixer les cellules - Fixer les lignes et les colonnes</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Affichage - Fixer les lignes et les colonnes</link>"
#. RbKLt
#: line_fix.xhp
diff --git a/source/fr/helpcontent2/source/text/sdraw/01.po b/source/fr/helpcontent2/source/text/sdraw/01.po
index 2f74683c070..1476a70e1e1 100644
--- a/source/fr/helpcontent2/source/text/sdraw/01.po
+++ b/source/fr/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-07 15:47+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/fr/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Définit l'orientation de la page, les marges, l'arrière-plan et d'autres options de mise en page.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Pour modifier l'arrière-plan de toutes les pages du fichier actif, sélectionnez un arrière-plan, cliquez sur <emph>OK</emph>, puis sur <emph>Oui</emph> dans la boîte de dialogue <emph>Paramètres de page</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/00.po b/source/fr/helpcontent2/source/text/shared/00.po
index c53b7d34a45..834f9accd6d 100644
--- a/source/fr/helpcontent2/source/text/shared/00.po
+++ b/source/fr/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-09-18 18:35+0000\n"
+"PO-Revision-Date: 2020-12-04 13:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1563716506.000000\n"
@@ -2121,7 +2121,7 @@ msgctxt ""
"par_id3151176\n"
"help.text"
msgid "Enable CTL support using <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>."
-msgstr ""
+msgstr "Activez la prise en charge des scripts complexes par <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Préférences</menuitem></caseinline><defaultinline><menuitem>Outils - Options</menuitem></defaultinline></switchinline><menuitem> - Paramètres linguistiques - Langues</menuitem>."
#. AP8vJ
#: 00000005.xhp
@@ -2193,7 +2193,7 @@ msgctxt ""
"par_id3147287\n"
"help.text"
msgid "You can remove direct formatting from your document by selecting the entire text with the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode> and then choosing <menuitem>Format - Clear Direct Formatting</menuitem>."
-msgstr ""
+msgstr "Vous pouvez supprimer le formatage direct du document en sélectionnant l'intégralité du document avec les raccourcis clavier <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode> et en choisissant <menuitem>Format - Effacer le formatage direct</menuitem>."
#. aUcVk
#: 00000005.xhp
@@ -2229,7 +2229,7 @@ msgctxt ""
"par_id3147233\n"
"help.text"
msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key.</variable>"
-msgstr ""
+msgstr "<variable id=\"andock2\">Pour détacher et fixer de nouveau la fenêtre, tout en appuyant sur la touche <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, double cliquez sur un espace libre dans la fenêtre. Dans la fenêtre Styles, vous pouvez également cliquer sur une partie grise de la fenêtre près des icônes, tout en appuyant sur la touche <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>.</variable>"
#. MCMsr
#: 00000005.xhp
@@ -2409,7 +2409,7 @@ msgctxt ""
"par_id3150092\n"
"help.text"
msgid "The <menuitem>Links to External Files</menuitem> command is found in the <menuitem>Edit</menuitem> menu. The command can only be activated when at least one link is contained in the current document. When you insert a picture, for example, you can either insert the picture directly into the document or insert the picture as a link."
-msgstr ""
+msgstr "La commande <menuitem>Liens vers des fichiers externes</menuitem> se trouve dans le menu <menuitem>Édition</menuitem>. La commande n'est activée que lorsque le document contient au moins un lien. Lorsque vous insérez un objet, une image par exemple, vous pouvez soit le copier directement dans le document, soit l'insérer sous forme de lien."
#. ePu6N
#: 00000005.xhp
@@ -2436,7 +2436,7 @@ msgctxt ""
"par_id3153334\n"
"help.text"
msgid "Use <menuitem>Edit - Links to External Files</menuitem> to see which files are inserted as links. The links can be removed if required. This will break the link and insert the object directly."
-msgstr ""
+msgstr "Pour visualiser les fichiers liés à votre document, choisissez <menuitem>Édition - Liens vers des fichiers externes</menuitem>. Ces liens peuvent être supprimés si nécessaire. Cela cassera le lien et l'objet sera inséré directement."
#. 6TLPo
#: 00000005.xhp
@@ -2526,7 +2526,7 @@ msgctxt ""
"par_id3153956\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The 32bit ODBC functions required here can be installed on your system at any time with the help of the setup program supplied with your database. You can then amend the properties through the Control Panel.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Vous pouvez installer à tout moment sur votre système les fonctions ODBC 32 bits requises ici, grâce au programme d'installation fourni avec votre base de données. Vous pouvez ensuite modifier les propriétés via le panneau de configuration.</caseinline></switchinline>"
#. fEdsV
#: 00000005.xhp
@@ -2670,7 +2670,7 @@ msgctxt ""
"bm_id3147315\n"
"help.text"
msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Contrôle de repérage;définition</bookmark_value><bookmark_value>Espacement des lignes de la page;définition</bookmark_value>"
#. ygQrE
#: 00000005.xhp
@@ -2679,7 +2679,7 @@ msgctxt ""
"hd_id551604189872115\n"
"help.text"
msgid "Page line-spacing (register-true)"
-msgstr ""
+msgstr "Espacement des lignes des la page (contrôle de repérage)"
#. yspD9
#: 00000005.xhp
@@ -2688,7 +2688,7 @@ msgctxt ""
"par_id3145230\n"
"help.text"
msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
-msgstr ""
+msgstr "Dans %PRODUCTNAME, la fonction de contrôle de repérage est appelée <emph>Espacement des lignes de la page</emph>."
#. WxQBJ
#: 00000005.xhp
@@ -2697,7 +2697,7 @@ msgctxt ""
"par_id3154223\n"
"help.text"
msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
-msgstr ""
+msgstr "L'espacement des lignes de la page fait référence à l'empreinte coïncidente des lignes dans une zone de texte au recto et au verso d'une page. La fonction d'espacement des lignes de page facilite la lecture d'une page en empêchant les ombres grises de briller entre les lignes de texte. Le terme d'espacement des lignes de page fait également référence aux lignes dans les colonnes de texte adjacentes, où les lignes dans différentes colonnes utilisent la même grille verticale, les alignant ainsi verticalement les unes avec les autres."
#. BNJUC
#: 00000005.xhp
@@ -2706,7 +2706,7 @@ msgctxt ""
"par_id761604345191168\n"
"help.text"
msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
-msgstr ""
+msgstr "L'impression de l'interligne des pages est particulièrement utile pour les documents dont deux pages sont placées l'une à côté de l'autre (par exemple, dans un livre ou une brochure), pour les mises en page à plusieurs colonnes et pour les documents destinés à l'impression recto verso."
#. Es2pF
#: 00000005.xhp
@@ -2742,7 +2742,7 @@ msgctxt ""
"par_id3146919\n"
"help.text"
msgid "In various dialogs (for example, <menuitem>Tools - AutoText</menuitem>) you can select whether you want to save files relatively or absolutely."
-msgstr ""
+msgstr "Dans différentes boîtes de dialogue (par exemple <menuitem>Outils - AutoTexte</menuitem>) vous pouvez sélectionner si vous souhaitez enregistrer les fichiers de façon relative ou absolue."
#. vUiBY
#: 00000005.xhp
@@ -6099,7 +6099,7 @@ msgctxt ""
"par_id3154812\n"
"help.text"
msgid "Choose <menuitem>File - New</menuitem>."
-msgstr ""
+msgstr "Choisissez <menuitem>Fichier - Nouveau</menuitem>."
#. 4rLdL
#: 00000401.xhp
@@ -6117,7 +6117,7 @@ msgctxt ""
"par_id3150127\n"
"help.text"
msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156053\">Icon New</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156053\">Icône Nouveau</alt></image>"
#. ED9Aa
#: 00000401.xhp
@@ -6135,7 +6135,7 @@ msgctxt ""
"par_id3154894\n"
"help.text"
msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+N</keycode>"
-msgstr ""
+msgstr "Touches <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+N</keycode>"
#. TkkUE
#: 00000401.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/01.po b/source/fr/helpcontent2/source/text/shared/01.po
index 461d323cdcc..447142aa1f2 100644
--- a/source/fr/helpcontent2/source/text/shared/01.po
+++ b/source/fr/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-18 18:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/fr/>\n"
@@ -8000,14 +8000,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "Le caractère représenté par le code Unicode hexadécimal à huit chiffres (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "Pour certaines polices de symboles, le code Unicode pour les caractères spéciaux peut dépendre de la police utilisée. Les codes Unicode peuvent être consultés en choisissant <menuitem> Insérer - Caractère spécial </menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/guide.po b/source/fr/helpcontent2/source/text/shared/guide.po
index f627280e354..d5027c6e2cf 100644
--- a/source/fr/helpcontent2/source/text/shared/guide.po
+++ b/source/fr/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/fr/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1559312645.000000\n"
@@ -98,6 +98,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Utilisation de %PRODUCTNAME\">Utilisation de <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3527,15 +3536,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Document HTML"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3779,24 +3779,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "Texte OpenDocument (XML plat)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Document texte OpenOffice.org 1.0"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Document texte OpenOffice.org 1.0"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3806,24 +3788,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Document texte OpenOffice.org 1.0"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3878,24 +3842,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "T602 Document"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Texte"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Texte"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5165,15 +5111,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "Filtres pour GRAPHICFILTER"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5201,15 +5138,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD Interchange Format"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF - Enhanced Meta File"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5219,15 +5147,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF - Enhanced Meta File"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Encapsulated PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5237,15 +5156,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Encapsulated PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr "GIF - Graphics Interchange"
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5255,24 +5165,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr "GIF - Graphics Interchange"
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5291,24 +5183,6 @@ msgctxt ""
msgid "text/html"
msgstr "text/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5318,15 +5192,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET - OS/2 Metafile"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5345,15 +5210,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - Format de fichier QuickTime"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5390,15 +5246,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr "PCD - Photo CD Base4"
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT - Mac Pict"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5417,15 +5264,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Portable Graymap"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5435,33 +5273,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5471,15 +5282,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network Graphic"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Portable Pixelmap"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5498,15 +5300,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Sun Raster Image"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5516,33 +5309,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Image"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5570,15 +5336,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - Scalable Vector Graphics Draw"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr "SVM - StarView Meta File"
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5597,15 +5354,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF - Tagged Image File Format"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5615,15 +5363,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Windows Metafile"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5642,15 +5381,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitmap"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10718,149 +10448,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr "Dans le cas où vous souhaitez envoyer un courriel à un destinataire qui possède un logiciel qui ne peut pas lire le format OpenDocument, vous pouvez envoyer le document actif dans un format propriétaire souvent utilisé.<br/>Pour un document texte, choisissez <item type=\"menuitem\">Fichier - Envoyer - Envoyer par courriel sous forme de document Word</item>. Pour une feuille de calcul, choisissez <item type=\"menuitem\">Fichier - Envoyer - Envoyer par courriel sous forme de document Excel</item>. Et pour une présentation, choisissez <item type=\"menuitem\">Fichier - Envoyer - Envoyer par courriel comme document PowerPoint</item>. <br/>Si vous souhaitez envoyer le document comme fichier en lecture seule, choisissez <item type=\"menuitem\">Fichier - Envoyer - Envoyer par courriel en PDF</item>.<br/>Ces commandes ne modifient pas le document actif. Seule une copie temporaire est créée et envoyée."
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Outil Rapport d'erreur"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Outils de rapport d'erreurs</bookmark_value><bookmark_value>Rapports;rapport d'erreurs</bookmark_value><bookmark_value>Rapports d'arrêt brutal</bookmark_value><bookmark_value>Activation;outil de rapport d'erreurs</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Outil de rapport d'erreur\">Outil de rapport d'erreur</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "L'outil Rapport d'erreur démarre automatiquement lorsqu'une panne brutale apparaît."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "L'outil de rapport d'erreur recueille toutes les informations susceptibles d'aider les développeurs du programme à améliorer le code, de manière à éviter cette erreur dans les versions ultérieures. Aidez-nous à améliorer le logiciel : n'hésitez pas à nous communiquer le rapport d'erreur obtenu."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Démarrage de l'outil de rapport d'erreur"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Avec la plupart des pannes brutales du programme, l'outil Rapport d'erreur démarre automatiquement."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Finalisation du rapport"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Vous pouvez saisir des informations supplémentaires dans la boîte de dialogue Outil de rapport d'erreur. Cela peut aider les développeurs à localiser les erreurs. Par exemple, si l'erreur ne survient qu'après une modification de votre environnement matériel ou logiciel, ou après un clic sur un bouton, il est utile de nous en informer."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Envoi du rapport d'erreur"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "L'outil de rapport d'erreur utilise le protocole HTTP PUT / SOAP pour envoyer les données du rapport. Vous pouvez saisir un texte descriptif susceptible de nous aider à identifier le contexte de l'arrêt brutal du programme. Cliquez ensuite sur le bouton <emph>Envoyer</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Vous n'obtiendrez pas de réponse à votre rapport d'erreur. Si vous avez besoin d'assistance, consultez notre <link href=\"text/shared/main0108.xhp\">forum de support</link> sur Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
-msgstr "Vous pouvez choisir de répondre à des questions des développeurs à propos des erreurs signalées. Activez la case à cocher si vous voulez être contacté par courriel en cas de besoin d'informations supplémentaires. Cette case à cocher étant désactivée par défaut, vous ne recevrez pas de courriel de notre part."
+msgid "What Data are Sent?"
+msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Données envoyées"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Le rapport d'erreur se compose de plusieurs fichiers. Le fichier principal contient des informations sur le type d'erreur, le nom et la version du système d'exploitation, l'utilisation de la mémoire et la description saisie dans le rapport. Vous pouvez cliquer sur le bouton <emph>Afficher le rapport</emph> dans la boîte de dialogue principale de l'outil de rapport d'erreur pour afficher les éléments qui seront envoyés dans le fichier principal."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "De plus, certains outils système standard (\"dbhhelp.dll\" sous Windows, \"pstack\" sous UNIX) recueillent des informations contenues dans la mémoire et des traces de piles pertinentes. Ces informations seront également envoyées."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22076,32 +21797,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "N'oubliez pas de créer un travail d'impression distinct pour chaque fax, faute de quoi le premier destinataire recevra tous les fax. Dans la boîte de dialogue <emph>Fusion et publipostage</emph>, sélectionnez l'option <emph>Imprimante</emph> et activez la case à cocher <emph>Travaux d'impression individuels</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Modification des modèles par défaut"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>Modification, voir aussi changement</bookmark_value><bookmark_value>Changement, voir aussi édition et remplacement</bookmark_value><bookmark_value>Modèles par défaut;modification</bookmark_value><bookmark_value>Par défaut;documents</bookmark_value><bookmark_value>Modèles personnalisés</bookmark_value><bookmark_value>Actualisation;modèles</bookmark_value><bookmark_value>Édition;modèles</bookmark_value><bookmark_value>Modèles;édition et enregistrement</bookmark_value><bookmark_value>Enregistrement;modèles</bookmark_value><bookmark_value>Réinitialisation;modèles</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Modification d'un modèle par défaut\">Modification d'un modèle par défaut</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22112,113 +21833,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Lorsque vous ouvrez un nouveau document via le menu <emph>Fichier - Nouveau</emph>, un document vide fondé sur un modèle de document $[officename] s'ouvre. Vous pouvez éditer, modifier ou bien remplacer ce modèle, de manière à obtenir un document avec des Styles ou des contenus personnalisés lors de l'ouverture d'un nouveau document."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modification du modèle par défaut"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Ouvrez tout d'abord un modèle $[officename] existant pour l'éditer, ou ouvrez un nouveau document et éditez-le pour créer le modèle souhaité."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Vous pouvez définir un modèle de document pour chaque module $[officename]. La rubrique suivante décrit la procédure à suivre pour les documents texte."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Enregistrez le document en choisissant <emph>Fichier - Modèles - Enregistrer comme modèle</emph> et en enregistrant le document dans la catégorie <emph>Mes modèles</emph>."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Choisissez <emph>Fichier - Nouveau - Modèles</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Double cliquez sur <emph>Mes Modèles</emph> dans la liste. Vous verrez les modèles définis par l'utilisateur dans le répertoire utilisateur spécifié sous <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Chemins</emph>. Sélectionnez le modèle que vous venez d'enregistrer."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Choisissez <emph>Définir par défaut</emph>. La prochaine fois que vous ouvrez un nouveau document texte, le nouveau document sera basé sur le nouveau modèle par défaut."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Utilisation de modèles personnalisés"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "En utilisant vos propres modèles personnalisés, vous vous simplifierez la tâche."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Modèles dans le dossier des modèles"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Vous pouvez enregistrer un nouveau modèle sous <emph>Fichier - Modèles - Enregistrer comme modèle</emph> ou en sélectionnant le type de fichier \"Modèle\" dans n'importe quelle boîte de dialogue d'enregistrement. Enregistrez le modèle dans le répertoire utilisateur spécifié sous <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Chemins</emph> afin de pouvoir accéder au modèle à travers la boîte de dialogue <emph>Fichier - Nouveau - Modèles</emph>."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Pour ouvrir le modèle en édition, choisissez <emph>Fichier - Nouveau - Modèles</emph>, sélectionnez le modèle et cliquez sur le bouton <emph>Éditer</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24254,14 +24101,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Voir <link href=\"text/swriter/guide/templates_styles.xhp\">Modèles et styles</link> pour des informations relatives."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Voir <link href=\"text/swriter/guide/template_create.xhp\">Création d'un modèle de document</link> pour des informations relatives."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/optionen.po b/source/fr/helpcontent2/source/text/shared/optionen.po
index 20ece1bedd6..f6e7a55054a 100644
--- a/source/fr/helpcontent2/source/text/shared/optionen.po
+++ b/source/fr/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/fr/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1559572506.000000\n"
@@ -3428,14 +3428,14 @@ msgctxt ""
msgid "View"
msgstr "Affichage"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>affichage; par défaut</bookmark_value> <bookmark_value>par défaut; affichage</bookmark_value> <bookmark_value>paramètres; affichage</bookmark_value> <bookmark_value>icônes;tailles</bookmark_value> <bookmark_value>icônes; styles</bookmark_value> <bookmark_value>WYSIWYG dans les listes de police</bookmark_value> <bookmark_value>aperçus; listes de polices</bookmark_value> <bookmark_value>listes de polices</bookmark_value> <bookmark_value>case nom de police</bookmark_value> <bookmark_value>souris; positionnement</bookmark_value> <bookmark_value>presse-papiers; presse-papiers de sélection</bookmark_value> <bookmark_value>presse-papiers de sélection</bookmark_value> <bookmark_value>OpenGL;paramètres</bookmark_value> <bookmark_value>OpenGL;liste noire</bookmark_value> <bookmark_value>OpenGL;liste blanche</bookmark_value> <bookmark_value>OpenGL;sortie graphique</bookmark_value> <bookmark_value>métabarre;taille des icônes</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3455,59 +3455,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Spécifie les options d'affichage."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Interface utilisateur"
+msgid "Icon style"
+msgstr "Style d'icône"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Taille des icônes des barres d'outils"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Spécifie le style des icônes des barres d'outils et des boîtes de dialogue.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Indique la taille d'affichage des icônes de la barre d'outils.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">L'option <emph>Automatique</emph> applique aux menus les paramètres de taille de police de votre système d'exploitation.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Taille des icônes du volet latéral"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Spécifie la taille d'affichage des icônes du volet latéral.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Taille des icônes de la métabarre"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3518,50 +3518,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Spécifie la taille d'affichage des icônes de la <link href=\"text/shared/01/notebook_bar.xhp\">métabarre</link>.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Style d'icône"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Spécifie le style des icônes des barres d'outils et des boîtes de dialogue.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Spécifie la taille d'affichage des icônes du volet latéral.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Lisser les polices d'écran"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Sélectionnez cette option pour lisser l'apparence du texte à l'écran.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Indiquez la taille de police la plus petite à laquelle appliquer un lissage.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Affiche les icônes en regard des éléments de menu correspondants. Choisissez entre \"Automatique\", \"Masquer\" et \"Afficher\". \"Automatique\" affiche les icônes en fonction des paramètres système et des thèmes.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3572,14 +3590,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Souris"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Positionnement de la souris"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3590,14 +3608,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Indique si le pointeur de la souris se positionne automatiquement dans les boîtes de dialogue lorsqu'elles s'ouvrent et, le cas échéant, l'endroit auquel il se place.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Bouton du milieu de la souris"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3734,23 +3752,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "La dernière sélection cochée correspond au contenu du presse-papiers de sélection."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Rendu des images"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Pour restaurer ou rafraîchir l'affichage du document actif, appuyez sur Maj+Ctrl+R.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Pour restaurer ou rafraîchir l'affichage du document actif, appuyez sur Maj+Ctrl+R.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3788,68 +3806,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Lorsque pris en charge, vous pouvez activer ou désactiver le lissage des images. Avec le lissage activé, l'affichage de la plupart des objets graphiques parait plus lisse et avec moins d'artefacts.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Utiliser OpenGL pour tous les rendus (après redémarrage)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Utilise la bibliothèque graphique haute performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) pour rendre tous les éléments visuels de l'application, fenêtres, menus, barres d'outils et icônes.</ahelp> OpenGL utilise le processeur graphique de l'ordinateur pour accélérer le rendu graphique. Si le processeur graphique est sur liste noire (voir ci-dessous) cette option est sans effet."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Forcer OpenGL même si en liste noire (après redémarrage)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Force l'utilisation d'OpenGL même si le processeur graphique est sur liste noire.</ahelp> Un processeur est placé sur liste noire quand il est bogué ou rend les graphiques avec piètre qualité."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menu"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Icônes dans les menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Affiche les icônes en regard des éléments de menu correspondants. Choisissez entre \"Automatique\", \"Masquer\" et \"Afficher\". \"Automatique\" affiche les icônes en fonction des paramètres système et des thèmes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3878,6 +3887,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Affiche les noms des polices sélectionnables dans la police correspondante, par exemple dans la zone Police de la barre de <emph>formatage</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Lisser les polices d'écran"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Sélectionnez cette option pour lisser l'apparence du texte à l'écran.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Indiquez la taille de police la plus petite à laquelle appliquer un lissage.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter.po b/source/fr/helpcontent2/source/text/swriter.po
index e14c46b0654..35a84cc8766 100644
--- a/source/fr/helpcontent2/source/text/swriter.po
+++ b/source/fr/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-07-30 22:38+0000\n"
+"PO-Revision-Date: 2020-12-04 13:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1546876370.000000\n"
@@ -672,7 +672,7 @@ msgctxt ""
"par_id102920150120456660\n"
"help.text"
msgid "Opens a dialog box to enter which page number should be shown. (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+G</keycode>)"
-msgstr ""
+msgstr "Ouvre une boîte de dialogue afin de saisir le numéro de page qui doit être affiché (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+G</keycode>)"
#. xFstf
#: main0102.xhp
@@ -681,7 +681,7 @@ msgctxt ""
"hd_id11603124968334\n"
"help.text"
msgid "Comment"
-msgstr ""
+msgstr "Commentaire"
#. LCQEA
#: main0102.xhp
@@ -690,7 +690,7 @@ msgctxt ""
"par_id941603125587454\n"
"help.text"
msgid "Shows submenu that gives options to reply, resolve and delete comments."
-msgstr ""
+msgstr "Affiche un sous-menu qui offre les options de répondre aux commentaires, de les marquer comme résolus ou de les supprimer."
#. DNBDk
#: main0102.xhp
@@ -708,7 +708,7 @@ msgctxt ""
"hd_id0914201501170171\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links to External Files</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Liens vers des fichiers externes</link>"
#. pFCu3
#: main0102.xhp
@@ -1068,7 +1068,7 @@ msgctxt ""
"hd_id551602974854459\n"
"help.text"
msgid "Align"
-msgstr ""
+msgstr "Aligner"
#. 7FD3V
#: main0105.xhp
@@ -1077,7 +1077,7 @@ msgctxt ""
"par_id741602974888780\n"
"help.text"
msgid "Opens a submenu where you can align text and objects."
-msgstr ""
+msgstr "Ouvre un sous-menu dans lequel vous pouvez aligner le texte et les objets."
#. 7iyia
#: main0105.xhp
@@ -1086,7 +1086,7 @@ msgctxt ""
"hd_id951602975070826\n"
"help.text"
msgid "Lists"
-msgstr ""
+msgstr "Listes"
#. SkZuS
#: main0105.xhp
@@ -1095,7 +1095,7 @@ msgctxt ""
"par_id461602975083850\n"
"help.text"
msgid "Opens a submenu where you can modify the structure of numbered and bulleted paragraphs."
-msgstr ""
+msgstr "Ouvre un sous-menu dans lequel vous pouvez modifier la structure des paragraphes contenant des numérotations ou des listes."
#. 5EJHh
#: main0105.xhp
@@ -1131,7 +1131,7 @@ msgctxt ""
"hd_id871602976197055\n"
"help.text"
msgid "Title Page"
-msgstr ""
+msgstr "Page de titre"
#. DyKLQ
#: main0105.xhp
@@ -1140,7 +1140,7 @@ msgctxt ""
"par_id471602976213270\n"
"help.text"
msgid "Opens submenu where you can design a title page."
-msgstr ""
+msgstr "Ouvre un sous-menu dans lequel vous pouvez ébaucher une page de titre."
#. QKypm
#: main0105.xhp
@@ -1149,7 +1149,7 @@ msgctxt ""
"hd_id201602976343046\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Commentaires"
#. ercCs
#: main0105.xhp
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id61602976356685\n"
"help.text"
msgid "When comments are present, the character dialog is presented. Changes to font and font formatting are applied to all comments."
-msgstr ""
+msgstr "Lorsque les commentaires sont présents, la boîte de dialogue de caractères est présentée. Les modifications apportées aux polices et aux formatages de police sont appliquées à tous les commentaires."
#. Sib7N
#: main0105.xhp
@@ -1176,7 +1176,7 @@ msgctxt ""
"hd_id11602979335965\n"
"help.text"
msgid "Watermark"
-msgstr ""
+msgstr "Filigrane"
#. QSMBC
#: main0105.xhp
@@ -1203,7 +1203,7 @@ msgctxt ""
"hd_id881602977324204\n"
"help.text"
msgid "Text Box and Shape"
-msgstr ""
+msgstr "Zone de texte et forme"
#. 5XtDF
#: main0105.xhp
@@ -1212,7 +1212,7 @@ msgctxt ""
"par_id451602977343955\n"
"help.text"
msgid "Opens a submenu to modify, position, shape, line, area, text attributes, and fontwork for a selected textbox or shape."
-msgstr ""
+msgstr "Ouvre un sous-menu permettant de modifier la position, la forme, la ligne, l'arrière-plan, les attributs de texte et les objets Fontwork d'une zone de texte ou d'une forme sélectionnée."
#. FUiBn
#: main0105.xhp
@@ -1221,7 +1221,7 @@ msgctxt ""
"hd_id881602977719329\n"
"help.text"
msgid "Frame and Object"
-msgstr ""
+msgstr "Cadre et objet"
#. hLVBp
#: main0105.xhp
@@ -1230,7 +1230,7 @@ msgctxt ""
"par_id951602977746649\n"
"help.text"
msgid "Opens a submenu to link and unlink frames, and edit properties of a selected frame."
-msgstr ""
+msgstr "Ouvre un sous-menu permettant de lier ou délier des cadres et d'éditer les propriétés d'un cadre sélectionné."
#. JWALC
#: main0105.xhp
@@ -1239,7 +1239,7 @@ msgctxt ""
"hd_id871602978482880\n"
"help.text"
msgid "Rotate or Flip"
-msgstr ""
+msgstr "Pivoter et retourner"
#. BpkEj
#: main0105.xhp
@@ -1248,7 +1248,7 @@ msgctxt ""
"par_id561602978499640\n"
"help.text"
msgid "Opens a submenu where you can rotate or and flip a selected shape or image. Text boxes can only be rotated."
-msgstr ""
+msgstr "Ouvre un sous-menu dans lequel vous pouvez pivoter ou retourner une image ou une forme sélectionnée. Les zones de texte ne peuvent qu'être retournées."
#. r9nLs
#: main0106.xhp
@@ -1329,7 +1329,7 @@ msgctxt ""
"hd_id3156150\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
#. VY3FE
#: main0106.xhp
@@ -2220,7 +2220,7 @@ msgctxt ""
"par_idN10784\n"
"help.text"
msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">Icône de gauche à droite</alt></image>"
#. Xg9vt
#: main0202.xhp
@@ -2247,7 +2247,7 @@ msgctxt ""
"par_idN107DF\n"
"help.text"
msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">Icône de droite à gauche</alt></image>"
#. TMwGp
#: main0202.xhp
@@ -2490,7 +2490,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Status Bar (Writer)"
-msgstr ""
+msgstr "Barre d'état (Writer)"
#. bwSYr
#: main0208.xhp
@@ -2526,7 +2526,7 @@ msgctxt ""
"par_id8193914\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the language for the selected text. Click to open a menu where you can choose another language for the selected text or for the current paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Affiche la langue du texte sélectionné. Cliquez dessus afin d'ouvrir un menu dans lequel vous pouvez choisir une autre langue pour le texte sélectionné ou pour le paragraphe actif.</ahelp>"
#. ADEdD
#: main0208.xhp
@@ -2535,7 +2535,7 @@ msgctxt ""
"par_id221603808238822\n"
"help.text"
msgid "Choose <menuitem>None</menuitem> to exclude the text from spellchecking and hyphenation."
-msgstr ""
+msgstr "Choisissez <menuitem>Aucun</menuitem> pour exclure le texte de la correction orthographique et de la césure."
#. BrkYL
#: main0208.xhp
@@ -2544,7 +2544,7 @@ msgctxt ""
"par_id691603808343437\n"
"help.text"
msgid "Choose <menuitem>Reset to Default Language</menuitem> to re-apply the default language for the selection or the paragraph."
-msgstr ""
+msgstr "Choisissez <menuitem>Réinitialiser la langue par défaut</menuitem> pour appliquer à nouveau la langue par défaut à la sélection ou au paragraphe."
#. YLVnp
#: main0208.xhp
@@ -2553,7 +2553,7 @@ msgctxt ""
"par_id291603808357876\n"
"help.text"
msgid "Choose <menuitem>More</menuitem> to open the character formatting dialog with more options."
-msgstr ""
+msgstr "Choisissez <menuitem>Plus</menuitem> pour ouvrir la boîte de dialogue de formatage des caractères avec des options supplémentaires."
#. zeCHC
#: main0208.xhp
@@ -2571,7 +2571,7 @@ msgctxt ""
"par_id0821200911015941\n"
"help.text"
msgid "Click to start digital signature process. You must have a digital certificate to complete the process. See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
-msgstr ""
+msgstr "Cliquez afin de commencer le processus de signature numérique. Vous devez avoir un certificat numérique pour compléter le processus. Voir également <link href=\"text/shared/guide/digital_signatures.xhp\">Signatures numériques</link>."
#. DqFNG
#: main0208.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter/00.po b/source/fr/helpcontent2/source/text/swriter/00.po
index 9245b1f12b7..d88a9ec3055 100644
--- a/source/fr/helpcontent2/source/text/swriter/00.po
+++ b/source/fr/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-30 22:38+0000\n"
+"PO-Revision-Date: 2020-12-04 13:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter00/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1557848222.000000\n"
@@ -402,7 +402,7 @@ msgctxt ""
"par_id3149502\n"
"help.text"
msgid "<variable id=\"lineal\">Choose <menuitem>View - Rulers - Rulers</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"lineal\">Choisissez <menuitem>Affichage - Règles - Règles</menuitem></variable>"
#. 6RRMA
#: 00000403.xhp
@@ -411,7 +411,7 @@ msgctxt ""
"par_id3148871\n"
"help.text"
msgid "<variable id=\"textbegrenzungen\">Choose <menuitem>View - Text Boundaries</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"textbegrenzungen\">Choisissez <menuitem>Affichage - Délimitations du texte</menuitem> </variable>"
#. nnySY
#: 00000403.xhp
@@ -420,7 +420,7 @@ msgctxt ""
"par_id3153248\n"
"help.text"
msgid "Choose <menuitem>View - Field Shadings</menuitem>"
-msgstr ""
+msgstr "Choisissez <menuitem>Affichage - Trame de fond des champs</menuitem>"
#. JRFUp
#: 00000403.xhp
@@ -429,7 +429,7 @@ msgctxt ""
"par_id3154763\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>"
#. wYngB
#: 00000403.xhp
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3149052\n"
"help.text"
msgid "Choose <menuitem>View - Field Names</menuitem>"
-msgstr ""
+msgstr "Choisissez <menuitem>Affichage - Noms de champs</menuitem>"
#. krDbj
#: 00000403.xhp
@@ -447,7 +447,7 @@ msgctxt ""
"par_id3151387\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F9</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F9</keycode>"
#. VgPmS
#: 00000403.xhp
@@ -456,7 +456,7 @@ msgctxt ""
"par_id3155625\n"
"help.text"
msgid "Choose <menuitem>View - Formatting Marks</menuitem>"
-msgstr ""
+msgstr "Choisissez <menuitem>Affichage - Marques de formatage</menuitem>"
#. ZPf6L
#: 00000403.xhp
@@ -465,7 +465,7 @@ msgctxt ""
"par_id3145823\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F10</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F10</keycode>"
#. jRY7j
#: 00000403.xhp
@@ -501,7 +501,7 @@ msgctxt ""
"par_id3149712\n"
"help.text"
msgid "Choose <menuitem>View - Web</menuitem>"
-msgstr ""
+msgstr "Choisissez <menuitem>Affichage - Web</menuitem>"
#. owBsk
#: 00000403.xhp
@@ -537,7 +537,7 @@ msgctxt ""
"par_id3151176\n"
"help.text"
msgid "Choose <menuitem>View - Normal</menuitem>"
-msgstr ""
+msgstr "Choisissez <menuitem>Affichage - Normal</menuitem>"
#. xjXHF
#: 00000403.xhp
@@ -546,7 +546,7 @@ msgctxt ""
"par_id3149808\n"
"help.text"
msgid "<variable id=\"hidden_para\">Choose <menuitem>View - Hidden Paragraphs</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"hidden_para\">Choisissez <menuitem>Affichage - Paragraphes masqués</menuitem></variable>"
#. yDXA6
#: 00000404.xhp
@@ -573,7 +573,7 @@ msgctxt ""
"par_id3149130\n"
"help.text"
msgid "<variable id=\"ManualBreak\">Choose <menuitem>Insert - More Breaks - Manual Break</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"ManualBreak\">Choisissez <menuitem>Insertion - Plus de sauts - Saut manuel</menuitem></variable>"
#. qv3kV
#: 00000404.xhp
@@ -582,7 +582,7 @@ msgctxt ""
"par_id281601655468613\n"
"help.text"
msgid "<variable id=\"morebreaks\">Choose <menuitem>Insert - More Breaks</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"morebreaks\">Choisissez <menuitem>Insertion - Plus de sauts</menuitem></variable>"
#. HX3xL
#: 00000404.xhp
@@ -825,7 +825,7 @@ msgctxt ""
"par_id3154197\n"
"help.text"
msgid "<variable id=\"sectionindents\">Choose <menuitem>Insert > Section > Indents</menuitem> tab or choose <menuitem>Format > Sections</menuitem> - <widget>Options</widget> button - <emph>Indents</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"sectionindents\">Choisissez l'onglet <menuitem>Insertion - Section - Retraits</menuitem> ou choisissez <menuitem>Format - Sections</menuitem> - bouton <widget>Options</widget> - <emph>Retraits</emph></variable>"
#. oCG8Q
#: 00000404.xhp
@@ -1491,7 +1491,7 @@ msgctxt ""
"par_id651578069976376\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>). Right-click any paragraph style. Choose <menuitem>New - Condition</menuitem> tab."
-msgstr ""
+msgstr "Choisissez <menuitem>Affichage - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande + T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>). Faites un clic avec le bouton droit sur n'importe quel style de paragraphe. Choisissez l'onglet <menuitem>Nouveau - Condition</menuitem>."
#. EtKWE
#: 00000405.xhp
@@ -1527,7 +1527,7 @@ msgctxt ""
"par_id51579866880596\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>"
-msgstr ""
+msgstr "Appuyez sur <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>"
#. Bkgcd
#: 00000405.xhp
@@ -1563,7 +1563,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Page Styles - open context menu for selected style - <emph>New/Modify</emph>."
-msgstr ""
+msgstr "Choisissez <menuitem>Affichage - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choisissez Styles de page - ouvrez le menu contextuel du style sélectionné - <emph>Nouveau/modifier</emph>."
#. JW9yE
#: 00000405.xhp
@@ -1617,7 +1617,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - <emph>Page Styles</emph> - open context menu for selected page style - <menuitem>Modify/New - Columns</menuitem> tab."
-msgstr ""
+msgstr "Choisissez <menuitem>Affichage - Styles</menuitem> - <emph>Styles de page</emph> - ouvrez le menu contextuel du style de page sélectionné - onglet <menuitem> Modifier/nouveau - Colonnes</menuitem>."
#. 9sMo7
#: 00000405.xhp
@@ -1644,7 +1644,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <menuitem>Insert - Section - Columns</menuitem> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <menuitem>Insertion - Section - Colonnes</menuitem>."
#. ZCfVD
#: 00000405.xhp
@@ -1653,7 +1653,7 @@ msgctxt ""
"par_id461604680991423\n"
"help.text"
msgid "Choose <menuitem>Format - Section - </menuitem><widget>Options</widget> button - <menuitem>Columns</menuitem> tab."
-msgstr ""
+msgstr "Choisissez <menuitem>Format - Section - </menuitem> bouton <widget>Options</widget> - onglet <menuitem>Colonnes</menuitem>."
#. Gdf8J
#: 00000405.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter/02.po b/source/fr/helpcontent2/source/text/swriter/02.po
index 201442bcc02..4e5b780fbec 100644
--- a/source/fr/helpcontent2/source/text/swriter/02.po
+++ b/source/fr/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-02 22:35+0000\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter02/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1512063046.000000\n"
@@ -2256,7 +2256,7 @@ msgctxt ""
"par_id141599563739504\n"
"help.text"
msgid "Example: COUNT <A2:C2> displays the number of non empty cells in A2 to C2."
-msgstr ""
+msgstr "Exemple : NB <A2:C2> affiche le nombre de cellules non vides de A2 à C2."
#. SJ9rR
#: 14020000.xhp
@@ -2265,7 +2265,7 @@ msgctxt ""
"hd_id3153200\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Fonctions"
#. gRWF7
#: 14020000.xhp
@@ -2274,7 +2274,7 @@ msgctxt ""
"par_id3153226\n"
"help.text"
msgid "<ahelp hid=\".\">You can choose from the following functions:</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vous pouvez choisir les fonctions suivantes :</ahelp>"
#. CYmFE
#: 14020000.xhp
@@ -2283,7 +2283,7 @@ msgctxt ""
"par_id341599524600306\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Fonction"
#. zUhbC
#: 14020000.xhp
@@ -2292,7 +2292,7 @@ msgctxt ""
"par_id521599524600307\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nom"
#. S6FE9
#: 14020000.xhp
@@ -2301,7 +2301,7 @@ msgctxt ""
"par_id831599524616362\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Exemple"
#. HmrvU
#: 14020000.xhp
@@ -2472,7 +2472,7 @@ msgctxt ""
"par_id591599557967519\n"
"help.text"
msgid "Absolute value"
-msgstr ""
+msgstr "Valeur absolue"
#. 2tt8G
#: 14020000.xhp
@@ -2481,7 +2481,7 @@ msgctxt ""
"par_id211593557987787\n"
"help.text"
msgid "Returns the absolute value of the number."
-msgstr ""
+msgstr "Renvoie la valeur absolue du nombre."
#. jYyUX
#: 14020000.xhp
@@ -2490,7 +2490,7 @@ msgctxt ""
"par_id301599563956612\n"
"help.text"
msgid "Example: ABS -34 returns 34"
-msgstr ""
+msgstr "Exemple : ABS -34 renvoie 34"
#. zEe8j
#: 14020000.xhp
@@ -2499,7 +2499,7 @@ msgctxt ""
"par_id591599557963519\n"
"help.text"
msgid "Sign"
-msgstr ""
+msgstr "Signe"
#. 8Y984
#: 14020000.xhp
@@ -2508,7 +2508,7 @@ msgctxt ""
"par_id211599557987787\n"
"help.text"
msgid "Returns the algebraic sign of the number."
-msgstr ""
+msgstr "Renvoie le signe algébrique du nombre."
#. wDJs9
#: 14020000.xhp
@@ -2517,7 +2517,7 @@ msgctxt ""
"par_id941599563922458\n"
"help.text"
msgid "Example: SIGN -23 returns -1"
-msgstr ""
+msgstr "Exemple : SIGNE -23 renvoie -1"
#. sHz7K
#: 14020000.xhp
@@ -2544,7 +2544,7 @@ msgctxt ""
"par_id901599524662588\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nom"
#. vmA7Y
#: 14020000.xhp
@@ -2553,7 +2553,7 @@ msgctxt ""
"par_id741599524662589\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Description"
#. Mehmy
#: 14020000.xhp
@@ -2634,7 +2634,7 @@ msgctxt ""
"par_id981599524696609\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Description"
#. gnbPF
#: 14020000.xhp
@@ -2643,7 +2643,7 @@ msgctxt ""
"par_id101599524696610\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nom"
#. FFwhP
#: 14020000.xhp
@@ -2652,7 +2652,7 @@ msgctxt ""
"par_id731599524730168\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Valeur"
#. 7QQ8G
#: 14020000.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter/guide.po b/source/fr/helpcontent2/source/text/swriter/guide.po
index b6117e70fae..dfc3fe08eac 100644
--- a/source/fr/helpcontent2/source/text/swriter/guide.po
+++ b/source/fr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-17 17:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/fr/>\n"
@@ -12518,13 +12518,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12563,13 +12563,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12590,58 +12590,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12671,13 +12653,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16910,14 +16892,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Si vous ne spécifiez pas un autre modèle, tout document texte créé dans $[officename] se base sur le modèle par défaut."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] fournit plusieurs <link href=\"text/swriter/01/05130000.xhp\" name=\"modèles prédéfinis\">modèles prédéfinis</link> conçus pour vous aider à créer divers types de documents texte, tels que des lettres pour votre correspondance professionnelle."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17270,14 +17252,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Pour définir le comportement du curseur direct, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Aides au formatage</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Dans la barre <item type=\"menuitem\">Outils</item>, cliquez sur l'icône <item type=\"menuitem\">Curseur direct</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icône</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17288,32 +17270,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Cliquez sur une zone libre dans le document texte. Le pointeur de la souris change de forme pour indiquer le type d'alignement qui sera appliqué au texte que vous allez saisir :"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icône</alt></image> Aligner à gauche"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icône</alt></image> Centré"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icône</alt></image> Aligner à droite"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
index ddbceebbe07..f799366a6d8 100644
--- a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-11 20:35+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fr/>\n"
@@ -8027,15 +8027,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Masquer la diapo"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~xte..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25509,25 +25509,25 @@ msgctxt ""
msgid "~File"
msgstr "~Fichier"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Alig~ner"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Alig~ner"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31099,15 +31099,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Sélectionner jusqu'à la fin du paragraphe"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Sélectionner jusqu'au mot à droite"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/fr/sc/messages.po b/source/fr/sc/messages.po
index 6f90e7deec5..5a8f4f77583 100644
--- a/source/fr/sc/messages.po
+++ b/source/fr/sc/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-09-24 16:35+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-26 16:35+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/fr/>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -1469,7 +1469,7 @@ msgstr "Import Dif"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Par défaut"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -24593,213 +24593,213 @@ msgid "~File"
msgstr "~Fichier"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Spécifier les bordures des cellules sélectionnées."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Augmenter le retrait"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Diminuer le retrait"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Origine"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Origine"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Champ"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insérer"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insérer"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Aligner l'objet"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Mise en page"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Mise en page"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistiques"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Données"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Données"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Révision"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Révision"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Afficher"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Afficher"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dessin"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dessin"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objet"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objet"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimer"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimer"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulaire"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulaire"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Outils"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Outils"
@@ -29629,338 +29629,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solveur"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_ptions..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Ouvre la boîte de dialogue Options du solveur."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Résoudre"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Cellule cible"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimiser le résultat à"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Par modification des cellules"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "_Minimum"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Saisissez la plage de cellules qui peut être modifiée."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Ma_ximum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Saisissez la plage de cellules qui peut être modifiée."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Saisissez la plage de cellules qui peut être modifiée."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Saisissez ou cliquez sur la cellule de référence de la cellule cible. Ce champ prend l'adresse de la cellule dont la valeur doit être optimisée."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Valeur de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Saisissez la plage de cellules qui peut être modifiée."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Saisissez la plage de cellules qui peut être modifiée."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Référence de cellule"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Opérateur"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "_Valeur"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Référence de cellule"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Référence de cellule"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Référence de cellule"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Référence de cellule"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Nombre entier"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binaire"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Opérateur"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Nombre entier"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binaire"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Opérateur"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Nombre entier"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binaire"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Opérateur"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Nombre entier"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binaire"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Opérateur"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valeur"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valeur"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valeur"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valeur"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Supprimer"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Supprimer"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Supprimer"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Supprimer"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Conditions de limitation"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Ouvre la boîte de dialogue Solveur. Un solveur vous permet de résoudre des problèmes mathématiques avec des variables inconnues multiples et de définir un ensemble de contraintes sur les variables par les méthodes de valeur cible."
diff --git a/source/fr/sd/messages.po b/source/fr/sd/messages.po
index a3c422020ce..8af3de1a05d 100644
--- a/source/fr/sd/messages.po
+++ b/source/fr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-12 18:33+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/fr/>\n"
@@ -3823,116 +3823,116 @@ msgstr "~Tableau"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dessin"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dessin"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objet"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objet"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulaire"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulaire"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Masque"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Masque"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Outils"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Outils"
@@ -4336,12 +4336,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menu"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtension"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6574,219 +6568,219 @@ msgid "~File"
msgstr "~Fichier"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Origine"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Origine"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Champ"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insérer"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insérer"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Mise en page"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Mise en page"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Diaporama"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Diaporama"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Révision"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Révision"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Afficher"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Affichage"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tableau"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tableau"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dessin"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dessin"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objet"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objet"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulaire"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulaire"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Masque"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Masque"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Affichage"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Plan"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Outils"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Outils"
@@ -7696,12 +7690,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Éditer le contour"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtension"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/fr/starmath/messages.po b/source/fr/starmath/messages.po
index 7c50639088e..ed7c7648882 100644
--- a/source/fr/starmath/messages.po
+++ b/source/fr/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-06-30 19:04+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/fr/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/fr/svx/messages.po b/source/fr/svx/messages.po
index a47ebeb0209..e5cfd2a97b2 100644
--- a/source/fr/svx/messages.po
+++ b/source/fr/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-12 10:34+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/fr/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Adapter la diapo à la fenêtre active"
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Impossible de charger tous les SmartArts. Enregistrer en Microsoft Office 2010 ou suivant permettrait de résoudre ce problème."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13959,17 +13959,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barre de navigation"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Le rapport de plantage a été transmis avec succès.\n"
-"Vous pourrez bientôt retrouver le rapport à :\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13995,11 +13992,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Envoyer le rapport de plantage"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Ne pas envoyer"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/fr/sw/messages.po b/source/fr/sw/messages.po
index 664c1e86b17..747ae250c27 100644
--- a/source/fr/sw/messages.po
+++ b/source/fr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-11-07 06:35+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/fr/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20368,181 +20368,181 @@ msgid "~File"
msgstr "~Fichier"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Origine"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Origine"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insérer"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insérer"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Mise en page"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Mise en page"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Référence_s"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Référence~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Révision"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Révision"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Afficher"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Affichage"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tableau"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tableau"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dessin"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dessin"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objet"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objet"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimer"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimer"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulaire"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulaire"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Outils"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Outils"
@@ -21580,12 +21580,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Éditer le contour"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtension"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/fur/cui/messages.po b/source/fur/cui/messages.po
index 4ed4fd3358d..39363ce4adb 100644
--- a/source/fur/cui/messages.po
+++ b/source/fur/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: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-09-17 10:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 12:11+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/fur/>\n"
"Language: fur\n"
@@ -2062,13 +2062,13 @@ msgstr "Instale"
#: cui/inc/strings.hrc:395
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
-msgstr ""
+msgstr "Instalât"
#. TmK5f
#: cui/inc/strings.hrc:396
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
-msgstr ""
+msgstr "Daûr a instalâ"
#. izdAK
#: cui/inc/strings.hrc:397
@@ -2092,13 +2092,13 @@ msgstr "Estensions"
#: cui/inc/strings.hrc:401
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
-msgstr ""
+msgstr "Aplicâ a %MODULE"
#. mpS3V
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME offers a variety of user interface options to make you feel at home"
-msgstr ""
+msgstr "%PRODUCTNAME al ufrìs une varietât di opzions de interface utent par fâti sintî come a cjase"
#. m8rYd
#: cui/inc/tipoftheday.hrc:49
@@ -2580,9 +2580,10 @@ msgstr "Tu puedis copiâ di un sfuei in chel altri cence doprâ lis notis. Selez
#. QDmWG
#: cui/inc/tipoftheday.hrc:127
+#, fuzzy
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
-msgstr ""
+msgstr "Tu puedis cambiâ l'aspiet di %PRODUCTNAME vie Struments ▸ Opzions ▸ Viodude ▸ Interface utent."
#. J853i
#: cui/inc/tipoftheday.hrc:128
@@ -2592,9 +2593,10 @@ msgstr "In %PRODUCTNAME Impress, dopre Inserìs ▸ Multimedia ▸ Album fotogra
#. BcK3A
#: cui/inc/tipoftheday.hrc:129
+#, fuzzy
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can show formulas instead of results with View ▸ Show Formula (or Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Display ▸ Formulas)."
-msgstr ""
+msgstr "Tu puedis mostrâ lis formulis al puest dai risultâts cun Visualize ▸ Mostre formule (o Struments ▸ Opzions ▸ %PRODUCTNAME Calc ▸ Viodude ▸ Mostre ▸ Formulis)."
#. bY8ve
#: cui/inc/tipoftheday.hrc:130
@@ -3260,9 +3262,10 @@ msgstr ""
#. LThNS
#: cui/inc/tipoftheday.hrc:237
+#, fuzzy
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Toolbars are contextual—they open depending on the context. If you do not want that, uncheck them from View ▸ Toolbars."
-msgstr ""
+msgstr "Lis sbaris dai struments a son contestuâls: si vierzin in base al contest. Se no si vûl chest compuartament, disativilu di Visualize ▸ Sbaris dai struments."
#. XzmhB
#: cui/inc/tipoftheday.hrc:238
@@ -3401,7 +3404,7 @@ msgstr "No rivistu a modificâ o eliminâ un stîl di cele personalizât? Contro
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Âstu bisugne di jemplâ une serie? Selezione l'interval des celis e Sfuei ▸ Jemple celis ▸ Jemple seriis e sielç tra Lineâr, Incressiment, Date e Jemplament automatic."
#. BiSJM
#. local help missing
@@ -3474,7 +3477,7 @@ msgstr "Stâstu disvilupant gnûfs filtris XSLT e XML?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Frache Maiusc+F1 par viodi cualsisei sugjeriment complet disponibil tai ricuadris di dialic, cuant che “Sugjeriments complets” nol è ativât in Struments ▸ Opzions ▸ %PRODUCTNAME ▸ Gjenerâl."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -3492,13 +3495,13 @@ msgstr "Plui informazions"
#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
-msgstr ""
+msgstr "Eseguìs cheste azion cumò..."
#. P6JME
#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
-msgstr ""
+msgstr "Consei dal dì: %CURRENT/%TOTAL"
#. C6Dsn
#: cui/inc/tipoftheday.hrc:278
@@ -3529,43 +3532,43 @@ msgstr "⌥ Opt"
#: cui/inc/toolbarmode.hrc:22
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended to user who are familiar with the classic interface."
-msgstr ""
+msgstr "Interface utent standard cun menù, sbare dai struments e sbare laterâl colasabil. Pensade pai utents che si cjatin ben cu la interface classiche."
#. S5tR2
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface but with only one toolbar. Intended for use on small screens."
-msgstr ""
+msgstr "Interface utent standard ma cun dome une sbare dai struments. Pensade par jessi doprade su schermis piçui."
#. wKg2Q
#: cui/inc/toolbarmode.hrc:24
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
-msgstr ""
+msgstr "Interface utent standard cun sbare laterâl slargjade. O conseìn ai utents esperts che a desiderin cambiâ tantis diviersis proprietâts, di doprâ cheste IU."
#. MEQAE
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed user interface is the most similar to the Ribbons used by Microsoft. It organize functions in tabs and makes the main menu obsolete."
-msgstr ""
+msgstr "La interface utent a schedis e je une vore simil a Ribbons, chê doprade di Microsoft. E organize funzions in schedis e e rint il menù principâl une robe sorpassade."
#. hXNUY
#: cui/inc/toolbarmode.hrc:26
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with Microsoft's interface having at the same time a short interface for small screen sizes."
-msgstr ""
+msgstr "La variante A schedis compate e ponte a sei familiâr cu la interface di Microsoft vent tal stes moment une interface curte par dimensions di schermi piçulis."
#. GFycb
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar Compact variant provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The compact variant favors vertical size."
-msgstr ""
+msgstr "La variante Grup di sbaris compate e furnìs l'acès a funzions in grups, cu lis funzionalitâts dopradis plui di frecuent in iconis e chês dopradis plui di râr metudis dongje intun menù a tende. La variante compate e favorìs dimensions verticâls."
#. Exopn
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar interface provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The full variant favors functions and is slightly larger than other variants."
-msgstr ""
+msgstr "La interface Grup di sbaris e furnìs l'acès a funzions in grups cu lis funzionalitâts dopradis plui di frecuent in iconis e chês dopradis plui di râr intun menù a tende. La variante complete e favorìs funzions e e je un pôc plui largje di altris variantis."
#. LNaMA
#: cui/inc/toolbarmode.hrc:29
@@ -20897,60 +20900,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/fur/desktop/messages.po b/source/fur/desktop/messages.po
index 3ed6575b4ad..07b5bcbb10a 100644
--- a/source/fur/desktop/messages.po
+++ b/source/fur/desktop/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-09-03 23:35+0000\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://weblate.documentfoundation.org/projects/libo_ui-master/desktopmessages/fur/>\n"
"Language: fur\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.1.1\n"
"X-POOTLE-MTIME: 1535975470.000000\n"
#. v2iwK
@@ -276,6 +276,9 @@ msgid ""
"\n"
"Updating of shared extension requires administrator privileges. Contact your system administrator to update the following shared extensions:"
msgstr ""
+"%PRODUCTNAME al è stât inzornât a une gnove version. Cualchi estension condividude di %PRODUCTNAME no je compatibile cun cheste version e e à bisugne di jessi inzornade prime che si podedi inviâ %PRODUCTNAME.\n"
+"\n"
+"L'inzornament des estensions condividudis e à bisugne dai privileçs di aministradôr. Contate il to aministradôr di sisteme par inzornâ chestis estensions condividudis:"
#. mQAQ9
#: desktop/inc/strings.hrc:77
diff --git a/source/fur/dictionaries/ko_KR.po b/source/fur/dictionaries/ko_KR.po
index 21b95f5743b..90d318d17ec 100644
--- a/source/fur/dictionaries/ko_KR.po
+++ b/source/fur/dictionaries/ko_KR.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
+"Language-Team: Friulian <https://weblate.documentfoundation.org/projects/libo_ui-master/dictionariesko_kr/fur/>\n"
+"Language: fur\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.1.1\n"
#. DbXEb
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Korean spellcheck dictionary"
-msgstr ""
+msgstr "Coretôr ortografic corean"
diff --git a/source/fur/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fur/officecfg/registry/data/org/openoffice/Office/UI.po
index 80e3d5eacd2..fec8ae5752f 100644
--- a/source/fur/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fur/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-05-25 18:05+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fur/>\n"
@@ -8028,14 +8028,14 @@ msgctxt ""
msgid "~Hide Slide"
msgstr ""
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
+msgid "Te~xt Attributes..."
msgstr ""
#. GR6Sf
@@ -25510,24 +25510,24 @@ msgctxt ""
msgid "~File"
msgstr ""
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Alig~n Objects"
msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Align Tex~t"
msgstr ""
#. y3E2U
@@ -31101,14 +31101,14 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr ""
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
+msgid "Select to End of Word"
msgstr ""
#. bpBoC
diff --git a/source/fur/sc/messages.po b/source/fur/sc/messages.po
index e8d1edd2b63..554150d03e5 100644
--- a/source/fur/sc/messages.po
+++ b/source/fur/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24498,213 +24498,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29533,338 +29533,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr ""
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr ""
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr ""
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr ""
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr ""
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr ""
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr ""
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr ""
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr ""
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr ""
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr ""
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr ""
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr ""
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr ""
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr ""
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr ""
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr ""
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr ""
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr ""
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr ""
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/fur/sd/messages.po b/source/fur/sd/messages.po
index 963b5960589..ac066e6b578 100644
--- a/source/fur/sd/messages.po
+++ b/source/fur/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-07 21:35+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/fur/>\n"
@@ -3807,116 +3807,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4320,12 +4320,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6558,219 +6552,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pre_sentazion"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Pre~sentazion"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revision"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revision"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualize"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualize"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabele"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabele"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertìs"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_gjin"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~gjin"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dissen"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dissen"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Ogjet"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Ogjet"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Struture"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7680,12 +7674,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/fur/starmath/messages.po b/source/fur/starmath/messages.po
index 41f48535127..7b5539d4b13 100644
--- a/source/fur/starmath/messages.po
+++ b/source/fur/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/fur/svx/messages.po b/source/fur/svx/messages.po
index cf88babfca9..e39939d97fa 100644
--- a/source/fur/svx/messages.po
+++ b/source/fur/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-11-13 13:09+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://vm137.documentfoundation.org/projects/libo_ui-master/svxmessages/fur/>\n"
@@ -7218,10 +7218,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -13941,13 +13941,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -13971,10 +13971,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/fur/sw/messages.po b/source/fur/sw/messages.po
index 55455cab4db..f9ab211bced 100644
--- a/source/fur/sw/messages.po
+++ b/source/fur/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20358,181 +20358,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21570,12 +21570,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/fy/cui/messages.po b/source/fy/cui/messages.po
index 2223eb14d2c..c17c08d483d 100644
--- a/source/fy/cui/messages.po
+++ b/source/fy/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563478856.000000\n"
#. GyY9M
@@ -3317,7 +3317,7 @@ msgstr "Set finkje by Presintaasje ▸ Presintaasje ynstellingen ▸ Presintaasj
#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit ▸ Find and Replace ▸ Other options ▸ Attributes ▸ Font weight."
-msgstr "Wolle jo de fette wurden yn in Writer dokumint sykje? Bewurkje ▸ Sykje en ferfange ▸ Oare opsjes ▸ Attributen ▸ Teken dikte."
+msgstr "Wolle jo de fette wurden yn in Writer dokumint sykje? Bewurkje ▸ Sykje en ferfange ▸ Oare opsjes ▸ Attributen ▸ Teken tsjokte."
#. ppAeT
#. local help missing
@@ -6246,13 +6246,13 @@ msgstr "Aziatyske yndieling _modus"
#: cui/uiconfig/ui/cellalignment.ui:158
msgctxt "cellalignment|extended_tip|checkAsianMode"
msgid "Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated."
-msgstr ""
+msgstr "Set Aziatyske tekens ûnder inoar, yn de selektearre sel(len). As de sel mear as ien regel tekst befettet, wurde de rigels omset nei tekst kolommen dy oardere binne fan rjochts nei links. Westerske tekens yn de omsetten tekst wurde 90 graden nei rjochts draaid. Aziatyske tekens wurde net draaid."
#. rTfQa
#: cui/uiconfig/ui/cellalignment.ui:182
msgctxt "cellalignment|extended_tip|dialcontrol"
msgid "Click in the dial to set the text orientation."
-msgstr ""
+msgstr "Klik op de draaiknop foar it ynstellen fan de tekst rjochting."
#. Kh9JE
#: cui/uiconfig/ui/cellalignment.ui:200
@@ -6270,7 +6270,7 @@ msgstr "Automatyske _tekstomslach"
#: cui/uiconfig/ui/cellalignment.ui:246
msgctxt "cellalignment|extended_tip|checkWrapTextAuto"
msgid "Wraps text onto another line at the cell border. The number of lines depends on the width of the cell."
-msgstr ""
+msgstr "Lit tekst op in oare regel binnen de sel grins trochrinne. It tal rigels is ôfhinklik fan de breedte fan de sel."
#. GDRER
#: cui/uiconfig/ui/cellalignment.ui:257
@@ -6282,7 +6282,7 @@ msgstr "_Ferlytsje nei selgrutte"
#: cui/uiconfig/ui/cellalignment.ui:267
msgctxt "cellalignment|extended_tip|checkShrinkFitCellSize"
msgid "Reduces the apparent size of the font so that the contents of the cell fit into the current cell width. You cannot apply this command to a cell that contains line breaks."
-msgstr ""
+msgstr "Ferlytset de sichtbere teken grutte sadat de sel ynhâld yn aktive sel breedte past. Jo kinne dizze opdracht net tapasse op in sel dy rigeleinen befettet."
#. Phw2T
#: cui/uiconfig/ui/cellalignment.ui:278
@@ -6294,7 +6294,7 @@ msgstr "Wurdôfbrekking _aktyf"
#: cui/uiconfig/ui/cellalignment.ui:290
msgctxt "cellalignment|extended_tip|checkHyphActive"
msgid "Enables word hyphenation for text wrapping to the next line."
-msgstr ""
+msgstr "hjirmei wurdt wurd ôfbrekking foar tekst omrin ynsteld."
#. pQLTe
#: cui/uiconfig/ui/cellalignment.ui:308
@@ -6312,7 +6312,7 @@ msgstr "Eigenskippen"
#: cui/uiconfig/ui/cellalignment.ui:383
msgctxt "cellalignment|extended_tip|spinIndentFrom"
msgid "Indents from the left edge of the cell by the amount that you enter."
-msgstr ""
+msgstr "Ynsprong fan de linkerkant fan de sel troch it bedrach dat jo ynfiere."
#. dzBtA
#: cui/uiconfig/ui/cellalignment.ui:396
@@ -6378,7 +6378,7 @@ msgstr "Ferdield"
#: cui/uiconfig/ui/cellalignment.ui:449
msgctxt "cellalignment|extended_tip|comboboxHorzAlign"
msgid "Select the horizontal alignment option that you want to apply to the cell contents."
-msgstr ""
+msgstr "Selektearje de horizontale rjochting opsje dy jo tapasse wolle op de sel ynhâld."
#. Cu2BM
#: cui/uiconfig/ui/cellalignment.ui:463
@@ -6420,7 +6420,7 @@ msgstr "Ferdield"
#: cui/uiconfig/ui/cellalignment.ui:472
msgctxt "cellalignment|extended_tip|comboboxVertAlign"
msgid "Select the vertical alignment option that you want to apply to the cell contents."
-msgstr ""
+msgstr "Selektearje de fertikale rjochting opsje dy jo tapasse wolle op de sel ynhâld."
#. FT9GJ
#: cui/uiconfig/ui/cellalignment.ui:495
@@ -6456,7 +6456,7 @@ msgstr "ABCD"
#: cui/uiconfig/ui/cellalignment.ui:564
msgctxt "cellalignment|extended_tip|CellAlignPage"
msgid "Sets the alignment options for the contents of the current cell, or the selected cells."
-msgstr ""
+msgstr "Set de rjochting opsjes foar de ynhâld fan de aktive sel, of de selektearre sellen."
#. xPtim
#: cui/uiconfig/ui/certdialog.ui:24
@@ -6474,7 +6474,7 @@ msgstr "_Selektearje NSS paad..."
#: cui/uiconfig/ui/certdialog.ui:48
msgctxt "certdialog|extended_tip|add"
msgid "Opens a file picker dialog to add a new Network Security Services Certificate directory to the list."
-msgstr ""
+msgstr "Iepenet in dialoochskerm foar it kiezen fan triemmen foar it oan de list taheakjen fan in nije Network Security Services Certificate map."
#. GFGjC
#: cui/uiconfig/ui/certdialog.ui:139
@@ -6516,19 +6516,19 @@ msgstr "Paad fan sertifikaat"
#: cui/uiconfig/ui/certdialog.ui:284
msgctxt "certdialog|extended_tip|CertDialog"
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures."
-msgstr ""
+msgstr "Selektearje of heakje de juste Network Security Services Certificate map ta om te brûken foar digitale ûndertekeningen."
#. xXVpD
#: cui/uiconfig/ui/charnamepage.ui:246
msgctxt "charnamepage|extended_tip|weststylelb-nocjk"
msgid "Select the formatting that you want to apply."
-msgstr ""
+msgstr "Selektearje de yndieling dy't jo tapasse wolle."
#. MR6Nr
#: cui/uiconfig/ui/charnamepage.ui:343
msgctxt "charnamepage|extended_tip|westsizelb-nocjk"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr ""
+msgstr "Fier de teken grutte yn dy't jo tapasse wolle of selektearje dizze. Jo kinne lettertypen dy't skaalber binne ek desimale wearden brûke."
#. YcKtn
#: cui/uiconfig/ui/charnamepage.ui:374
@@ -6546,7 +6546,7 @@ msgstr "Taal:"
#: cui/uiconfig/ui/charnamepage.ui:435
msgctxt "charnamepage|extended_tip|westlanglb-nocjk"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr ""
+msgstr "Set de taal dy de staveringshifker brûkt foar de selektearre tekst of foar de tekst dy't jo ynfiere. Foar de beskikbere taalmodulen stean finkjes."
#. NgZJ9
#: cui/uiconfig/ui/charnamepage.ui:454
@@ -6570,19 +6570,19 @@ msgstr "Taal:"
#: cui/uiconfig/ui/charnamepage.ui:589
msgctxt "charnamepage|extended_tip|weststylelb-cjk"
msgid "Select the formatting that you want to apply."
-msgstr ""
+msgstr "Selektearje de yndieling dy't jo tapasse wolle."
#. 8quPQ
#: cui/uiconfig/ui/charnamepage.ui:611
msgctxt "charnamepage|extended_tip|westsizelb-cjk"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr ""
+msgstr "Fier de teken grutte yn dy't jo tapasse wolle of selektearje dizze. Jo kinne lettertypen dy't skaalber binne ek desimale wearden brûke."
#. zCCrx
#: cui/uiconfig/ui/charnamepage.ui:642
msgctxt "charnamepage|extended_tip|westlanglb-cjk"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr ""
+msgstr "Set de taal dy de staveringshifker brûkt foar de selektearre tekst of foar de tekst dy't jo ynfiere. Foar de beskikbere taalmodulen stean finkjes."
#. qpSnT
#: cui/uiconfig/ui/charnamepage.ui:671
@@ -6612,19 +6612,19 @@ msgstr "Taal:"
#: cui/uiconfig/ui/charnamepage.ui:818
msgctxt "charnamepage|extended_tip|eaststylelb"
msgid "Select the formatting that you want to apply."
-msgstr ""
+msgstr "Selektearje de yndieling dy't jo tapasse wolle."
#. JSR99
#: cui/uiconfig/ui/charnamepage.ui:840
msgctxt "charnamepage|extended_tip|eastsizelb"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr ""
+msgstr "Fier de teken grutte yn dy't jo tapasse wolle of selektearje dizze. Jo kinne lettertypen dy't skaalber binne ek desimale wearden brûke."
#. KLJQT
#: cui/uiconfig/ui/charnamepage.ui:870
msgctxt "charnamepage|extended_tip|eastlanglb"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr ""
+msgstr "Set de taal dy de staveringshifker brûkt foar de selektearre tekst of foar de tekst dy't jo ynfiere. Foar de beskikbere taalmodulen stean finkjes."
#. 5uQYn
#: cui/uiconfig/ui/charnamepage.ui:898
@@ -6654,19 +6654,19 @@ msgstr "Taal:"
#: cui/uiconfig/ui/charnamepage.ui:1045
msgctxt "charnamepage|extended_tip|ctlstylelb"
msgid "Select the formatting that you want to apply."
-msgstr ""
+msgstr "Selektearje de yndieling dy't jo tapasse wolle."
#. CeMCG
#: cui/uiconfig/ui/charnamepage.ui:1067
msgctxt "charnamepage|extended_tip|ctlsizelb"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr ""
+msgstr "Fier de teken grutte yn dy't jo tapasse wolle of selektearje dizze. Jo kinne lettertypen dy't skaalber binne ek desimale wearden brûke."
#. zCKxL
#: cui/uiconfig/ui/charnamepage.ui:1097
msgctxt "charnamepage|extended_tip|ctllanglb"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr ""
+msgstr "Set de taal dy de staveringshifker brûkt foar de selektearre tekst of foar de tekst dy't jo ynfiere. Foar de beskikbere taalmodulen stean finkjes."
#. Nobqa
#: cui/uiconfig/ui/charnamepage.ui:1126
@@ -6690,7 +6690,7 @@ msgstr "Foarbyld"
#: cui/uiconfig/ui/charnamepage.ui:1209
msgctxt "charnamepage|extended_tip|CharNamePage"
msgid "Specify the formatting and the font that you want to apply."
-msgstr ""
+msgstr "Hjir kinst de yndieling en de lettertype ynstelle dy't jo tapasse wolle."
#. LE7Wp
#: cui/uiconfig/ui/colorconfigwin.ui:14
@@ -7068,7 +7068,7 @@ msgstr "Wiskje"
#: cui/uiconfig/ui/colorpage.ui:213
msgctxt "colorpage|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "Wisket de selektearre elemint of eleminten sûnder dat befêstiging fereaske is."
#. m2Qm7
#: cui/uiconfig/ui/colorpage.ui:227
@@ -7236,25 +7236,25 @@ msgstr "Kies in kleur"
#: cui/uiconfig/ui/colorpickerdialog.ui:158
msgctxt "extended tip | preview"
msgid "In the left part of the bottom bar, the current result of your work in this dialog is visible."
-msgstr ""
+msgstr "Oan de linkerkant fan de ûnderste balke is it aktive resultaat fan jo wurk yn dit dialoochskerm sichtber."
#. 7jLV5
#: cui/uiconfig/ui/colorpickerdialog.ui:174
msgctxt "extended tip | previous"
msgid "In the right part of the bottom bar, you will see the original color from the parent tab, Colors."
-msgstr ""
+msgstr "Oan de rjochterkant fan de ûnderste balke sjogge jo de orizjinele kleur fan de boppelizzende ljepper, kleuren."
#. yEApx
#: cui/uiconfig/ui/colorpickerdialog.ui:199
msgctxt "extended tip | colorField"
msgid "Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog."
-msgstr ""
+msgstr "Klik yn it grutte kleur gebiet oan de linkerkant om in nije kleur te selektearjen. Mei help fan dit seleksje gebiet kinne jo twa komponinten fan de kleur feroarje lykas sichtber is yn de RGB- of HSB kleuren modellen. Tink derom dat dit de twa komponinten binne dy't net selektearre binne mei de karrûntsjes oan de rjochterkant fan it dialoochskerm."
#. N8gjc
#: cui/uiconfig/ui/colorpickerdialog.ui:216
msgctxt "extended tip | colorSlider"
msgid "With the vertical color component slider you can modify the value of each component of the color."
-msgstr ""
+msgstr "Mei de fertikale skowbalke foar kleuren komponinten kinne jo de wearde fan elk komponint fan de kleur oanpasse."
#. mjiGo
#: cui/uiconfig/ui/colorpickerdialog.ui:300
@@ -7266,7 +7266,7 @@ msgstr "_Read:"
#: cui/uiconfig/ui/colorpickerdialog.ui:310
msgctxt "extended tip | redRadiobutton"
msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255."
-msgstr ""
+msgstr "Set de reade komponint dy oanpasber is op de fertikale skowbalke en de griene en blauwe komponinten yn it twa diminsjonale kleurkar fjild. Tasteane wearden binne 0 oan 't 255."
#. TkTSB
#: cui/uiconfig/ui/colorpickerdialog.ui:321
@@ -7278,7 +7278,7 @@ msgstr "_Grien:"
#: cui/uiconfig/ui/colorpickerdialog.ui:331
msgctxt "extended tip | greenRadiobutton"
msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255."
-msgstr ""
+msgstr "Set de griene komponint dy oanpasber is op de fertikale skowbalke en de reade en blauwe komponinten yn it twa diminsjonale kleurkar fjild. Tasteane wearden binne 0 oan 't 255."
#. 5FGfv
#: cui/uiconfig/ui/colorpickerdialog.ui:342
@@ -7290,25 +7290,25 @@ msgstr "_Blau:"
#: cui/uiconfig/ui/colorpickerdialog.ui:352
msgctxt "extended tip | blueRadiobutton"
msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255."
-msgstr ""
+msgstr "Set de blauwe komponint dy oanpasber is op de fertikale skowbalke en de griene en reade komponinten yn it twa diminsjonale kleurkar fjild. Tasteane wearden binne 0 oan 't 255."
#. c5MTh
#: cui/uiconfig/ui/colorpickerdialog.ui:370
msgctxt "extended tip | redSpinbutton"
msgid "Set the Red color value directly. Allowed values are 0 to 255."
-msgstr ""
+msgstr "Set de reade kleur wearde rjochtstreeks. Tasteane wearden binne 0 oan 't 255."
#. 2yY2G
#: cui/uiconfig/ui/colorpickerdialog.ui:388
msgctxt "extended tip | greenSpinbutton"
msgid "Set the Green color value directly. Allowed values are 0 to 255."
-msgstr ""
+msgstr "Set de griene kleur wearde rjochtstreeks. Tasteane wearden binne 0 oan 't 255."
#. UREX7
#: cui/uiconfig/ui/colorpickerdialog.ui:406
msgctxt "extended tip | blueSpinbutton"
msgid "Set the Blue color value directly. Allowed values are 0 to 255."
-msgstr ""
+msgstr "Set de blauwe kleur wearde rjochtstreeks. Tasteane wearden binne 0 oan 't 255."
#. 2nFsj
#: cui/uiconfig/ui/colorpickerdialog.ui:419
@@ -7320,7 +7320,7 @@ msgstr "Heks _#:"
#: cui/uiconfig/ui/colorpickerdialog.ui:437
msgctxt "extended tip | hexEntry"
msgid "Displays and sets the color value in the RGB color model expressed as a hexadecimal number."
-msgstr ""
+msgstr "Lit sjen en set de kleur wearde yn it RGB kleurmodel, útdrukt as in heksadesimaal getal."
#. sD6YC
#: cui/uiconfig/ui/colorpickerdialog.ui:454
@@ -7338,7 +7338,7 @@ msgstr "T_int:"
#: cui/uiconfig/ui/colorpickerdialog.ui:504
msgctxt "extended tip | hueRadiobutton"
msgid "Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two-dimensional color picker field. Values are expressed in degrees from 0 to 359."
-msgstr ""
+msgstr "Hjirmei kinst de Tint komponint ynstelle dy feroare kin wurde op de fertikale kleuren skower en de komponinten Sêding en Helderheid yn it twa diminsjonale kleurkar fjild. Wearden wurde útdrukt yn graden fan 0 oan 't 359."
#. C4GE3
#: cui/uiconfig/ui/colorpickerdialog.ui:515
@@ -7350,7 +7350,7 @@ msgstr "_Sêding:"
#: cui/uiconfig/ui/colorpickerdialog.ui:525
msgctxt "extended tip | satRadiobutton"
msgid "Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)."
-msgstr ""
+msgstr "Hjirmei kinst de sêding komponint ynstelle dy feroare kin wurde op de fertikale kleuren skower en de komponinten Tint en Helderheid yn it twa diminsjonale kleurkar fjild. Wearden wurde útdrukt yn graden fan 0 oan 't 359."
#. NXs9w
#: cui/uiconfig/ui/colorpickerdialog.ui:536
@@ -7362,25 +7362,25 @@ msgstr "Helder_heid:"
#: cui/uiconfig/ui/colorpickerdialog.ui:546
msgctxt "extended tip | brightRadiobutton"
msgid "Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)."
-msgstr ""
+msgstr "Hjirmei kinst de Helderheid komponint ynstelle dy feroare kin wurde op de fertikale kleuren skower en de komponinten Tint en Sêding yn it twa diminsjonale kleurkar fjild. Wearden wurde útdrukt yn graden fan 0 oan 't 359."
#. BCvUX
#: cui/uiconfig/ui/colorpickerdialog.ui:564
msgctxt "extended tip | hueSpinbutton"
msgid "Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359."
-msgstr ""
+msgstr "Set de Tint rjochtstreeks yn it HSB kleur model. Wearden wurde útdrukt yn graden fan 0 oan 't 359."
#. TcDh8
#: cui/uiconfig/ui/colorpickerdialog.ui:582
msgctxt "extended tip | satSpinbutton"
msgid "Set the Saturation directly in the HSB color model. Values are expressed in percent (0 to 100)."
-msgstr ""
+msgstr "Set de Sêding rjochtstreeks yn it HSB kleur model. Wearden wurde útdrukt yn prosinten fan 0 oan 't 100."
#. hucEE
#: cui/uiconfig/ui/colorpickerdialog.ui:600
msgctxt "extended tip | brightSpinbutton"
msgid "Set the Brightness directly in the HSB color model. Values are expressed in percent (0 to 100)."
-msgstr ""
+msgstr "Set de Helderheid rjochtstreeks yn it HSB kleur model. Wearden wurde útdrukt yn prosinten fan 0 oan 't 100."
#. B7RjF
#: cui/uiconfig/ui/colorpickerdialog.ui:617
@@ -7416,25 +7416,25 @@ msgstr "_Kaai:"
#: cui/uiconfig/ui/colorpickerdialog.ui:722
msgctxt "extended tip | cyanSpinbutton"
msgid "Set the Cyan color value as expressed in the CMYK color model."
-msgstr ""
+msgstr "Set de kleur wearde Cyaan yn it CMYK kleur model."
#. mMXFr
#: cui/uiconfig/ui/colorpickerdialog.ui:740
msgctxt "extended tip | magSpinbutton"
msgid "Set the Magenta color value as expressed in the CMYK color model."
-msgstr ""
+msgstr "Set de kleur wearde Magenta yn it CMYK kleur model."
#. EEgiy
#: cui/uiconfig/ui/colorpickerdialog.ui:758
msgctxt "extended tip | yellowSpinbutton"
msgid "Set the Yellow color value as expressed in the CMYK color model."
-msgstr ""
+msgstr "Set de kleur wearde Giel yn it CMYK kleur model."
#. UAAnZ
#: cui/uiconfig/ui/colorpickerdialog.ui:776
msgctxt "extended tip | keySpinbutton"
msgid "Set the Black color value or key (black) as expressed in the CMYK color model."
-msgstr ""
+msgstr "Set de kleur wearde Swart of toets (swart) yn it CMYK kleur model."
#. mxFDw
#: cui/uiconfig/ui/colorpickerdialog.ui:793
@@ -7446,7 +7446,7 @@ msgstr "CMYK"
#: cui/uiconfig/ui/colorpickerdialog.ui:832
msgctxt "extended tip | ColorPicker"
msgid "%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
-msgstr ""
+msgstr "Mei %PRODUCTNAME kinne jo oanpaste kleuren fêststelle mei help fan in twa diminsjonale grafyske en numerike ferrin diagram fan it dialoochskerm Kies in kleur."
#. vDFei
#: cui/uiconfig/ui/comment.ui:18
@@ -7470,7 +7470,7 @@ msgstr "_Tekst"
#: cui/uiconfig/ui/comment.ui:223
msgctxt "comment|extended_tip|edit"
msgid "Enter a comment for the recorded change."
-msgstr ""
+msgstr "Fier in notysje yn foar de fêstleine feroaring."
#. bEtYk
#: cui/uiconfig/ui/comment.ui:245
@@ -7500,7 +7500,7 @@ msgstr "Ynhâld"
#: cui/uiconfig/ui/comment.ui:319
msgctxt "comment|extended_tip|CommentDialog"
msgid "Enter a comment for the recorded change."
-msgstr ""
+msgstr "Fier in notysje yn foar de fêstleine feroaring."
#. B73bz
#: cui/uiconfig/ui/connectortabpage.ui:62
@@ -7512,7 +7512,7 @@ msgstr "_Type:"
#: cui/uiconfig/ui/connectortabpage.ui:79
msgctxt "connectortabpage|extended_tip|LB_TYPE"
msgid "Lists the types of connectors that are available."
-msgstr ""
+msgstr "Kies hjir it winske type."
#. VnKTH
#: cui/uiconfig/ui/connectortabpage.ui:119
@@ -7536,25 +7536,25 @@ msgstr "Line_3:"
#: cui/uiconfig/ui/connectortabpage.ui:166
msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_1"
msgid "Enter a skew value for Line 1."
-msgstr ""
+msgstr "Fier de skeante wearde yn foar line 1."
#. SGov7
#: cui/uiconfig/ui/connectortabpage.ui:184
msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_2"
msgid "Enter a skew value for Line 2."
-msgstr ""
+msgstr "Fier de skeante wearde yn foar line 2."
#. Cv7eg
#: cui/uiconfig/ui/connectortabpage.ui:202
msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_3"
msgid "Enter a skew value for Line 3."
-msgstr ""
+msgstr "Fier de skeante wearde yn foar line 3."
#. xvCfy
#: cui/uiconfig/ui/connectortabpage.ui:219
msgctxt "connectortabpage|label2"
msgid "Line Skew"
-msgstr "Line skeanens"
+msgstr "Line skeante"
#. hAdsA
#: cui/uiconfig/ui/connectortabpage.ui:256
@@ -7584,25 +7584,25 @@ msgstr "_Ein fertikaal:"
#: cui/uiconfig/ui/connectortabpage.ui:317
msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_1"
msgid "Enter the amount of horizontal space you want at the beginning of the connector."
-msgstr ""
+msgstr "Fier de horizontale romte yn dy't jo hâlde wolle oan it begjin fan de ferbining."
#. pUTnF
#: cui/uiconfig/ui/connectortabpage.ui:335
msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_2"
msgid "Enter the amount of horizontal space you want at the end of the connector."
-msgstr ""
+msgstr "Fier de horizontale romte yn dy't jo hâlde wolle oan it ein fan de ferbining."
#. 23o9a
#: cui/uiconfig/ui/connectortabpage.ui:353
msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_1"
msgid "Enter the amount of vertical space you want at the beginning of the connector."
-msgstr ""
+msgstr "Fier de fertikale romte yn dy't jo hâlde wolle oan it begjin fan de ferbining."
#. 22Tvd
#: cui/uiconfig/ui/connectortabpage.ui:371
msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_2"
msgid "Enter the amount of vertical space you want at the end of the connector."
-msgstr ""
+msgstr "Fier de fertikale romte yn dy't jo hâlde wolle oan it ein fan de ferbining."
#. idTk6
#: cui/uiconfig/ui/connectortabpage.ui:388
@@ -7626,7 +7626,7 @@ msgstr "Foarbyld"
#: cui/uiconfig/ui/connectortabpage.ui:448
msgctxt "connectortabpage|extended_tip|ConnectorTabPage"
msgid "Sets the properties of a connector."
-msgstr ""
+msgstr "Set de eigenskippen fan de ferbining."
#. ezicB
#: cui/uiconfig/ui/connpooloptions.ui:59
@@ -7638,7 +7638,7 @@ msgstr "Pooling fan ferbiningen binne ynskeakele"
#: cui/uiconfig/ui/connpooloptions.ui:68
msgctxt "extended_tip|connectionpooling"
msgid "Specifies whether the chosen connections are pooled."
-msgstr ""
+msgstr "Hjirmei stelle jo fêst of de keazen ferbiningen behâlden wurde."
#. GHbky
#: cui/uiconfig/ui/connpooloptions.ui:90
@@ -7662,7 +7662,7 @@ msgstr "Pooling foar dit stjoerprogramma tastean"
#: cui/uiconfig/ui/connpooloptions.ui:148
msgctxt "extended_tip|enablepooling"
msgid "Select a driver from the list and mark the Enable pooling for this driver checkbox in order to pool its connection."
-msgstr ""
+msgstr "Selektearje in stjoerprogramma út de list en selektearje it fakje Ferbining foar dit stjoerprogramma behâlde om dit te dwaan."
#. uzbLN
#: cui/uiconfig/ui/connpooloptions.ui:167
@@ -7674,7 +7674,7 @@ msgstr "_Tiid ferrûn (sekonden)"
#: cui/uiconfig/ui/connpooloptions.ui:188
msgctxt "extended_tip|timeout"
msgid "Defines the time in seconds after which a pooled connection is freed."
-msgstr ""
+msgstr "Hjir jouwe jo oan nei hoefolle sekonden in behâlden ferbining frijjûn wurdt."
#. gWFKz
#: cui/uiconfig/ui/connpooloptions.ui:235
@@ -7800,7 +7800,7 @@ msgstr "_URL-adres:"
#: cui/uiconfig/ui/cuiimapdlg.ui:114
msgctxt "cuiimapdlg|extended_tip|urlentry"
msgid "Enter the URL for the file that you want to open when you click the selected hotspot."
-msgstr ""
+msgstr "Fier in URL-adres yn foar de triem dy't jo iepenje wolle wannear jo op de selektearre hotspot klikke."
#. FLKr9
#: cui/uiconfig/ui/cuiimapdlg.ui:142
@@ -7812,7 +7812,7 @@ msgstr "R_amt:"
#: cui/uiconfig/ui/cuiimapdlg.ui:167
msgctxt "cuiimapdlg|extended_tip|frameCB"
msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list."
-msgstr ""
+msgstr "Fier de namme yn fan it doel ramt wêryn jo it URL-adres iepenje wolle. Jo kinne ek in standert ramt namme út de list selektearje."
#. V8Zgo
#: cui/uiconfig/ui/cuiimapdlg.ui:195
@@ -7824,7 +7824,7 @@ msgstr "_Namme:"
#: cui/uiconfig/ui/cuiimapdlg.ui:214
msgctxt "cuiimapdlg|extended_tip|nameentry"
msgid "Enter a name for the image."
-msgstr ""
+msgstr "Fier in namme yn foar de ôfbylding."
#. BAXQk
#: cui/uiconfig/ui/cuiimapdlg.ui:242
@@ -7836,7 +7836,7 @@ msgstr "Alternative _tekst:"
#: cui/uiconfig/ui/cuiimapdlg.ui:261
msgctxt "cuiimapdlg|extended_tip|textentry"
msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser."
-msgstr ""
+msgstr "Fier de tekst dy jo wolle werjaan as it mûs rinnerke útrêste op de hotspot yn in sneuper."
#. bsgYj
#: cui/uiconfig/ui/cuiimapdlg.ui:289
@@ -7848,13 +7848,13 @@ msgstr "_Beskriuwing:"
#: cui/uiconfig/ui/cuiimapdlg.ui:318
msgctxt "cuiimapdlg|extended_tip|descTV"
msgid "Enter a description for the hotspot."
-msgstr ""
+msgstr "Fier in beskriuwing foar de hotspot yn."
#. 7LsXB
#: cui/uiconfig/ui/cuiimapdlg.ui:356
msgctxt "cuiimapdlg|extended_tip|IMapDialog"
msgid "Lists the properties for the selected hotspot."
-msgstr ""
+msgstr "Lit de eigenskippen sjen foar de selektearre hotspot."
#. 8LR3s
#: cui/uiconfig/ui/customizedialog.ui:8
@@ -7914,7 +7914,7 @@ msgstr "Blêdzje..."
#: cui/uiconfig/ui/databaselinkdialog.ui:99
msgctxt "extended_tip|browse"
msgid "Opens a file dialog where you can select the database file."
-msgstr ""
+msgstr "Iepenet in triem dialoochskerm wêr jo de gegevensbank triem selektearje kinne."
#. kvNEy
#: cui/uiconfig/ui/databaselinkdialog.ui:112
@@ -7932,7 +7932,7 @@ msgstr "Registrearre _namme:"
#: cui/uiconfig/ui/databaselinkdialog.ui:178
msgctxt "extended_tip|name"
msgid "Enter a name for the database. %PRODUCTNAME uses this name to access the database."
-msgstr ""
+msgstr "Fier in namme foar de gegevensbank yn. %PRODUCTNAME brûkt dizze namme foar tagong ta dizze gegevensbank."
#. FrRyU
#: cui/uiconfig/ui/databaselinkdialog.ui:197
@@ -7944,7 +7944,7 @@ msgstr "Gegevens keppeling bewurkje"
#: cui/uiconfig/ui/databaselinkdialog.ui:223
msgctxt "extended_tip|DatabaseLinkDialog"
msgid "Creates or edits an entry in the Databases tab page."
-msgstr ""
+msgstr "Hjirmei kinne jo in item ûnder Gegevensbank meitsje of bewurkje."
#. ehaGT
#: cui/uiconfig/ui/dbregisterpage.ui:74
@@ -7968,7 +7968,7 @@ msgstr "_Nij..."
#: cui/uiconfig/ui/dbregisterpage.ui:131
msgctxt "extended_tip|new"
msgid "Opens the Database Link dialog to create a new entry."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Gegevensbank keppeling wêr in nij item oanmakke kin wurde."
#. zqFjG
#: cui/uiconfig/ui/dbregisterpage.ui:143
@@ -7980,7 +7980,7 @@ msgstr "_Wiskje"
#: cui/uiconfig/ui/dbregisterpage.ui:150
msgctxt "extended_tip|delete"
msgid "Removes the selected entry from the list."
-msgstr ""
+msgstr "Sil it selektearre item fan de list wiskje."
#. eiE2E
#: cui/uiconfig/ui/dbregisterpage.ui:162
@@ -7992,7 +7992,7 @@ msgstr "_Bewurkje..."
#: cui/uiconfig/ui/dbregisterpage.ui:169
msgctxt "extended_tip|edit"
msgid "Opens the Database Link dialog to edit the selected entry."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Gegevensbank keppeling wêr in item bewurke kin wurde."
#. Q3nF4
#: cui/uiconfig/ui/dbregisterpage.ui:194
@@ -8046,43 +8046,43 @@ msgstr "Mjitte ûnder it o_bjekt"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:171
msgctxt "dimensionlinestabpage|extended_tip|TSB_BELOW_REF_EDGE"
msgid "Reverses the properties set in the Line area."
-msgstr ""
+msgstr "Dit keard de eigenskippen om yn it Line gebiet."
#. M2qGu
#: cui/uiconfig/ui/dimensionlinestabpage.ui:190
msgctxt "dimensionlinestabpage|extended_tip|MTR_LINE_DIST"
msgid "Specifies the distance between the dimension line and the baseline (line distance = 0)."
-msgstr ""
+msgstr "Jout de ôfstân oan tusken de diminsje line en de basis line (line ôfstân = 0)"
#. 6wKTs
#: cui/uiconfig/ui/dimensionlinestabpage.ui:208
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE_OVERHANG"
msgid "Specifies the length of the left and right guides starting at the baseline (line distance = 0). Positive values extend the guides above the baseline and negative values extend the guides below the baseline."
-msgstr ""
+msgstr "Dit lit jo de lingte fan de linker en rjochter helplinen oantsjutte fan ôf de basisline (line ôfstân = 0). By in positive wearde stekke de helplinen boppe de basisline út, en by in negative wearde ûnder de basisline"
#. AdBKh
#: cui/uiconfig/ui/dimensionlinestabpage.ui:226
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE_DIST"
msgid "Specifies the length of the right and left guides starting at the dimension line. Positive values extend the guides above the dimension line and negative values extend the guides below the dimension line."
-msgstr ""
+msgstr "Dit lit jo de lingte fan de linker en rjochter helplinen oantsjutte fan ôf de diminsje (line ôfstân = 0). By in positive wearde stekke de helplinen boppe de diminsje line út, en by in negative wearde ûnder de diminsje line."
#. hFGhD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:244
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE1_LEN"
msgid "Specifies the length of the left guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line."
-msgstr ""
+msgstr "Dit lit jo de lingte fan de linker helplinen oantsjutte fan ôf de diminsje (line ôfstân = 0). By in positive wearde stekke de helplinen ûnder de diminsje line út, en by in negative wearde boppe de diminsje line."
#. 3bQD4
#: cui/uiconfig/ui/dimensionlinestabpage.ui:262
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE2_LEN"
msgid "Specifies the length of the right guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line."
-msgstr ""
+msgstr "Dit lit jo de lingte fan de rjochter helplinen oantsjutte fan ôf de diminsje (line ôfstân = 0). By in positive wearde stekke de helplinen ûnder de diminsje line út, en by in negative wearde boppe de diminsje line."
#. BKJDe
#: cui/uiconfig/ui/dimensionlinestabpage.ui:279
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_DECIMALPLACES"
msgid "Specifies the number of decimal places used for the display of line properties."
-msgstr ""
+msgstr "Dit lit de tal fan desimalen oantsjutte dy brûkt wurde foar de werjefte fan de line eigenskippen."
#. uruYG
#: cui/uiconfig/ui/dimensionlinestabpage.ui:296
@@ -8100,7 +8100,7 @@ msgstr "_Tekst posysje"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:375
msgctxt "dimensionlinestabpage|extended_tip|CTL_POSITION"
msgid "Determines the position of the dimension text with respect to the dimension line and the guides."
-msgstr ""
+msgstr "Hjir stelle jo de posysje fêst fan de diminsje line tekst yn ferhâlding mei de diminsje line en de helplinen."
#. t8Ewg
#: cui/uiconfig/ui/dimensionlinestabpage.ui:391
@@ -8112,7 +8112,7 @@ msgstr "_Auto fertikaal"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:401
msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSV"
msgid "Determines the optimal vertical position for the dimension text."
-msgstr ""
+msgstr "Hjir stelle jo de optimale fertikale posysje fêst foar de diminsje tekst."
#. KykMq
#: cui/uiconfig/ui/dimensionlinestabpage.ui:413
@@ -8124,7 +8124,7 @@ msgstr "A_uto horizontaal"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:423
msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSH"
msgid "Determines the optimal horizontal position for the dimension text."
-msgstr ""
+msgstr "Hjir stelle jo de optimale horizontale posysje fêst foar de diminsje tekst."
#. yQtE3
#: cui/uiconfig/ui/dimensionlinestabpage.ui:444
@@ -8136,7 +8136,7 @@ msgstr "_Lyk rinnend oan line"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:454
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr ""
+msgstr "Lit de tekst parallel sjen of op 90 graden neffens de diminsje line."
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:466
@@ -8148,13 +8148,13 @@ msgstr "M_jitienheden sjen litte"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:476
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 ""
+msgstr "Lit de diminsje mjit ienheden sjen of ferbergje. Jo kinne ek in mjit ienheid út de list selektearje dy jo werjaan wolle."
#. EEaqi
#: cui/uiconfig/ui/dimensionlinestabpage.ui:494
msgctxt "dimensionlinestabpage|extended_tip|LB_UNIT"
msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr ""
+msgstr "Lit de diminsje mjit ienheden sjen of ferbergje. Jo kinne ek in mjit ienheid út de list selektearje dy jo werjaan wolle."
#. gX83d
#: cui/uiconfig/ui/dimensionlinestabpage.ui:512
@@ -8178,13 +8178,13 @@ msgstr "Oanpaste wurdboek bewurkje"
#: cui/uiconfig/ui/editdictionarydialog.ui:94
msgctxt "book"
msgid "Specifies the book to be edited."
-msgstr ""
+msgstr "Lit it te bewurkjen boek oantsjutte."
#. trTxg
#: cui/uiconfig/ui/editdictionarydialog.ui:109
msgctxt "lang"
msgid "Assigns a new language to the current custom dictionary."
-msgstr ""
+msgstr "Sil in nije taal tawize oan de aktive oanpaste wurdboek."
#. PV8x9
#: cui/uiconfig/ui/editdictionarydialog.ui:122
@@ -8202,13 +8202,13 @@ msgstr "_Taal:"
#: cui/uiconfig/ui/editdictionarydialog.ui:183
msgctxt "replace"
msgid "This input field is only available if you are editing an exception dictionary or a language-dependent custom dictionary. In exception dictionaries, the field shows the alternative suggestion for the current word in the \"Word\" text box. In language-dependent custom dictionaries, the field contains a known root word, as a model of affixation of the new word or its usage in compound words. For example, in a German custom dictionary, the new word “Litschi” (lychee) with the model word “Gummi” (gum) will result recognition of “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) etc."
-msgstr ""
+msgstr "Dit ynfier fjild is allinne beskikber as jo in útsûndering wurdboek of in taal ôfhinklik oanpaste wurdboek bewurkje. Yn útsûndering wurdboek sil it fjild de alternative suggestje sjen litte foar it aktive wurd yn it tekstfak \"Wurd\". Yn taal ôfhinklike oanpaste wurdboeken , sil it fjild in bekend grûnwurd befetsje, as in model foar it oanbringen fan it nije wurd of it brûkme dêrfan yn gearstalde wurden. Yn in Dútsk oanpast wurdboek jout dit as resultaat \"Litschi\" (lychee) mei it model wurd \"Gummi\" (gom) yn de werkenning fan \"Litschis\" (lychees), \"Litschibaum\" (lychee-boom), \"Litschifrucht\" (lychee fruit) enfh."
#. 5EwBs
#: cui/uiconfig/ui/editdictionarydialog.ui:200
msgctxt "word"
msgid "You can type a new word for inclusion in the dictionary. In the list below you will see the contents of the current custom dictionary."
-msgstr ""
+msgstr "Jo kinne in nij wurd ynfiere foar opname yn it wurdboek. Yn de ûndersteande list sjogge jo de ynhâld fan it aktive oanpaste wurdboek."
#. WWwmQ
#: cui/uiconfig/ui/editdictionarydialog.ui:213
@@ -11605,7 +11605,7 @@ msgstr "Streek"
#: cui/uiconfig/ui/linestyletabpage.ui:252
msgctxt "linestyletabpage|CBX_SYNCHRONIZE"
msgid "_Fit to line width"
-msgstr "Oan_passe oan linedikte"
+msgstr "Oan_passe oan line tsjokte"
#. rBY7A
#: cui/uiconfig/ui/linestyletabpage.ui:270
@@ -20903,60 +20903,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/fy/formula/messages.po b/source/fy/formula/messages.po
index 585c3ea2e15..5e08ace59d7 100644
--- a/source/fy/formula/messages.po
+++ b/source/fy/formula/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-10-17 08:35+0000\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/formulamessages/fy/>\n"
"Language: fy\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.1.1\n"
#. YfKFn
#: formula/inc/core_resource.hrc:2278
@@ -1719,13 +1719,13 @@ msgstr "GEM.DEFIAASJE"
#: formula/inc/core_resource.hrc:2565
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEW"
-msgstr "SKEEFENS"
+msgstr "SKEANTE"
#. pENWD
#: formula/inc/core_resource.hrc:2566
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEWP"
-msgstr "SKEEFENSP"
+msgstr "SKEANTEP"
#. DWBTD
#: formula/inc/core_resource.hrc:2567
diff --git a/source/fy/librelogo/source/pythonpath.po b/source/fy/librelogo/source/pythonpath.po
index 22d31c0d303..1dfe9896618 100644
--- a/source/fy/librelogo/source/pythonpath.po
+++ b/source/fy/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-06-29 13:09+0200\n"
-"PO-Revision-Date: 2020-08-03 11:35+0000\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/librelogosourcepythonpath/fy/>\n"
"Language: fy\n"
@@ -158,7 +158,7 @@ msgctxt ""
"PENWIDTH\n"
"property.text"
msgid "pensize|penwidth|linewidth|ps"
-msgstr "pengrutte|pendikte|penbreedte|pg"
+msgstr "pengrutte|pentsjokte|penbreedte|pg"
#. 2Zgzv
#: LibreLogo_en_US.properties
@@ -338,7 +338,7 @@ msgctxt ""
"FONTWEIGHT\n"
"property.text"
msgid "fontweight"
-msgstr "letter dikte"
+msgstr "letter tsjokte"
#. Di9ys
#: LibreLogo_en_US.properties
diff --git a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
index d2d96ef7d78..75d46b0788d 100644
--- a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-20 14:48+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fy/>\n"
"Language: fy\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Dia ~ferbergje"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~kst..."
+msgid "Te~xt Attributes..."
+msgstr "Te~kst attributen..."
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -8434,7 +8434,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset line skew"
-msgstr "Line skeante opnij ynstelle"
+msgstr "Line skeante opnij ynstelle"
#. avSPK
#: DrawImpressCommands.xcu
@@ -20406,7 +20406,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Width"
-msgstr "Line dikte"
+msgstr "Line tsjokte"
#. FSmwG
#: GenericCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Triem"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Rjocht~sje"
+msgid "Alig~n Objects"
+msgstr "Objekte~n rjochtsje"
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Rjocht~sje"
+msgid "Align Tex~t"
+msgstr "Teks~t rjochtsje"
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Oan 't ein alinea selektearje"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Oan 't wurd rjochts selektearje"
+msgid "Select to End of Word"
+msgstr "Oan 't ein fan it wurd selektearje"
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/fy/sc/messages.po b/source/fy/sc/messages.po
index 5d61831b3e8..783224bbb00 100644
--- a/source/fy/sc/messages.po
+++ b/source/fy/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-19 20:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/fy/>\n"
"Language: fy\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.1.1\n"
"X-POOTLE-MTIME: 1562265635.000000\n"
#. kBovX
@@ -1342,7 +1342,7 @@ msgid ""
"Try again using a different name."
msgstr ""
"Jo ha in ûnjildige namme ynfierd.\n"
-"AutoOpmaak koe net oanmakke wurde. \n"
+"AutoYndieling koe net oanmakke wurde. \n"
"Besykje nochris mei in oare namme."
#. ZGfyF
@@ -1395,7 +1395,7 @@ msgid ""
"a table range of at least\n"
"3x3 cells must be selected."
msgstr ""
-"Foar it tapassen fan AutoOpmaak,\n"
+"Foar it tapassen fan AutoYndieling\n"
"moat der in tabel berik selektearre wêze\n"
"fan yn elk gefal 3x3 sellen."
@@ -17075,13 +17075,13 @@ msgstr "Formules foarmje gjin rige."
#: sc/inc/strings.hrc:130
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
-msgstr "AutoOpmaak taheakje"
+msgstr "AutoYndieling taheakje"
#. 7KuSQ
#: sc/inc/strings.hrc:131
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
-msgstr "AutoOpmaak omneame"
+msgstr "AutoYndieling omneame"
#. hqtgD
#: sc/inc/strings.hrc:132
@@ -17093,13 +17093,13 @@ msgstr "Namme"
#: sc/inc/strings.hrc:133
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
-msgstr "AutoOpmaak wiskje"
+msgstr "AutoYndieling wiskje"
#. KCDoJ
#: sc/inc/strings.hrc:134
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
-msgstr "Wolle jo AutoOpmaak # wiskje?"
+msgstr "Wolle jo AutoYndieling # wiskje?"
#. GDdL3
#: sc/inc/strings.hrc:135
@@ -17664,7 +17664,7 @@ msgstr "Kurtosis"
#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
-msgstr "Skeefens"
+msgstr "Skeante"
#. HkRYo
#: sc/inc/strings.hrc:242
@@ -18821,31 +18821,31 @@ msgstr ""
#: sc/uiconfig/scalc/ui/autoformattable.ui:16
msgctxt "autoformattable|AutoFormatTableDialog"
msgid "AutoFormat"
-msgstr "AutoOpmaak"
+msgstr "AutoYndieling"
#. tCRU9
#: sc/uiconfig/scalc/ui/autoformattable.ui:39
msgctxt "autoformattable|extended_tip|cancel"
msgid "Closes dialog and discards all changes."
-msgstr ""
+msgstr "Slút it dialoochskerm en negearret alle feroaringen."
#. V6Tpf
#: sc/uiconfig/scalc/ui/autoformattable.ui:60
msgctxt "autoformattable|extended_tip|ok"
msgid "Saves all changes and closes dialog."
-msgstr ""
+msgstr "Bewarret alle feroaringen en slút it dialoochskerm."
#. NTY8D
#: sc/uiconfig/scalc/ui/autoformattable.ui:135
msgctxt "autoformattable|extended_tip|preview"
msgid "Displays a preview of the current selection."
-msgstr ""
+msgstr "Lit in foarbyld sjen fan de aktive seleksje."
#. qcCWk
#: sc/uiconfig/scalc/ui/autoformattable.ui:177
msgctxt "autoformattable|extended_tip|formatlb"
msgid "Choose a predefined AutoFormat to apply to a selected area in your sheet."
-msgstr ""
+msgstr "Kies in foarôf definiearre AutoYndieling om dizze op in selektearre gebiet yn jo blêd ta te passen."
#. NFYeX
#: sc/uiconfig/scalc/ui/autoformattable.ui:210
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "~Triem"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "De rânen fan de selektearre sellen oantsjutte."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Ynsprong fergrutsje"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Ynsprong ferlytsje"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "T_hús"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Thús"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fjil_d"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ynfoegje"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ynfoegje"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objekt rjochting"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Yndieling"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Yndieling"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistiken"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Gegevens"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Gegevens"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Resinsje"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Resinsje"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Werjefte"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Werjefte"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ofbyldin_g"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ofbyldin~g"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tekenje"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tekenje"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omsette"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Printsje"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Printsje"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulier"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Ta_foeging"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ta~foeging"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ark"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "A~rk"
@@ -27752,13 +27752,13 @@ msgstr "Siden"
#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:22
msgctxt "protectsheetdlg|ProtectSheetDialog"
msgid "Protect Sheet"
-msgstr "Blêd befeiligje"
+msgstr "Blêd beskermje"
#. y8tgW
#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:106
msgctxt "protectsheetdlg|protect"
msgid "P_rotect this sheet and the contents of protected cells"
-msgstr "B_efeiligje dit rekkenblêd en de ynhâld fan de befeilige sellen"
+msgstr "B_eskermje dit rekkenblêd en de ynhâld fan de beskerme sellen"
#. MvZAZ
#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:133
@@ -27782,7 +27782,7 @@ msgstr "Alle brûkers fan dit blêd tastean om:"
#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:292
msgctxt "protectsheetdlg|protected"
msgid "Select protected cells"
-msgstr "Befeilige sellen selektearje"
+msgstr "Beskerme sellen selektearje"
#. qQhAG
#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:304
@@ -27812,13 +27812,13 @@ msgstr "Rigen ynfoegje"
#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:352
msgctxt "protectsheetdlg|unprotected"
msgid "Select unprotected cells"
-msgstr "Net befeilige sellen selektearje"
+msgstr "Net beskerme sellen selektearje"
#. MTnMc
#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:393
msgctxt "protectsheetdlg|extended_tip|ProtectSheetDialog"
msgid "Protects the cells in the current sheet from being modified."
-msgstr ""
+msgstr "Beskermet de sellen yn it aktive blêd sadat se net feroare kinne wurde."
#. 3n2mh
#: sc/uiconfig/scalc/ui/queryrunstreamscriptdialog.ui:13
@@ -29626,338 +29626,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Oplosser"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_psjes..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "O_plosse"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Doel sel"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimalisearje resultaat nei"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Troch sellen te feroarjen"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Wearde fan"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Sel ferwizing"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "W_earde"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Sel ferwizing"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Sel ferwizing"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Sel ferwizing"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Sel ferwizing"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Hiel getal"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binêr"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Hiel getal"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binêr"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Hiel getal"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binêr"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Hiel getal"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binêr"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Wearde"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Wearde"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Wearde"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Wearde"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Wiskje"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Wiskje"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Wiskje"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Wiskje"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Beheinende betingsten"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/fy/sd/messages.po b/source/fy/sd/messages.po
index c77177b1620..8065d4e1eec 100644
--- a/source/fy/sd/messages.po
+++ b/source/fy/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-03 11:35+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/fy/>\n"
@@ -3819,116 +3819,116 @@ msgstr "~Tabel"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omsette"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ofbyldin_g"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ofbyldin~g"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tekenje"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tekenje"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulier"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Haad"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Haad"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "T_afoeging"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ta~foeging"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ark"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "A~rk"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menu"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "T_afoeging"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "~Triem"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "T_hús"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Thús"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fjil_d"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ynfoegje"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ynfoegje"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Yndieling"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Yndieling"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Dia foarstelling"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "D~ia foarstelling"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Resinsje"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Resinsje"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Werjefte"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Byld"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omsette"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ofbyldin_g"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ofbyldin~g"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tekenje"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tekenje"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulier"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Haad"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Haad"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Werjefte"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Oersicht"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "T_afoeging"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ta~foeging"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ark"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "A~rk"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Kontoer bewurkje"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "T_afoeging"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/fy/starmath/messages.po b/source/fy/starmath/messages.po
index 61b99f42511..86070c62609 100644
--- a/source/fy/starmath/messages.po
+++ b/source/fy/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-02 14:00+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/fy/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/fy/svx/messages.po b/source/fy/svx/messages.po
index 2575dedfd72..97e3ff68386 100644
--- a/source/fy/svx/messages.po
+++ b/source/fy/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-18 15:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/fy/>\n"
"Language: fy\n"
@@ -584,13 +584,13 @@ msgstr "EMFs"
#: include/svx/strings.hrc:119
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#. tc3Jb
#: include/svx/strings.hrc:120
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
-msgstr ""
+msgstr "PDF's"
#. b3os5
#: include/svx/strings.hrc:121
@@ -1775,7 +1775,7 @@ msgstr "Line patroan"
#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
-msgstr "Line dikte"
+msgstr "Line tsjokte"
#. NuJkv
#: include/svx/strings.hrc:321
@@ -2069,7 +2069,7 @@ msgstr "Skaad trochsichtigens"
#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
-msgstr ""
+msgstr "Skaad ferfage"
#. sDFuG
#: include/svx/strings.hrc:370
@@ -6480,7 +6480,7 @@ msgstr "Formulier"
#: include/svx/strings.hrc:1169
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
-msgstr ""
+msgstr "Ferburgen"
#. DnoDH
#: include/svx/strings.hrc:1170
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "De dia oan it aktuele finster oanpasse."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Koe net alle SmartArts lade. Bewarje it yn Microsoft Office 2010 of letter om dizze swierrigens foar te kommen."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -7643,7 +7643,7 @@ msgstr "$(CAPACITY) kiB"
#: include/svx/strings.hrc:1373
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
-msgstr ""
+msgstr "$(CAPACITY) kiB ($(REDUCTION) % fermindering)"
#. 8GqWz
#: include/svx/strings.hrc:1374
@@ -9846,13 +9846,13 @@ msgstr "Fontwork"
#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
-msgstr ""
+msgstr "Digitaal ûndertekene troch:"
#. NyP2E
#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
-msgstr ""
+msgstr "Datum: %1"
#. oFcMf
#: include/svx/svxitems.hrc:33
@@ -9894,7 +9894,7 @@ msgstr "Lettertype steat"
#: include/svx/svxitems.hrc:39
msgctxt "RID_ATTR_NAMES"
msgid "Font weight"
-msgstr "Teken dikte"
+msgstr "Teken tsjokte"
#. FHznU
#: include/svx/svxitems.hrc:40
@@ -10074,7 +10074,7 @@ msgstr "Knipperend"
#: include/svx/svxitems.hrc:69
msgctxt "RID_ATTR_NAMES"
msgid "Page line-spacing"
-msgstr ""
+msgstr "Side rigel ôfstân"
#. t2uX7
#: include/svx/svxitems.hrc:70
@@ -10110,7 +10110,7 @@ msgstr "Steat fan Aziatysk lettertype"
#: include/svx/svxitems.hrc:75
msgctxt "RID_ATTR_NAMES"
msgid "Weight of Asian font"
-msgstr "Dikte fan Aziatysk lettertype"
+msgstr "Tsjokte fan Aziatysk lettertype"
#. 4BGdv
#: include/svx/svxitems.hrc:76
@@ -10140,7 +10140,7 @@ msgstr "Steat fan komplekse skripten"
#: include/svx/svxitems.hrc:80
msgctxt "RID_ATTR_NAMES"
msgid "Weight of complex scripts"
-msgstr "Dikte fan komplekse skripten"
+msgstr "Tsjokte fan komplekse skripten"
#. CiTka
#: include/svx/svxitems.hrc:81
@@ -10410,121 +10410,121 @@ msgstr "Krektlyk"
#: svx/inc/formnavi.hrc:29
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit"
msgid "~Text Box"
-msgstr ""
+msgstr "~Tekstfak"
#. LaRik
#: svx/inc/formnavi.hrc:30
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
msgid "~Button"
-msgstr ""
+msgstr "~Knop"
#. qjKaG
#: svx/inc/formnavi.hrc:31
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
msgid "La~bel field"
-msgstr ""
+msgstr "Le~bel fjild"
#. sq3AT
#: svx/inc/formnavi.hrc:32
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
msgid "L~ist Box"
-msgstr ""
+msgstr "K~arlist"
#. agpbk
#: svx/inc/formnavi.hrc:33
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
msgid "~Check Box"
-msgstr ""
+msgstr "~Karfakje"
#. 9WA4B
#: svx/inc/formnavi.hrc:34
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
msgid "~Radio Button"
-msgstr ""
+msgstr "Ka~rrûntsje"
#. PpgmW
#: svx/inc/formnavi.hrc:35
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
msgid "G~roup Box"
-msgstr ""
+msgstr "G~roepsfak"
#. A8Dbz
#: svx/inc/formnavi.hrc:36
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
-msgstr ""
+msgstr "Karlist mei ~ynfierfak"
#. HRAoH
#: svx/inc/formnavi.hrc:37
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
msgid "I~mage Button"
-msgstr ""
+msgstr "O~fbylding knop"
#. gZZqq
#: svx/inc/formnavi.hrc:38
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
msgid "~File Selection"
-msgstr ""
+msgstr "~Triem seleksje"
#. EEADE
#: svx/inc/formnavi.hrc:39
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
msgid "~Date Field"
-msgstr ""
+msgstr "~Datumfjild"
#. gDr8N
#: svx/inc/formnavi.hrc:40
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
msgid "Tim~e Field"
-msgstr ""
+msgstr "Tii~d fjild"
#. jAbfP
#: svx/inc/formnavi.hrc:41
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
msgid "~Numerical Field"
-msgstr ""
+msgstr "~Numerykfjild"
#. ryXjj
#: svx/inc/formnavi.hrc:42
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
msgid "C~urrency Field"
-msgstr ""
+msgstr "Fal~uta fjild"
#. GXHFr
#: svx/inc/formnavi.hrc:43
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
msgid "~Pattern Field"
-msgstr ""
+msgstr "~Patroanfjild"
#. a7jCc
#: svx/inc/formnavi.hrc:44
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
msgid "Ima~ge Control"
-msgstr ""
+msgstr "Ofbyld~ing elemint"
#. WDsBh
#: svx/inc/formnavi.hrc:45
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
msgid "Fo~rmatted Field"
-msgstr ""
+msgstr "O~pmakke fjild"
#. aEXn5
#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
-msgstr ""
+msgstr "Skowbalke"
#. cGxjA
#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
-msgstr ""
+msgstr "Draaiknop"
#. HYbc6
#: svx/inc/formnavi.hrc:48
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
-msgstr ""
+msgstr "Navigaasjebalke"
#. d7vkX
#: svx/inc/frmsel.hrc:29
@@ -11364,7 +11364,7 @@ msgstr "Side tekst gebiet"
#: svx/inc/swframeposstrings.hrc:46
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area top"
-msgstr ""
+msgstr "Side tekst gebiet boppe"
#. vWEe2
#: svx/inc/swframeposstrings.hrc:47
@@ -12372,7 +12372,7 @@ msgstr "_Akseptearje"
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:30
msgctxt "acceptrejectchangesdialog|extended_tip|accept"
msgid "Accepts the selected change and removes the highlighting from the change in the document."
-msgstr ""
+msgstr "Akseptearret de selektearre feroaring en wisket de markearring fan de feroaring yn it dokumint."
#. UEZKm
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:43
@@ -12384,7 +12384,7 @@ msgstr "_Ofkarre"
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:50
msgctxt "acceptrejectchangesdialog|extended_tip|reject"
msgid "Rejects the selected change and removes the highlighting from the change in the document."
-msgstr ""
+msgstr "Wegeret de selektearre feroaring en wisket de markearring fan de feroaring yn it dokumint."
#. CY86f
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:63
@@ -12396,7 +12396,7 @@ msgstr "Alles ak_septearje"
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:70
msgctxt "acceptrejectchangesdialog|extended_tip|acceptall"
msgid "Accepts all of the changes and removes the highlighting from the document."
-msgstr ""
+msgstr "Akseptearret alle feroaringen en wisket de markearringen yn it dokumint."
#. debjw
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:83
@@ -12408,13 +12408,13 @@ msgstr "Alles _wegerje"
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:90
msgctxt "acceptrejectchangesdialog|extended_tip|rejectall"
msgid "Rejects all of the changes and removes the highlighting from the document."
-msgstr ""
+msgstr "Wegeret alle feroaringen en wisket de markearringen yn it dokumint."
#. phEJs
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:110
msgctxt "acceptrejectchangesdialog|extended_tip|undo"
msgid "Reverse the last Accept or Reject command."
-msgstr ""
+msgstr "Makket de lêste opdracht foar akseptearjen of wegerjen ûngedien."
#. Jyka9
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:169
@@ -12426,7 +12426,7 @@ msgstr "Taljochting bewurkje..."
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:172
msgctxt "acceptrejectchangesdialog|extended_tip|calcedit"
msgid "Edit the comment for the selected change."
-msgstr ""
+msgstr "Bewurkje de notysje foar de selektearre feroaring."
#. kqtia
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:181
@@ -12474,7 +12474,7 @@ msgstr "Taljochting bewurkje..."
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:246
msgctxt "acceptrejectchangesdialog|extended_tip|writeredit"
msgid "Edit the comment for the selected change."
-msgstr ""
+msgstr "Bewurkje de notysje foar de selektearre feroaring."
#. 75VLB
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:255
@@ -12540,7 +12540,7 @@ msgstr "_Betingsten:"
#: svx/uiconfig/ui/addconditiondialog.ui:114
msgctxt "addconditiondialog|extended_tip|condition"
msgid "Enter a condition."
-msgstr ""
+msgstr "Fier in betingst yn."
#. GztAA
#: svx/uiconfig/ui/addconditiondialog.ui:144
@@ -12558,25 +12558,25 @@ msgstr "Namm_e romte bewurkje..."
#: svx/uiconfig/ui/addconditiondialog.ui:164
msgctxt "addconditiondialog|extended_tip|edit"
msgid "Opens the Form Namespaces dialog where you can add, edit, or delete namespaces."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Namme romte wêryn jo namme romten taheakje, bewurkje of wiskje kinne."
#. At9nJ
#: svx/uiconfig/ui/addconditiondialog.ui:191
msgctxt "addconditiondialog|extended_tip|result"
msgid "Displays a preview of the result."
-msgstr ""
+msgstr "Lit in foarbyld fan it resultaat sjen."
#. obZQs
#: svx/uiconfig/ui/addconditiondialog.ui:221
msgctxt "addconditiondialog|extended_tip|AddConditionDialog"
msgid "Add a condition in this subdialog of the Add Item / Edit Item dialog of the Data Navigator."
-msgstr ""
+msgstr "Heakje in betingst ta oan dit sub dialoochskerm fan it dialoochskerm Item taheakje / Item bewurkje of de Gegevens navigator."
#. AVvdB
#: svx/uiconfig/ui/adddataitemdialog.ui:103
msgctxt "adddataitemdialog|extended_tip|name"
msgid "Enter the name of the item."
-msgstr ""
+msgstr "Fier de namme fan it item yn."
#. Ac8VD
#: svx/uiconfig/ui/adddataitemdialog.ui:117
@@ -12600,7 +12600,7 @@ msgstr "_Taheakje..."
#: svx/uiconfig/ui/adddataitemdialog.ui:164
msgctxt "adddataitemdialog|extended_tip|value"
msgid "Enter a default value for the selected item."
-msgstr ""
+msgstr "Fier in standert wearde yn foar it selektearre item."
#. kDPzz
#: svx/uiconfig/ui/adddataitemdialog.ui:181
@@ -12618,7 +12618,7 @@ msgstr "_Gegevens type:"
#: svx/uiconfig/ui/adddataitemdialog.ui:237
msgctxt "adddataitemdialog|extended_tip|datatype"
msgid "Select the data type for the selected item."
-msgstr ""
+msgstr "Selektearje it gegevens type foar it selektearre item."
#. CDawq
#: svx/uiconfig/ui/adddataitemdialog.ui:248
@@ -12630,7 +12630,7 @@ msgstr "_Fereaske"
#: svx/uiconfig/ui/adddataitemdialog.ui:257
msgctxt "adddataitemdialog|extended_tip|required"
msgid "Specifies if the item must be included on the XForm."
-msgstr ""
+msgstr "Jout oan dat it item yn it XForm opnaam moat wêze."
#. xFrP8
#: svx/uiconfig/ui/adddataitemdialog.ui:268
@@ -12642,7 +12642,7 @@ msgstr "Betingst"
#: svx/uiconfig/ui/adddataitemdialog.ui:276
msgctxt "adddataitemdialog|extended_tip|requiredcond"
msgid "The Condition button opens the Add Condition dialog where you can enter used namespaces and full XPath expressions."
-msgstr ""
+msgstr "Mei de knop Betingst wurdt it dialoochskerm Betingsten taheakje iepene, wêryn jo de brûkte nammeromten en folsein XPath ekspresje ynfiere kinne."
#. Rqtm8
#: svx/uiconfig/ui/adddataitemdialog.ui:287
@@ -12654,7 +12654,7 @@ msgstr "R_elevant"
#: svx/uiconfig/ui/adddataitemdialog.ui:296
msgctxt "adddataitemdialog|extended_tip|relevant"
msgid "Declares the item as relevant."
-msgstr ""
+msgstr "Hjirmei ferklearje jo dat it item relevant is."
#. ZpbVz
#: svx/uiconfig/ui/adddataitemdialog.ui:307
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigaasjebalke"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"It ferûngelike rapport is mei sukses opladen.\n"
-"Jo kinne dit rapport fluch fine op:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Ferstjoer ferûngelike rapport"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Net ferstjoere"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -16708,7 +16705,7 @@ msgstr ""
#: svx/uiconfig/ui/floatinglineproperty.ui:57
msgctxt "floatinglineproperty|label1"
msgid "Custom Line Width:"
-msgstr "Oanpaste line dikte:"
+msgstr "Oanpaste line tsjokte:"
#. U9eWB
#: svx/uiconfig/ui/fontworkalignmentcontrol.ui:44
diff --git a/source/fy/sw/messages.po b/source/fy/sw/messages.po
index 5d64f3f9dd4..563d29b3ace 100644
--- a/source/fy/sw/messages.po
+++ b/source/fy/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562265656.000000\n"
#. v3oJv
@@ -100,11 +100,11 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr "Hâld nivo's fan de koppen oardere. Kop nivo %LEVEL_CURRENT% mei net efter %LEVEL_PREV% komme."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr "Fontworks yn jo dokuminten mije. Sjoch as jo it brûke om in foarbyld of in oare sinleaze tekst sjen te litten."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr ""
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -657,7 +657,7 @@ msgstr "Line styl"
#: sw/inc/inspectorproperties.hrc:40
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Width"
-msgstr "Line dikte"
+msgstr "Line tsjokte"
#. MVL7X
#: sw/inc/inspectorproperties.hrc:41
@@ -1161,19 +1161,19 @@ msgstr "Teken: ûnderstreking hat kleur"
#: sw/inc/inspectorproperties.hrc:124
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight"
-msgstr "Teken: dikte"
+msgstr "Teken: tsjokte"
#. EwWk2
#: sw/inc/inspectorproperties.hrc:125
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight Asian"
-msgstr "Teken: dikte Aziatysk"
+msgstr "Teken: tsjokte Aziatysk"
#. nxNQB
#: sw/inc/inspectorproperties.hrc:126
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight Complex"
-msgstr "Teken: dikte kompleks"
+msgstr "Teken: tsjokte kompleks"
#. D4T2M
#: sw/inc/inspectorproperties.hrc:127
@@ -1209,7 +1209,7 @@ msgstr "Dokumint yndeks markearring"
#: sw/inc/inspectorproperties.hrc:132
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Char Style Name"
-msgstr "inisjalen namme teken styl"
+msgstr "Inisjalen namme teken styl"
#. BtV5G
#: sw/inc/inspectorproperties.hrc:133
@@ -1221,7 +1221,7 @@ msgstr "Grutte inisjalen"
#: sw/inc/inspectorproperties.hrc:134
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Whole Word"
-msgstr "inisjalen foar hiele wurd"
+msgstr "Inisjalen foar hiele wurd"
#. LXhoV
#: sw/inc/inspectorproperties.hrc:135
@@ -11678,13 +11678,13 @@ msgstr "Ofstân:"
#: sw/uiconfig/swriter/ui/columnpage.ui:303
msgctxt "columnpage|extended_tip|spacing1mf"
msgid "Enter the amount of space that you want to leave between the columns."
-msgstr "Fier de romte yn dy't tusken de kolommen wêze moat."
+msgstr "Fier de romte yn dy't tusken de kolommen wêze moat."
#. CwCXd
#: sw/uiconfig/swriter/ui/columnpage.ui:325
msgctxt "columnpage|extended_tip|spacing2mf"
msgid "Enter the amount of space that you want to leave between the columns."
-msgstr "Fier de romte yn dy't tusken de kolommen wêze moat."
+msgstr "Fier de romte yn dy't tusken de kolommen wêze moat."
#. j8J9w
#: sw/uiconfig/swriter/ui/columnpage.ui:352
@@ -12236,7 +12236,7 @@ msgstr "Koptekst"
#: sw/uiconfig/swriter/ui/converttexttable.ui:296
msgctxt "converttexttable|extended_tip|headingcb"
msgid "Formats the first row of the new table as a heading."
-msgstr ""
+msgstr "Makket de earste rij fan de nije tabel op as in kop."
#. XqGoL
#: sw/uiconfig/swriter/ui/converttexttable.ui:307
@@ -12248,7 +12248,7 @@ msgstr "Koptekst werhelje"
#: sw/uiconfig/swriter/ui/converttexttable.ui:318
msgctxt "converttexttable|extended_tip|repeatheading"
msgid "Repeats the table header on each page that the table spans."
-msgstr ""
+msgstr "Werhellet de tabel koptekst op elke side dat de tabel beslacht."
#. URvME
#: sw/uiconfig/swriter/ui/converttexttable.ui:329
@@ -12260,7 +12260,7 @@ msgstr "Tabel net spjalte"
#: sw/uiconfig/swriter/ui/converttexttable.ui:338
msgctxt "converttexttable|extended_tip|dontsplitcb"
msgid "Does not divide the table across pages."
-msgstr ""
+msgstr "Ferdielt de tabel net oer meardere siden."
#. XaNbS
#: sw/uiconfig/swriter/ui/converttexttable.ui:359
@@ -12284,7 +12284,7 @@ msgstr "AutoOpmaak..."
#: sw/uiconfig/swriter/ui/converttexttable.ui:405
msgctxt "converttexttable|extended_tip|autofmt"
msgid "Opens the AutoFormat dialog, where you can select a predefined layout for table."
-msgstr ""
+msgstr "Iepenet it dialoochskerm AutoYndieling, wêryn jo in foarôf definiearre yndieling foar jo tabel selektearje kinne."
#. Jsmkz
#: sw/uiconfig/swriter/ui/converttexttable.ui:422
@@ -12296,7 +12296,7 @@ msgstr "Opsjes"
#: sw/uiconfig/swriter/ui/converttexttable.ui:454
msgctxt "converttexttable|extended_tip|ConvertTextTableDialog"
msgid "Converts the selected text into a table, or the selected table into text."
-msgstr ""
+msgstr "Sil de selektearre tekst omsette nei in tabel, of de selektearre tabel nei tekst."
#. FxaLn
#: sw/uiconfig/swriter/ui/createaddresslist.ui:13
@@ -12314,7 +12314,7 @@ msgstr "Adres gegevens"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:161
msgctxt "createaddresslist|extended_tip|CONTAINER"
msgid "Enter or edit the field contents for each mail merge recipient."
-msgstr ""
+msgstr "Fier de fjild ynhâld foar elke ûntfanger fan de standertbrief yn of feroarje de ynhâld."
#. UKKXX
#: sw/uiconfig/swriter/ui/createaddresslist.ui:185
@@ -12332,7 +12332,7 @@ msgstr "|<"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:212
msgctxt "createaddresslist|extended_tip|START"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "Klik op de knoppen om troch de records te navigearjen of fier in record nûmer yn om in record sjen te litten."
#. XAhXo
#: sw/uiconfig/swriter/ui/createaddresslist.ui:223
@@ -12344,7 +12344,7 @@ msgstr "<"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:229
msgctxt "createaddresslist|extended_tip|PREV"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "Klik op de knoppen om troch de records te navigearjen of fier in record nûmer yn om in record sjen te litten."
#. BFEtt
#: sw/uiconfig/swriter/ui/createaddresslist.ui:240
@@ -12356,7 +12356,7 @@ msgstr ">|"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:246
msgctxt "createaddresslist|extended_tip|END"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "Klik op de knoppen om troch de records te navigearjen of fier in record nûmer yn om in record sjen te litten."
#. vzQvB
#: sw/uiconfig/swriter/ui/createaddresslist.ui:257
@@ -12368,19 +12368,19 @@ msgstr ">"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:263
msgctxt "createaddresslist|extended_tip|NEXT"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "Klik op de knoppen om troch de records te navigearjen of fier in record nûmer yn om in record sjen te litten."
#. r6T84
#: sw/uiconfig/swriter/ui/createaddresslist.ui:286
msgctxt "createaddresslist|extended_tip|SETNOSB"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "Klik op de knoppen om troch de records te navigearjen of fier in record nûmer yn om in record sjen te litten."
#. KdhEt
#: sw/uiconfig/swriter/ui/createaddresslist.ui:303
msgctxt "createaddresslist|extended_tip|SETNOED"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "Klik op de knoppen om troch de records te navigearjen of fier in record nûmer yn om in record sjen te litten."
#. hPwMj
#: sw/uiconfig/swriter/ui/createaddresslist.ui:347
@@ -12392,7 +12392,7 @@ msgstr "_Nij"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:354
msgctxt "createaddresslist|extended_tip|NEW"
msgid "Adds a new blank record to the address list."
-msgstr ""
+msgstr "Foeget in nij leech record oan de adreslist ta."
#. jt8fG
#: sw/uiconfig/swriter/ui/createaddresslist.ui:366
@@ -12404,7 +12404,7 @@ msgstr "_Wiskje"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:373
msgctxt "createaddresslist|extended_tip|DELETE"
msgid "Deletes the selected record."
-msgstr ""
+msgstr "Wisket it selektearre record."
#. TDMA8
#: sw/uiconfig/swriter/ui/createaddresslist.ui:385
@@ -12416,7 +12416,7 @@ msgstr "_Sykje..."
#: sw/uiconfig/swriter/ui/createaddresslist.ui:392
msgctxt "createaddresslist|extended_tip|FIND"
msgid "Opens the Find Entry dialog. You can leave the dialog open while you edit the entries."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Item sykje. Jo kinne it dialoochskerm iepen litte wylst jo de items bewurkje."
#. rTdBt
#: sw/uiconfig/swriter/ui/createaddresslist.ui:404
@@ -12428,13 +12428,13 @@ msgstr "Oa_npasse..."
#: sw/uiconfig/swriter/ui/createaddresslist.ui:411
msgctxt "createaddresslist|extended_tip|CUSTOMIZE"
msgid "Opens the Customize Address List dialog where you can rearrange, rename, add, and delete fields."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Adreslist oanpasse wêryn jo fjilden kin oarderje, omneame, taheakje en wiskje."
#. DG4y3
#: sw/uiconfig/swriter/ui/createaddresslist.ui:446
msgctxt "createaddresslist|extended_tip|CreateAddressList"
msgid "Enter new addresses or edit the addresses for mail merge documents."
-msgstr ""
+msgstr "Fier nije adressen yn of bewurkje de adressen foar standerdbrief dokuminten."
#. bZoQN
#: sw/uiconfig/swriter/ui/createauthorentry.ui:8
@@ -12452,7 +12452,7 @@ msgstr "Ynfier gegevens"
#: sw/uiconfig/swriter/ui/createauthorentry.ui:216
msgctxt "createauthorentry|extended_tip|CreateAuthorEntryDialog"
msgid "Change the content of a bibliography entry."
-msgstr ""
+msgstr "Feroaret de ynhâld fan in literatuerlist item."
#. iuN5j
#: sw/uiconfig/swriter/ui/createautomarkdialog.ui:8
@@ -12470,7 +12470,7 @@ msgstr "Ynstjoeringen"
#: sw/uiconfig/swriter/ui/createautomarkdialog.ui:129
msgctxt "createautomarkdialog|extended_tip|CreateAutomarkDialog"
msgid "Create or edit a list of words to include in an Alphabetical Index."
-msgstr ""
+msgstr "Meitsje of bewurkje in list fan wurden om yn in alfabetyske yndeks."
#. 7dr3i
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:26
@@ -12488,13 +12488,13 @@ msgstr "_Taheakje..."
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:118
msgctxt "customizeaddrlistdialog|extended_tip|add"
msgid "Inserts a new text field."
-msgstr ""
+msgstr "Foeget in nij tekstfjild yn."
#. zesMS
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:137
msgctxt "customizeaddrlistdialog|extended_tip|delete"
msgid "Deletes the selected field."
-msgstr ""
+msgstr "Wisket it selektearre fjild."
#. 8TKnG
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:149
@@ -12506,7 +12506,7 @@ msgstr "_Omneame..."
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:156
msgctxt "customizeaddrlistdialog|extended_tip|rename"
msgid "Renames the selected text field."
-msgstr ""
+msgstr "Sil it selektearre tekst fjild omneame."
#. RRdew
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:184
@@ -12518,7 +12518,7 @@ msgstr "A_dreslist eleminten:"
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:226
msgctxt "customizeaddrlistdialog|extended_tip|treeview"
msgid "Select the fields that you want to move, delete, or rename."
-msgstr ""
+msgstr "Selektearje de fjilden dy jo ferpleatse, wiskje of omneame wolle."
#. Bmbc2
#: sw/uiconfig/swriter/ui/datasourcesunavailabledialog.ui:7
@@ -12560,7 +12560,7 @@ msgstr "_Inisjalen sjen litte"
#: sw/uiconfig/swriter/ui/dropcapspage.ui:71
msgctxt "dropcapspage|extended_tip|checkCB_SWITCH"
msgid "Applies the drop cap settings to the selected paragraph."
-msgstr ""
+msgstr "Past de inisjaal ynstellingen op de selektearre alinea ta."
#. CXZcp
#: sw/uiconfig/swriter/ui/dropcapspage.ui:83
@@ -12572,7 +12572,7 @@ msgstr "_Hiele wurd"
#: sw/uiconfig/swriter/ui/dropcapspage.ui:92
msgctxt "dropcapspage|extended_tip|checkCB_WORD"
msgid "Displays the first letter of the first word in the paragraph as a drop cap, and the remaining letters of the word as large type."
-msgstr ""
+msgstr "Lit de earste letter fan it earste wurd yn de alinea as inisjaal sjen, en de oare letters fan it wurd as grut lettertype."
#. YEaFN
#: sw/uiconfig/swriter/ui/dropcapspage.ui:106
@@ -12596,19 +12596,19 @@ msgstr "_Ofstân ta tekst:"
#: sw/uiconfig/swriter/ui/dropcapspage.ui:153
msgctxt "dropcapspage|extended_tip|spinFLD_DROPCAPS"
msgid "Enter the number of characters to convert to drop caps."
-msgstr ""
+msgstr "Fier it tal tekens yn dy omset wurde moatte nei inisjalen."
#. mTJvq
#: sw/uiconfig/swriter/ui/dropcapspage.ui:171
msgctxt "dropcapspage|extended_tip|spinFLD_LINES"
msgid "Enter the number of lines that you want the drop cap to extend downward from the first line of the paragraph. Shorter paragraphs will not get drop caps."
-msgstr ""
+msgstr "Fier it tal rigels yn wêrmei jo de inisjaal fan ôf de earste rigel fan de alinea nei ûnderen útwreidzje wolle. Koartere alinea's krije gjin inisjalen."
#. tZURF
#: sw/uiconfig/swriter/ui/dropcapspage.ui:190
msgctxt "dropcapspage|extended_tip|spinFLD_DISTANCE"
msgid "Enter the amount of space to leave between the drop caps and the rest of the text in the paragraph."
-msgstr ""
+msgstr "Fier de romte dy tusken de inisjalen en de rest fan de tekst yn de alinea sitte moat."
#. PQ6xG
#: sw/uiconfig/swriter/ui/dropcapspage.ui:207
@@ -12632,13 +12632,13 @@ msgstr "Tekenstyl:"
#: sw/uiconfig/swriter/ui/dropcapspage.ui:274
msgctxt "dropcapspage|extended_tip|entryEDT_TEXT"
msgid "Enter the text that you want to display as drop caps instead of the first letters of the paragraph."
-msgstr ""
+msgstr "Fier de tekst yn dy werjûn moat wurde as inisjalen ynplak fan de earste letters fan de alinea."
#. eTLND
#: sw/uiconfig/swriter/ui/dropcapspage.ui:289
msgctxt "dropcapspage|extended_tip|comboBOX_TEMPLATE"
msgid "Select the formatting style that you want to apply to the drop caps."
-msgstr ""
+msgstr "Selektearje it yndieling styl dat jo op de inisjalen tapasse wolle."
#. tAmQu
#: sw/uiconfig/swriter/ui/dropcapspage.ui:306
@@ -12650,7 +12650,7 @@ msgstr "Ynhâld"
#: sw/uiconfig/swriter/ui/dropcapspage.ui:362
msgctxt "dropcapspage|extended_tip|DropCapPage"
msgid "Formats the first letter of a paragraph with a large capital letter, that can span several lines. The paragraph must span at least as many lines as you specify in the Lines box."
-msgstr ""
+msgstr "Hjirmei wurdt de earste letter fan in alinea opmakke mei in grutte haadletter, dy meardere rigels befetsje kin. Jo kinne ek it earste wurd fan de alinea opmeitsje mei in grut lettertype."
#. dkjDS
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:16
@@ -12662,13 +12662,13 @@ msgstr "Item kieze: "
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:59
msgctxt "dropdownfielddialog|extended_tip|next"
msgid "Closes the current Input list and displays the next, if available."
-msgstr ""
+msgstr "Slút de aktive ynfier list en wurdt de folgjende as beskikber werjûn."
#. Ct7px
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:84
msgctxt "dropdownfielddialog|extended_tip|edit"
msgid "Displays the Edit Fields: Functions dialog, where you can edit the Input list."
-msgstr ""
+msgstr "Lit it dialoochskerm Fjilden bewurkje: Funksjes sjen, wêryn jo de ynfier list bewurkje kinne."
#. k3yMJ
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:219
@@ -12716,7 +12716,7 @@ msgstr "Kategoryen bewurkje"
#: sw/uiconfig/swriter/ui/editcategories.ui:42
msgctxt "editcategories|extended_tip|new"
msgid "Creates a new AutoText category using the name that you entered in the Name box."
-msgstr ""
+msgstr "Makket in nije AutoTekst kategory mei de namme dy't jo yn it fak Namme ynfierd ha."
#. ckaZS
#: sw/uiconfig/swriter/ui/editcategories.ui:69
@@ -12728,7 +12728,7 @@ msgstr "_Omneame"
#: sw/uiconfig/swriter/ui/editcategories.ui:77
msgctxt "editcategories|extended_tip|rename"
msgid "Changes the name of the selected AutoText category to the name that you enter in the Name box."
-msgstr ""
+msgstr "Feroaret de namme fan de selektearre AutoTekst kategory nei de namme dy't jo yn it fak Namme ynfiere."
#. 29qRx
#: sw/uiconfig/swriter/ui/editcategories.ui:154
@@ -12740,13 +12740,13 @@ msgstr "Karlist"
#: sw/uiconfig/swriter/ui/editcategories.ui:212
msgctxt "editcategories|extended_tip|group"
msgid "Lists the existing AutoText categories and the corresponding paths."
-msgstr ""
+msgstr "Lit de besteande AutoTekst kategoryen en de oerienkommende paden sjen."
#. XgP6M
#: sw/uiconfig/swriter/ui/editcategories.ui:231
msgctxt "editcategories|extended_tip|pathlb"
msgid "Displays the current path to the directory where the selected AutoText category files are stored. If you are creating an AutoText category, select where you want to store the category files."
-msgstr ""
+msgstr "Lit it aktive paad nei de map sjen wêr de selektearre AutoTekst kategory triemmen bewarre wurde. As jo in AutoTekst kategory oanmeitsje, selektearje jo wêr de kategory triemmen bewarre meie wurde."
#. 94dZM
#: sw/uiconfig/swriter/ui/editcategories.ui:244
@@ -12764,13 +12764,13 @@ msgstr "Kategory"
#: sw/uiconfig/swriter/ui/editcategories.ui:276
msgctxt "editcategories|extended_tip|name"
msgid "Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click Rename. To create a new category, type a name, and then click New."
-msgstr ""
+msgstr "Jout de namme fan de selektearre AutoTekst kategory. Fier in nije namme yn en klik op Omneame om de namme fan de kategory te feroarjen. Wolle jo in nije kategory oanmeitsje, dan fiere jo in namme yn klikke jo dan op Nij."
#. saGoB
#: sw/uiconfig/swriter/ui/editcategories.ui:307
msgctxt "editcategories|extended_tip|EditCategoriesDialog"
msgid "Adds, renames, or deletes AutoText categories."
-msgstr ""
+msgstr "Hjirmei kinne jo AutoTekst kategoryen taheakje, omneame of wiskje."
#. uQE9B
#: sw/uiconfig/swriter/ui/editfielddialog.ui:18
@@ -12788,7 +12788,7 @@ msgstr "Foarich fjild fan itselde type"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:104
msgctxt "editfielddialog|extended_tip|prev"
msgid "Edit field contents."
-msgstr ""
+msgstr "Fjild ynhâld bewurkje."
#. T4GAj
#: sw/uiconfig/swriter/ui/editfielddialog.ui:118
@@ -12800,7 +12800,7 @@ msgstr "Folgjend fjild fan itselde type"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:123
msgctxt "editfielddialog|extended_tip|next"
msgid "Edit field contents."
-msgstr ""
+msgstr "Fjild ynhâld bewurkje."
#. Gg5FB
#: sw/uiconfig/swriter/ui/editfielddialog.ui:134
@@ -12818,13 +12818,13 @@ msgstr "Fariabele fjild ynhâld bewurkje"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:144
msgctxt "editfielddialog|extended_tip|edit"
msgid "Edit field contents."
-msgstr ""
+msgstr "Fjild ynhâld bewurkje."
#. Lds2R
#: sw/uiconfig/swriter/ui/editfielddialog.ui:176
msgctxt "editfielddialog|extended_tip|EditFieldDialog"
msgid "Edit field contents."
-msgstr ""
+msgstr "Fjild ynhâld bewurkje."
#. cL2RH
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:18
@@ -12842,19 +12842,19 @@ msgstr "_Opsjes..."
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:87
msgctxt "editsectiondialog|extended_tip|remove"
msgid "Removes the selected section from the document, and inserts the contents of the section into the document."
-msgstr ""
+msgstr "Wisket de selektearre seksje út it dokumint en foeget de ynhâld fan de seksje yn it dokumint yn."
#. aqo5i
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:159
msgctxt "editsectiondialog|extended_tip|curname"
msgid "Type a name for the new section."
-msgstr ""
+msgstr "Fier in namme foar de nije seksje yn."
#. qwvCU
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:207
msgctxt "editsectiondialog|extended_tip|tree"
msgid "Type the name of the section that you want to edit, or click a name in the Section list."
-msgstr ""
+msgstr "Fier de namme yn fan de seksje dy't jo bewurkje wolle of klik op de namme yn de seksje list."
#. hQmDw
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:226
@@ -12872,7 +12872,7 @@ msgstr "_Keppeling"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:282
msgctxt "editsectiondialog|extended_tip|link"
msgid "Inserts the contents of another document or section from another document in the current section."
-msgstr ""
+msgstr "Foeget de ynhâld fan in oar dokumint of seksje út in oar dokumint yn de aktive seksje yn."
#. AtCiy
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:293
@@ -12884,7 +12884,7 @@ msgstr "DD_E"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:304
msgctxt "editsectiondialog|extended_tip|dde"
msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected."
-msgstr ""
+msgstr "Makket in DDE keppeling. Selektearje dit karfakje en fier de DDE opdracht yn, dat jo brûke wolle. De opsje DDE is allinne beskikber as it karfakje Keppeling selektearre is."
#. kuxD5
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:329
@@ -12896,13 +12896,13 @@ msgstr "Blêdzje..."
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:336
msgctxt "editsectiondialog|extended_tip|file"
msgid "Locate the file that you want to insert as a link, and then click Insert."
-msgstr ""
+msgstr "Sykje de triem, dat jo as keppeling ynfoegje wolle, en klik dan op ynfoegje."
#. KpDNG
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:353
msgctxt "editsectiondialog|extended_tip|filename"
msgid "Enter the path and the filename for the file that you want to insert, or click the Browse button to locate the file."
-msgstr ""
+msgstr "Fier it paad en de triemnamme yn fan de triem dat jo ynfoegje wolle of klik op de knop sneupe om de triem op te sykjen."
#. Bc8Ga
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:366
@@ -12914,7 +12914,7 @@ msgstr "_Seksje"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:390
msgctxt "editsectiondialog|extended_tip|section"
msgid "Select the section in the file that you want to insert as a link."
-msgstr ""
+msgstr "Selektearje it diel fan it triem dat jo as keppeling ynfoegje wolle."
#. FaKhg
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:409
@@ -12944,7 +12944,7 @@ msgstr "_Befeiligje"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:507
msgctxt "editsectiondialog|extended_tip|protect"
msgid "Prevents the selected section from being edited."
-msgstr ""
+msgstr "Foarkomt dat it selektearre diel bewurke kin wurde."
#. cCKhF
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:529
@@ -12956,7 +12956,7 @@ msgstr "_Mei wachtwurd"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:542
msgctxt "editsectiondialog|extended_tip|withpassword"
msgid "Protects the selected section with a password. The password must have a minimum of 5 characters."
-msgstr ""
+msgstr "Beskermet it selektearre diel mei in wachtwurd. It wachtwurd moat yn elk gefal 5 tekens lang wêze."
#. FqGwf
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:553
@@ -12968,7 +12968,7 @@ msgstr "Wachtwurd..."
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:563
msgctxt "editsectiondialog|extended_tip|password"
msgid "Opens a dialog where you can change the current password."
-msgstr ""
+msgstr "Iepenet in dialoochskerm wêr jo it aktive wachtwurd feroarje kinne."
#. Vb88z
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:588
@@ -12986,7 +12986,7 @@ msgstr "Ferbergje"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:637
msgctxt "editsectiondialog|extended_tip|hide"
msgid "Hides and prevents the selected section from being printed."
-msgstr ""
+msgstr "Ferberget de selektearre seksje en foarkomt dat dy printe wurdt."
#. YR5xA
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:663
@@ -12998,7 +12998,7 @@ msgstr "Mei _betingst"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:682
msgctxt "editsectiondialog|extended_tip|condition"
msgid "Enter the condition that must be met to hide the section."
-msgstr ""
+msgstr "Fier de betingst yn, wêroan foldien moat wurde om de seksje te ferbergjen."
#. tnwHD
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:707
@@ -13022,7 +13022,7 @@ msgstr "Eigenskippen"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:806
msgctxt "editsectiondialog|extended_tip|EditSectionDialog"
msgid "Sets the properties of the section."
-msgstr ""
+msgstr "Set de eigenskippen fan de seksje."
#. Sy8Ao
#: sw/uiconfig/swriter/ui/endnotepage.ui:42
@@ -13052,25 +13052,25 @@ msgstr "Dêrnei"
#: sw/uiconfig/swriter/ui/endnotepage.ui:93
msgctxt "endnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first endnote in the document."
-msgstr ""
+msgstr "Fier it nûmer yn foar de earste einnoat yn it dokumint."
#. kEbXn
#: sw/uiconfig/swriter/ui/endnotepage.ui:109
msgctxt "endnotepage|extended_tip|prefix"
msgid "Enter the text that you want to display in front of the endnote number in the note text."
-msgstr ""
+msgstr "Fier de tekst yn dy't jo foar it einnoat nûmer yn de tekst fan de einnoat werjaan wolle."
#. UFXFD
#: sw/uiconfig/swriter/ui/endnotepage.ui:125
msgctxt "endnotepage|extended_tip|suffix"
msgid "Enter the text that you want to display after the endnote number in the note text."
-msgstr ""
+msgstr "Fier de tekst yn dy't jo nei it einnoat nûmer yn de tekst fan de einnoat werjaan wolle."
#. Fby7r
#: sw/uiconfig/swriter/ui/endnotepage.ui:140
msgctxt "endnotepage|extended_tip|numberinglb"
msgid "Enter the number for the first endnote in the document."
-msgstr ""
+msgstr "Fier it nûmer yn foar de earste einnoat yn it dokumint."
#. C5Z3B
#: sw/uiconfig/swriter/ui/endnotepage.ui:157
@@ -13094,13 +13094,13 @@ msgstr "Side"
#: sw/uiconfig/swriter/ui/endnotepage.ui:219
msgctxt "endnotepage|extended_tip|parastylelb"
msgid "Select the paragraph style for the endnote text. Only special styles can be selected."
-msgstr ""
+msgstr "Selektearje it alinea styl foar de einnoat tekst. Allinne spesjale stilen kinne selektearre wurde."
#. 3CM3n
#: sw/uiconfig/swriter/ui/endnotepage.ui:235
msgctxt "endnotepage|extended_tip|pagestylelb"
msgid "Select the page style that you want to use for endnotes."
-msgstr ""
+msgstr "Selektearje de side styl dat jo brûke wolle foar einnoaten."
#. taDmw
#: sw/uiconfig/swriter/ui/endnotepage.ui:248
@@ -13118,13 +13118,13 @@ msgstr "Einnoat gebiet"
#: sw/uiconfig/swriter/ui/endnotepage.ui:275
msgctxt "endnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for endnote anchors in the text area of your document."
-msgstr ""
+msgstr "Selektearje it teken styl dat jo brûke wolle foar einnoat ankers yn it tekst gebiet fan jo dokumint."
#. p8rDB
#: sw/uiconfig/swriter/ui/endnotepage.ui:291
msgctxt "endnotepage|extended_tip|charstylelb"
msgid "Select the character style that you want to use for the endnote numbers in the endnote area."
-msgstr ""
+msgstr "Selektearje de teken styl dat jo brûke wolle foar de einnoat nûmers yn it gebiet foar einnoaten."
#. mUJmG
#: sw/uiconfig/swriter/ui/endnotepage.ui:308
@@ -13136,13 +13136,13 @@ msgstr "Stilen"
#: sw/uiconfig/swriter/ui/endnotepage.ui:322
msgctxt "endnotepage|extended_tip|EndnotePage"
msgid "Specifies the formatting for endnotes."
-msgstr ""
+msgstr "Beskaat de yndieling fan einnoaten."
#. eMZQa
#: sw/uiconfig/swriter/ui/envaddresspage.ui:49
msgctxt "envaddresspage|extended_tip|addredit"
msgid "Enter the delivery address."
-msgstr ""
+msgstr "Fier de gegevens fan de adressearre yn."
#. Ate7u
#: sw/uiconfig/swriter/ui/envaddresspage.ui:65
@@ -13160,7 +13160,7 @@ msgstr "Gegevensbank"
#: sw/uiconfig/swriter/ui/envaddresspage.ui:117
msgctxt "envaddresspage|extended_tip|database"
msgid "Select the database containing the address data that you want to insert."
-msgstr ""
+msgstr "Selektearje de gegevensboarne mei de adresgegevens dy't jo ynfoegje wolle."
#. hSE39
#: sw/uiconfig/swriter/ui/envaddresspage.ui:144
@@ -13172,7 +13172,7 @@ msgstr "Tabel"
#: sw/uiconfig/swriter/ui/envaddresspage.ui:161
msgctxt "envaddresspage|extended_tip|table"
msgid "Select the database table containing the address data that you want to insert."
-msgstr ""
+msgstr "Selektearje de gegevensboarne tabel mei de adresgegevens dy't jo ynfoegje wolle."
#. ng4U7
#: sw/uiconfig/swriter/ui/envaddresspage.ui:188
@@ -13184,7 +13184,7 @@ msgstr "Gegevensbank fjild"
#: sw/uiconfig/swriter/ui/envaddresspage.ui:205
msgctxt "envaddresspage|extended_tip|field"
msgid "Select the database field containing the address data that you want to insert, and then click the left arrow button. The data is added to the address box containing the cursor."
-msgstr ""
+msgstr "Selektearje de gegevensbank mei de adres gegevens dy't jo ynfoegje wolle, en klik op de linker pylk knop. De gegevens wurde ynfoege yn it adresfak wêr it rinnerke stiet."
#. GDUFX
#: sw/uiconfig/swriter/ui/envaddresspage.ui:231
@@ -13196,13 +13196,13 @@ msgstr "Ynfoegje"
#: sw/uiconfig/swriter/ui/envaddresspage.ui:237
msgctxt "envaddresspage|extended_tip|insert"
msgid "Select the database field containing the address data that you want to insert, and then click the left arrow button. The data is added to the address box containing the cursor."
-msgstr ""
+msgstr "Selektearje de gegevensbank mei de adres gegevens dy't jo ynfoegje wolle, en klik op de linker pylk knop. De gegevens wurde ynfoege yn it adresfak wêr it rinnerke stiet."
#. 9BZRZ
#: sw/uiconfig/swriter/ui/envaddresspage.ui:287
msgctxt "envaddresspage|extended_tip|senderedit"
msgid "Includes a return address on the envelope. Select the Sender check box, and then enter the return address."
-msgstr ""
+msgstr "Befettet it adres fan de stjoerder op de slúf. Selektearje it karfakje Stjoerder, en foegje it adres fan de stjoerd ta."
#. t3YBo
#: sw/uiconfig/swriter/ui/envaddresspage.ui:300
@@ -13220,7 +13220,7 @@ msgstr "Foarbyld"
#: sw/uiconfig/swriter/ui/envaddresspage.ui:360
msgctxt "envaddresspage|extended_tip|EnvAddressPage"
msgid "Enter the delivery and return addresses for the envelope. You can also insert address fields from a database, for example from the Addresses database."
-msgstr ""
+msgstr "Fier de adressearre en it adres fan de stjoerd yn foar de slúf yn. Jo kinne ek adresfjilden út in gegevensboarne ynfoegje, bygelyks út de Adres gegevensboarne."
#. HTUgZ
#: sw/uiconfig/swriter/ui/envdialog.ui:8
@@ -13292,13 +13292,13 @@ msgstr "_Alinea..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:132
msgctxt "envformatpage|extended_tip|leftaddr"
msgid "Enter the amount of space that you want to leave between the left edge of the envelope and the addressee field."
-msgstr ""
+msgstr "Fier de romte grutte yn dy der tusken de linker râne fan de slúf en de adressearre befine moat."
#. 8jw6r
#: sw/uiconfig/swriter/ui/envformatpage.ui:150
msgctxt "envformatpage|extended_tip|topaddr"
msgid "Enter the amount of space that you want to leave between the top edge of the envelope and the addressee field."
-msgstr ""
+msgstr "Fier de romte grutte yn dy der tusken de boppekant fan de slúf en de adressearre befine moat."
#. WXNci
#: sw/uiconfig/swriter/ui/envformatpage.ui:169
@@ -13328,7 +13328,7 @@ msgstr "Bewurkje"
#: sw/uiconfig/swriter/ui/envformatpage.ui:253
msgctxt "envformatpage|extended_tip|addredit"
msgid "Click and choose the text formatting style for the addressee field that you want to edit."
-msgstr ""
+msgstr "Klik en kies de yndieling styl foar it adressearre fjild dat jo bewurkje wolle."
#. uXzTX
#: sw/uiconfig/swriter/ui/envformatpage.ui:276
@@ -13346,13 +13346,13 @@ msgstr "Adressearre"
#: sw/uiconfig/swriter/ui/envformatpage.ui:348
msgctxt "envformatpage|extended_tip|leftsender"
msgid "Enter the amount of space that you want to leave between the left edge of the envelope and the sender field."
-msgstr ""
+msgstr "Fier de romte grutte yn dy der tusken de linker râne fan de slúf en it stjoerder fjild befine moat."
#. DSKXB
#: sw/uiconfig/swriter/ui/envformatpage.ui:366
msgctxt "envformatpage|extended_tip|topsender"
msgid "Enter the amount of space that you want to leave between the top edge of the envelope and the sender field."
-msgstr ""
+msgstr "Fier de romte grutte yn dy der tusken de boppekant fan de slúf en it stjoerder fjild befine moat."
#. VjJGu
#: sw/uiconfig/swriter/ui/envformatpage.ui:385
@@ -13382,7 +13382,7 @@ msgstr "Bewurkje"
#: sw/uiconfig/swriter/ui/envformatpage.ui:469
msgctxt "envformatpage|extended_tip|senderedit"
msgid "Click and choose the text formatting style for the sender field that you want to edit."
-msgstr ""
+msgstr "Klik en kies de yndieling styl foar it stjoerder fjild dat jo bewurkje wolle."
#. 7uAao
#: sw/uiconfig/swriter/ui/envformatpage.ui:492
@@ -13418,19 +13418,19 @@ msgstr "_Hichte"
#: sw/uiconfig/swriter/ui/envformatpage.ui:596
msgctxt "envformatpage|extended_tip|width"
msgid "Enter the width of the envelope."
-msgstr ""
+msgstr "Fier de breedte fan de slúf yn."
#. xVPdi
#: sw/uiconfig/swriter/ui/envformatpage.ui:615
msgctxt "envformatpage|extended_tip|height"
msgid "Enter the height of the envelope."
-msgstr ""
+msgstr "Fier de hichte fan de slúf yn."
#. g3nMo
#: sw/uiconfig/swriter/ui/envformatpage.ui:630
msgctxt "envformatpage|extended_tip|format"
msgid "Select the envelope size that want, or select \"User Defined\", and then enter the width and the height of the custom size."
-msgstr ""
+msgstr "Selektearje de winske slúf grutte, of selektearje de opsje \"Brûker fêststeld\", en fier dan de breedte en hichte foar de oanpaste grutte yn."
#. 6nRvd
#: sw/uiconfig/swriter/ui/envformatpage.ui:651
@@ -13448,7 +13448,7 @@ msgstr "Grutte"
#: sw/uiconfig/swriter/ui/envformatpage.ui:682
msgctxt "envformatpage|extended_tip|EnvFormatPage"
msgid "Specifies the layout and the dimension of the envelope."
-msgstr ""
+msgstr "Sil de yndieling en grutte fan de slúf oantsjutte."
#. MaML5
#: sw/uiconfig/swriter/ui/envprinterpage.ui:104
@@ -13460,7 +13460,7 @@ msgstr "_Ferlytsje fan ôf boppe"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:114
msgctxt "envprinterpage|extended_tip|top"
msgid "Feeds the envelope with the print side face up in the printer tray."
-msgstr ""
+msgstr "Lis de slúf mei de te printsjen kant nei boppe yn de papierlade."
#. GbGdf
#: sw/uiconfig/swriter/ui/envprinterpage.ui:126
@@ -13472,7 +13472,7 @@ msgstr "Fan ô_f ûnder printsje"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:136
msgctxt "envprinterpage|extended_tip|bottom"
msgid "Feeds the envelope with the print side face down in the printer tray."
-msgstr ""
+msgstr "Lis de slúf mei de te printsjen kant nei ûnderen yn de papierlade."
#. JKEJA
#: sw/uiconfig/swriter/ui/envprinterpage.ui:150
@@ -13490,13 +13490,13 @@ msgstr "Fersko _omleech"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:183
msgctxt "envprinterpage|extended_tip|right"
msgid "Enter the amount to shift the print area to the right."
-msgstr ""
+msgstr "Fier it tal yn wêrmei it print gebiet nei rjochts ferpleatst moat wurde."
#. LYacC
#: sw/uiconfig/swriter/ui/envprinterpage.ui:201
msgctxt "envprinterpage|extended_tip|down"
msgid "Enter the amount to shift the print area down."
-msgstr ""
+msgstr "Fier it tal yn wêrmei it print gebiet nei ûnderen ferpleatst moat wurde."
#. z5tvD
#: sw/uiconfig/swriter/ui/envprinterpage.ui:220
@@ -13586,7 +13586,7 @@ msgstr "Opset..."
#: sw/uiconfig/swriter/ui/envprinterpage.ui:478
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 ""
+msgstr "Iepenet it dialoochskerm printer ynstellingen wêryn jo oanfoljende printer ynstellingen fêststelle kinne, lykas papier grutte en oriïntaasje."
#. AKs6U
#: sw/uiconfig/swriter/ui/envprinterpage.ui:492
@@ -13604,7 +13604,7 @@ msgstr "Aktuele printer"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:525
msgctxt "envprinterpage|extended_tip|EnvPrinterPage"
msgid "Set the print options for the envelope."
-msgstr ""
+msgstr "Set de print opsjes foar de slúf."
#. mEd2Q
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:28
@@ -13640,7 +13640,7 @@ msgstr "Blêdzje..."
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:161
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
-msgstr ""
+msgstr "Iepenet in dialoochskerm Triem iepenje wêryn jo in gegevensbank triem (*.odb) selektearje kinne. De selektearre triem wurdt oan de list Beskikbere gegevensbanken taheakke."
#. ZgGFH
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:176
@@ -13656,13 +13656,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:230
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
-msgstr ""
+msgstr "Lit de gegevensbanken sjen dy op it stuit yn brûkme binne."
#. FSFCM
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:282
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
-msgstr ""
+msgstr "Lit it list fan gegevensbanken sjen dy't registrearre binne yn %PRODUCTNAME."
#. ZzrDA
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:304
@@ -13680,7 +13680,7 @@ msgstr "Gegevensbank op dokumint tapast:"
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:372
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
-msgstr ""
+msgstr "Feroaret de gegevensboarnen foar it aktive dokumint."
#. tmLFC
#: sw/uiconfig/swriter/ui/fielddialog.ui:8
@@ -13698,13 +13698,13 @@ msgstr "_Ynfoegje"
#: sw/uiconfig/swriter/ui/fielddialog.ui:46
msgctxt "fielddialog|extended_tip|ok"
msgid "Inserts the selected field at the current cursor position in the document. To close the dialog, click the Close button."
-msgstr ""
+msgstr "Foeget it selektearre fjild yn op de aktive posysje fan it rinnerke yn it dokumint. Klik op de knop Slute om it dialoochskerm te sluten."
#. AVAfz
#: sw/uiconfig/swriter/ui/fielddialog.ui:65
msgctxt "fielddialog|extended_tip|cancel"
msgid "Closes the dialog."
-msgstr ""
+msgstr "Slút it dialoochskerm."
#. kViDy
#: sw/uiconfig/swriter/ui/fielddialog.ui:143
@@ -13746,13 +13746,13 @@ msgstr "Gegevensbank"
#: sw/uiconfig/swriter/ui/fielddialog.ui:409
msgctxt "fielddialog|extended_tip|FieldDialog"
msgid "Inserts a field at the current cursor position."
-msgstr ""
+msgstr "Foeget in fjild yn op de posysje fan it rinnerke."
#. yfE3P
#: sw/uiconfig/swriter/ui/findentrydialog.ui:33
msgctxt "findentrydialog|extended_tip|find"
msgid "Displays the next record that contains the search text."
-msgstr ""
+msgstr "Lit it folgjende record sjen dat de tekst fan sykjen befettet."
#. veaSC
#: sw/uiconfig/swriter/ui/findentrydialog.ui:97
@@ -13764,7 +13764,7 @@ msgstr "S_ykje"
#: sw/uiconfig/swriter/ui/findentrydialog.ui:115
msgctxt "findentrydialog|extended_tip|entry"
msgid "Enter the search term."
-msgstr ""
+msgstr "Fier de term fan sykjen yn."
#. CHJAa
#: sw/uiconfig/swriter/ui/findentrydialog.ui:138
@@ -13776,25 +13776,25 @@ msgstr "Sykje _allinne yn"
#: sw/uiconfig/swriter/ui/findentrydialog.ui:150
msgctxt "findentrydialog|extended_tip|findin"
msgid "Restricts the search to one data field."
-msgstr ""
+msgstr "Beheind it sykjen ta ien gegevens fjild."
#. LA7X8
#: sw/uiconfig/swriter/ui/findentrydialog.ui:169
msgctxt "findentrydialog|extended_tip|area"
msgid "Select the data field where you want to search for the text."
-msgstr ""
+msgstr "Selektearje it gegevens fjild wêr jo nei de tekst sykje wolle."
#. FQuFW
#: sw/uiconfig/swriter/ui/findentrydialog.ui:203
msgctxt "findentrydialog|extended_tip|FindEntryDialog"
msgid "Searches for a record or recipient in the mail merge address list."
-msgstr ""
+msgstr "Siket nei in record of ûntfanger yn de adreslist foar de standert brief."
#. x6NKD
#: sw/uiconfig/swriter/ui/flddbpage.ui:94
msgctxt "flddbpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjild typen sjen. Klik op fjild type, klik op in fjild yn de list Seleksje en klik dan op ynfoegje om in fjild oan jo dokumint ta te foegjen."
#. A5HF3
#: sw/uiconfig/swriter/ui/flddbpage.ui:107
@@ -13812,13 +13812,13 @@ msgstr "_Betingsten"
#: sw/uiconfig/swriter/ui/flddbpage.ui:155
msgctxt "flddbpage|extended_tip|condition"
msgid "For fields linked to a condition, enter the criteria here."
-msgstr ""
+msgstr "Fier foar fjilden keppele oan in betingst hjir de kritearia yn."
#. 8Xd25
#: sw/uiconfig/swriter/ui/flddbpage.ui:183
msgctxt "flddbpage|extended_tip|recnumber"
msgid "Enter the number of the record that you want to insert when the condition that you specify is met."
-msgstr ""
+msgstr "Fier in nûmer yn fan it record dat jo ynfoegje wolle as oan de betingst foldien wurd."
#. WnvGZ
#: sw/uiconfig/swriter/ui/flddbpage.ui:196
@@ -13830,13 +13830,13 @@ msgstr "Record nûmer"
#: sw/uiconfig/swriter/ui/flddbpage.ui:287
msgctxt "flddbpage|extended_tip|select"
msgid "Select the database table or the database query that you want the field to refer to."
-msgstr ""
+msgstr "Selektearje de gegevensbank tabel of de gegevensbank query wêrnei it fjild nei ferwize moat."
#. BfZZA
#: sw/uiconfig/swriter/ui/flddbpage.ui:300
msgctxt "flddbpage|label2"
msgid "Database S_election"
-msgstr ""
+msgstr "Gegevensbank s_eleksje"
#. JeBVb
#: sw/uiconfig/swriter/ui/flddbpage.ui:326
@@ -13854,7 +13854,7 @@ msgstr "Blêdzje..."
#: sw/uiconfig/swriter/ui/flddbpage.ui:344
msgctxt "flddbpage|extended_tip|browse"
msgid "Opens a file open dialog where you can select a database file (*.odb). The selected file is added to the Databases Selection list."
-msgstr ""
+msgstr "Iepenet in dialoochskerm Triem iepenje wêryn jo in gegevensbank triem (*.odb) selektearje kinne. De selektearre triem wurdt oan de list Seleksje gegevensbanken taheakke."
#. n7J6N
#: sw/uiconfig/swriter/ui/flddbpage.ui:383
@@ -13866,7 +13866,7 @@ msgstr "Fan gegevensbank"
#: sw/uiconfig/swriter/ui/flddbpage.ui:393
msgctxt "flddbpage|extended_tip|fromdatabasecb"
msgid "Uses the format defined in the selected database."
-msgstr ""
+msgstr "Brûkt de notaasje dy fêststeld is yn de selektearre gegevensbank."
#. 2eALF
#: sw/uiconfig/swriter/ui/flddbpage.ui:405
@@ -13878,19 +13878,19 @@ msgstr "Brûker fêststeld"
#: sw/uiconfig/swriter/ui/flddbpage.ui:418
msgctxt "flddbpage|extended_tip|userdefinedcb"
msgid "Applies the format that you select in the List of user-defined formats."
-msgstr ""
+msgstr "Past de yndieling ta dy jo selektearre ha yn de list mei brûker fêststelde notaasjes."
#. FRBDf
#: sw/uiconfig/swriter/ui/flddbpage.ui:438
msgctxt "flddbpage|extended_tip|format"
msgid "Lists the available user-defined formats."
-msgstr ""
+msgstr "Lit in list mei beskikbere troch brûker fêststelde yndieling sjen."
#. mY32p
#: sw/uiconfig/swriter/ui/flddbpage.ui:458
msgctxt "flddbpage|extended_tip|numformat"
msgid "Lists the available user-defined formats."
-msgstr ""
+msgstr "Lit in list mei beskikbere troch brûker fêststelde yndieling sjen."
#. LFxBU
#: sw/uiconfig/swriter/ui/flddbpage.ui:482
@@ -13902,7 +13902,7 @@ msgstr "Opmaak"
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:82
msgctxt "flddocinfopage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjild typen sjen. Klik op fjild type, klik op in fjild yn de list Seleksje en klik dan op ynfoegje om in fjild oan jo dokumint ta te foegjen."
#. 5B97z
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:95
@@ -13914,43 +13914,43 @@ msgstr "_Type"
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:156
msgctxt "flddocinfopage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjilden foar it selektearre fjild type yn de type list sjen. Om in fjild ta te foegjen, klik op it fjild, en dan op ynfoegje."
#. xAe8o
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:169
msgctxt "flddocinfopage|label2"
msgid "_Select"
-msgstr ""
+msgstr "S_elektearje"
#. oGvBL
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:237
msgctxt "flddocinfopage|extended_tip|format"
msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
-msgstr ""
+msgstr "Klik op de notaasje dy jo op it selektearre fjild tapasse wolle, of klik op \"Oare notaasjes\" foar it fêststellen fan in oanpaste notaasje."
#. yAc6z
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:251
msgctxt "flddocinfopage|fixed"
msgid "Fi_xed content"
-msgstr ""
+msgstr "Fê_ste ynhâld"
#. BojDo
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:260
msgctxt "flddocinfopage|extended_tip|fixed"
msgid "Inserts the field as static content, that is, the field cannot be updated."
-msgstr ""
+msgstr "Foegje in fjild as fêste ynhâld ta, wat ynhâld dat it fjild net fernijd kin wurde."
#. 3JnCq
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:278
msgctxt "flddocinfopage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Yndieling"
#. BmH6G
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:103
msgctxt "flddocumentpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjild typen sjen. Klik op fjild type, klik op in fjild yn de list Seleksje en klik dan op ynfoegje om in fjild oan jo dokumint ta te foegjen."
#. pmEvX
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:116
@@ -13962,55 +13962,55 @@ msgstr "_Type"
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:177
msgctxt "flddocumentpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjilden foar it selektearre fjild type yn de type list sjen. Om in fjild ta te foegjen, klik op it fjild, en dan op ynfoegje."
#. hnWF4
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:190
msgctxt "flddocumentpage|label2"
msgid "_Select"
-msgstr ""
+msgstr "S_elektearje"
#. xtXnr
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:267
msgctxt "flddocumentpage|extended_tip|format"
msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
-msgstr ""
+msgstr "Klik op de notaasje dy jo op it selektearre fjild tapasse wolle, of klik op \"Oare notaasjes\" foar it fêststellen fan in oanpaste notaasje."
#. DXvK2
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:327
msgctxt "flddocumentpage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Yndieling"
#. k7KnK
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:343
msgctxt "flddocumentpage|fixed"
msgid "Fi_xed content"
-msgstr ""
+msgstr "Fê_ste ynhâld"
#. TjKiH
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:352
msgctxt "flddocumentpage|extended_tip|fixed"
msgid "Inserts the field as static content, that is, the field cannot be updated."
-msgstr ""
+msgstr "Foegje in fjild as fêste ynhâld ta, wat ynhâld dat it fjild net fernijd kin wurde."
#. A7VDm
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:371
msgctxt "flddocumentpage|levelft"
msgid "_Level"
-msgstr ""
+msgstr "_Nivo"
#. VX38D
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:388
msgctxt "flddocumentpage|extended_tip|level"
msgid "Select the chapter heading level that you want to include in the selected field."
-msgstr ""
+msgstr "Selektearje it nivo foar haadstik titels dat jo yn it selektearre fjild opnimme wolle."
#. PjBqv
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:405
msgctxt "flddocumentpage|extended_tip|offset"
msgid "Enter the offset that you want to apply to a date or time field."
-msgstr ""
+msgstr "Fier de ferskowing yn dy't jo op in datum- of tiid fjild tapasse wolle."
#. j7fjs
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:418
@@ -14034,13 +14034,13 @@ msgstr "_Wearde"
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:475
msgctxt "flddocumentpage|extended_tip|value"
msgid "Enter the offset value that you want to apply to a page number field, for example \"+1\"."
-msgstr ""
+msgstr "Fier de ferskowing wearde yn dy't jo op in sidenûmer fjild tapasse wolle, bygelyks '+1\"."
#. DMTgW
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:84
msgctxt "fldfuncpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjild typen sjen. Klik op fjild type, klik op in fjild yn de list Seleksje en klik dan op ynfoegje om in fjild oan jo dokumint ta te foegjen."
#. GvXix
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:97
@@ -14052,19 +14052,19 @@ msgstr "_Type"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:167
msgctxt "fldfuncpage|label4"
msgid "_Select"
-msgstr ""
+msgstr "S_elektearje"
#. b3UqC
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:229
msgctxt "fldfuncpage|extended_tip|format"
msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
-msgstr ""
+msgstr "Klik op de notaasje dy jo op it selektearre fjild tapasse wolle, of klik op \"Oare notaasjes\" foar it fêststellen fan in oanpaste notaasje."
#. AYXG3
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:242
msgctxt "fldfuncpage|label2"
msgid "_Format"
-msgstr ""
+msgstr "_Yndieling"
#. CGoTS
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:267
@@ -14076,7 +14076,7 @@ msgstr "_Makro..."
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:275
msgctxt "fldfuncpage|extended_tip|macro"
msgid "Opens the Macro Selector, where you can choose the macro that will run when you click the selected field in the document."
-msgstr ""
+msgstr "Iepenet de Makro selekteur, wêr jo beskiede kin hokker makro útfierd wurdt wannear jo op it selektearre fjild yn it dokumint klikke."
#. cyE7z
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:295
@@ -14088,7 +14088,7 @@ msgstr "_Wearde"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:313
msgctxt "fldfuncpage|extended_tip|value"
msgid "Sets additional function parameters for fields. The type of parameter depends on the field type that you select."
-msgstr ""
+msgstr "Set ekstra funksje parameters foar de fjilden. It type parameter is ôfhinklik fan it fjild type dat jo selektearje."
#. Wm4pw
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:339
@@ -14106,7 +14106,7 @@ msgstr "Dan"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:396
msgctxt "fldfuncpage|extended_tip|cond1"
msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box."
-msgstr ""
+msgstr "Fier de tekst yn dy werjûn moat wurde wannear foldien wurdt oan de betingst yn it fak Dan, en de tekst dy werjûn moat wurde wannear dit bart yn it fak Oars."
#. VjhuY
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:421
@@ -14118,7 +14118,7 @@ msgstr "Oars"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:439
msgctxt "fldfuncpage|extended_tip|cond2"
msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box."
-msgstr ""
+msgstr "Fier de tekst yn dy werjûn moat wurde wannear foldien wurdt oan de betingst yn it fak Dan, en de tekst dy werjûn moat wurde wannear dit bart yn it fak Oars."
#. ALCUE
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:471
@@ -14130,13 +14130,13 @@ msgstr "It_em"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:489
msgctxt "fldfuncpage|extended_tip|item"
msgid "Enter a new item."
-msgstr ""
+msgstr "Fier in nij item yn."
#. F6LmM
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:514
msgctxt "fldfuncpage|extended_tip|add"
msgid "Adds the Item to the list."
-msgstr ""
+msgstr "Foegje it item ra oan de list."
#. 4KX6H
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:533
@@ -14148,13 +14148,13 @@ msgstr "Items op de _list"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:576
msgctxt "fldfuncpage|extended_tip|listitems"
msgid "Lists the items. The topmost item is shown in the document."
-msgstr ""
+msgstr "Lit de items sjen. It boppeste item wurdt yn it dokumint werjûn."
#. 2GZLS
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:605
msgctxt "fldfuncpage|extended_tip|remove"
msgid "Removes the selected item from the list."
-msgstr ""
+msgstr "Sil it selektearre fjild fan de list wiskje."
#. 4oMDF
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:617
@@ -14166,7 +14166,7 @@ msgstr "Omheech _ferpleatse"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:624
msgctxt "fldfuncpage|extended_tip|up"
msgid "Moves the selected item up in the list."
-msgstr ""
+msgstr "Sil it selektearre fjild omheech ferpleatse yn de list."
#. 5EA2P
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:636
@@ -14178,7 +14178,7 @@ msgstr "Omleec_h ferpleatse"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:643
msgctxt "fldfuncpage|extended_tip|down"
msgid "Moves the selected item down in the list."
-msgstr ""
+msgstr "Sil it selektearre fjild omleech ferpleatse yn de list."
#. 52SQ6
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:669
@@ -14190,13 +14190,13 @@ msgstr "Na_mme"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:687
msgctxt "fldfuncpage|extended_tip|listname"
msgid "Enter a unique name for the Input list."
-msgstr ""
+msgstr "Fier in unike namme yn foar de ynfier list."
#. knXRc
#: sw/uiconfig/swriter/ui/fldrefpage.ui:107
msgctxt "fldrefpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Selection list, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjild typen sjen. Klik op fjild type, klik op in fjild yn de list Seleksje en klik dan op ynfoegje om in fjild oan jo dokumint ta te foegjen."
#. xiiPJ
#: sw/uiconfig/swriter/ui/fldrefpage.ui:120
@@ -14208,7 +14208,7 @@ msgstr "_Type"
#: sw/uiconfig/swriter/ui/fldrefpage.ui:181
msgctxt "fldrefpage|extended_tip|format"
msgid "Select the format that you want to use for the selected reference field."
-msgstr ""
+msgstr "Selektearje de notaasje dy't jo brûke wolle foar it selektearre ferwizing fjild."
#. FGEEw
#: sw/uiconfig/swriter/ui/fldrefpage.ui:194
@@ -14232,13 +14232,13 @@ msgstr "Filter seleksje"
#: sw/uiconfig/swriter/ui/fldrefpage.ui:328
msgctxt "fldrefpage|extended_tip|selecttip"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjilden sjen foar it fjild type dat selektearre is yn de list Type. Klik op it fjild, selektearje in yndieling yn de list \"Ferwizing ynfoegje nei\" en selektearje ynfoegje foar it ynfoegjen fan in fjild."
#. BFEfh
#: sw/uiconfig/swriter/ui/fldrefpage.ui:373
msgctxt "fldrefpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjilden sjen foar it fjild type dat selektearre is yn de list Type. Klik op it fjild, selektearje in yndieling yn de list \"Ferwizing ynfoegje nei\" en selektearje ynfoegje foar it ynfoegjen fan in fjild."
#. AXSpR
#: sw/uiconfig/swriter/ui/fldrefpage.ui:392
@@ -14256,7 +14256,7 @@ msgstr "_Wearde"
#: sw/uiconfig/swriter/ui/fldrefpage.ui:439
msgctxt "fldrefpage|extended_tip|value"
msgid "Enter the contents that you want to add to a user-defined fields."
-msgstr ""
+msgstr "Fier de ynhâld yn dy't jo oan in brûker fêststeld fjild tafoegje wolle."
#. FyGMM
#: sw/uiconfig/swriter/ui/fldrefpage.ui:452
@@ -14268,19 +14268,19 @@ msgstr "Na_mme"
#: sw/uiconfig/swriter/ui/fldrefpage.ui:470
msgctxt "fldrefpage|extended_tip|name"
msgid "Type the name of the user-defined field that you want to create."
-msgstr ""
+msgstr "Fier de namme fan it brûker fêststelde fjild yn dat jo meitsje wolle."
#. NYEnx
#: sw/uiconfig/swriter/ui/fldrefpage.ui:502
msgctxt "fldrefpage|extended_tip|FieldRefPage"
msgid "This is where you insert the references or referenced fields into the current document. References are referenced fields within the same document or within sub-documents of a master document."
-msgstr ""
+msgstr "Dit is in punt wêrop jo de ferwizingen of fjilden wêrnei ferwiisd wurdt, yn it aktive dokumint ynfoegje. Ferwizingen binne fjilden wêrnei ferwiisd wurdt binnen itselde dokumint of binnen sub dokuminten fan in haad dokumint."
#. EMeve
#: sw/uiconfig/swriter/ui/fldvarpage.ui:112
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjild typen sjen. Klik op fjild type, klik op in fjild yn de list Seleksje en klik dan op ynfoegje om in fjild oan jo dokumint ta te foegjen."
#. MYGxL
#: sw/uiconfig/swriter/ui/fldvarpage.ui:125
@@ -14292,31 +14292,31 @@ msgstr "_Type"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:201
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
-msgstr ""
+msgstr "Lit de beskikbere fjilden foar it selektearre fjild type yn de type list sjen. Om in fjild ta te foegjen, klik op it fjild, en dan op ynfoegje."
#. JFbpp
#: sw/uiconfig/swriter/ui/fldvarpage.ui:214
msgctxt "fldvarpage|label2"
msgid "_Select"
-msgstr ""
+msgstr "S_elektearje"
#. ZuuQf
#: sw/uiconfig/swriter/ui/fldvarpage.ui:306
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
-msgstr ""
+msgstr "Klik op de notaasje dy jo op it selektearre fjild tapasse wolle, of klik op \"Oare notaasjes\" foar it fêststellen fan in oanpaste notaasje."
#. xFAmF
#: sw/uiconfig/swriter/ui/fldvarpage.ui:351
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or a number."
-msgstr ""
+msgstr "Yn de list Notaasje stelle jo fêst of de wearde as tekst of in getal ynfierd moat wurde."
#. WRjtn
#: sw/uiconfig/swriter/ui/fldvarpage.ui:371
msgctxt "fldvarpage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Yndieling"
#. qPpKb
#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
@@ -14328,7 +14328,7 @@ msgstr "Unsicht_ber"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:397
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
-msgstr ""
+msgstr "Ferberget t fjild ynhâld yn it dokumint."
#. hapyp
#: sw/uiconfig/swriter/ui/fldvarpage.ui:432
@@ -14340,7 +14340,7 @@ msgstr "_Nivo"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
msgctxt "fldvarpage|separatorft"
msgid "Se_parator"
-msgstr ""
+msgstr "S_kiedingsteken"
#. wrAG3
#: sw/uiconfig/swriter/ui/fldvarpage.ui:460
@@ -14352,7 +14352,7 @@ msgstr "Gjint"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:464
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose the heading or chapter level at which to restart numbering in the document."
-msgstr ""
+msgstr "Kies it kop of haadstik nivo wêrop de nûmering yn it dokumint op 'e nij begjinne moat."
#. ECBav
#: sw/uiconfig/swriter/ui/fldvarpage.ui:479
@@ -14364,7 +14364,7 @@ msgstr "."
#: sw/uiconfig/swriter/ui/fldvarpage.ui:482
msgctxt "fldvarpage|extended_tip|separator"
msgid "Type the character that you want to use as a separator between the heading or chapter levels."
-msgstr ""
+msgstr "Fier it teken dat jo as skiedingsteken tusken de kopregel- of haadstik nivo brûke wolle."
#. cVMoJ
#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
@@ -14382,7 +14382,7 @@ msgstr "Na_mme"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:557
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field that you want to create."
-msgstr ""
+msgstr "Fier de namme fan it brûker fêststelde fjild yn dat jo meitsje wolle."
#. 5qBE2
#: sw/uiconfig/swriter/ui/fldvarpage.ui:570
@@ -14394,7 +14394,7 @@ msgstr "_Wearde"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:589
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents that you want to add to a user-defined field."
-msgstr ""
+msgstr "Fier de ynhâld yn dy't jo oan in brûker fêststeld fjild tafoegje wolle."
#. BLiKH
#: sw/uiconfig/swriter/ui/fldvarpage.ui:610
@@ -14406,7 +14406,7 @@ msgstr "Tapasse"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:615
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
-msgstr ""
+msgstr "Foeget it troch de brûker fêststelde fjild ta oan de list Selektearje."
#. GKfDe
#: sw/uiconfig/swriter/ui/fldvarpage.ui:629
@@ -14418,7 +14418,7 @@ msgstr "Wiskje"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:634
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
-msgstr ""
+msgstr "Wisket it troch de brûker fêststelde fjild út de karlist. Jo kinne allinne fjilden wiskje dy net yn it aktive dokumint brûkt wurde."
#. 27v8z
#: sw/uiconfig/swriter/ui/floatingnavigation.ui:36
@@ -14580,7 +14580,7 @@ msgstr "_Net grutter dan side gebiet"
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:78
msgctxt "footnoteareapage|extended_tip|maxheightpage"
msgid "Automatically adjusts the height of the footnote area depending on the number of footnotes."
-msgstr ""
+msgstr "Past automatysk de hichte fan it fuotnoat gebiet oan ôfhinklik fan it tal fuotnoaten."
#. FA6CC
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:90
@@ -14592,7 +14592,7 @@ msgstr "Maksimale hichte _fuotnoat"
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:104
msgctxt "footnoteareapage|extended_tip|maxheight"
msgid "Sets a maximum height for the footnote area. Enable this option, then enter the height."
-msgstr ""
+msgstr "Set de maksimale hichte foar it gebiet dan de fuotnoat. Skeakelje dizze opsje yn en fier dan de hichte yn."
#. YKAGh
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:118
@@ -14604,13 +14604,13 @@ msgstr "Ofstân ta tekst"
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:139
msgctxt "footnoteareapage|extended_tip|spacetotext"
msgid "Enter the amount of space to leave between the bottom page margin and the first line of text in the footnote area."
-msgstr ""
+msgstr "Fier de romte yn dy't tusken de ûnderste side marzje en de earste tekst regel yn de fuotnoat gebiet wêze moat."
#. BEuKg
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:162
msgctxt "footnoteareapage|extended_tip|maxheightsb"
msgid "Enter the maximum height for the footnote area."
-msgstr ""
+msgstr "Fier de maksimale hichte yn foar it fuotnoat gebiet."
#. G6Dar
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:179
@@ -14634,7 +14634,7 @@ msgstr "_Styl"
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:249
msgctxt "footnoteareapage|label6"
msgid "_Thickness"
-msgstr "_Dikte"
+msgstr "_Tsjokte"
#. myPFY
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:264
@@ -14676,37 +14676,37 @@ msgstr "Rjochts"
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:317
msgctxt "footnoteareapage|extended_tip|position"
msgid "Select the horizontal alignment for the line that separates the main text from the footnote area."
-msgstr ""
+msgstr "Selektearje de horizontale rjochting foar de regel dy de haadtekst fan it fuotnoat gebiet skatet."
#. sD8YC
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:341
msgctxt "footnoteareapage|extended_tip|style"
msgid "Select the formatting style for the separator line. If you do not want a separator line, choose \"None\"."
-msgstr ""
+msgstr "Selektearje de styl foar de skieding line. As jo skieding line wolle, klikke jo op 'Gjint'."
#. aHwK5
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:365
msgctxt "footnoteareapage|extended_tip|color"
msgid "Select the color of the separator line."
-msgstr ""
+msgstr "Selektearje de kleur fan de skieding line."
#. vJxuj
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:384
msgctxt "footnoteareapage|extended_tip|length"
msgid "Enter the length of the separator line as a percentage of the page width area."
-msgstr ""
+msgstr "Fier de lingte fan de skieding line yn as in persintaazje fan de side breedte."
#. FBKJE
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:404
msgctxt "footnoteareapage|extended_tip|spacingtocontents"
msgid "Enter the amount of space to leave between the separator line and the first line of the footnote area."
-msgstr ""
+msgstr "Fier de romte yn dy't tusken de skieding line en de earste line fan it fuotnoat gebiet wêze moat."
#. Fnt7q
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:424
msgctxt "footnoteareapage|extended_tip|thickness"
msgid "Select the thickness of the separator line."
-msgstr ""
+msgstr "Selektearje de tsjokte fan de skieding line."
#. bUbrX
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:441
@@ -14718,7 +14718,7 @@ msgstr "Skiedingsline"
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:456
msgctxt "footnoteareapage|extended_tip|FootnoteAreaPage"
msgid "Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document."
-msgstr ""
+msgstr "Sil de yndieling opsjes foar fuotnoaten oantsjutte, ynklusyf de line dy de fuotnoat skied fan it haaddiel fan it dokumint."
#. PAqDe
#: sw/uiconfig/swriter/ui/footnotepage.ui:42
@@ -14766,7 +14766,7 @@ msgstr "Side ein"
#: sw/uiconfig/swriter/ui/footnotepage.ui:125
msgctxt "footnotepage|extended_tip|pospagecb"
msgid "Displays footnotes at the bottom of the page."
-msgstr ""
+msgstr "Lit fuotnoaten op it ein fan de side sjen."
#. 8zwoB
#: sw/uiconfig/swriter/ui/footnotepage.ui:136
@@ -14778,13 +14778,13 @@ msgstr "Dokumint ein"
#: sw/uiconfig/swriter/ui/footnotepage.ui:149
msgctxt "footnotepage|extended_tip|posdoccb"
msgid "Displays footnotes at the end of the document as endnotes."
-msgstr ""
+msgstr "Lit fuotnoaten op it ein fan it dokumint sjen as einnoat."
#. BGVTw
#: sw/uiconfig/swriter/ui/footnotepage.ui:166
msgctxt "footnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box."
-msgstr ""
+msgstr "Fier it nûmer yn foar de earste fuotnoat yn it dokumint. Dizze opsje is allinne beskikber as jo \"De dokumint: selektearre ha yn it fak Telling."
#. RWgzD
#: sw/uiconfig/swriter/ui/footnotepage.ui:180
@@ -14808,25 +14808,25 @@ msgstr "De dokumint"
#: sw/uiconfig/swriter/ui/footnotepage.ui:186
msgctxt "footnotepage|extended_tip|countinglb"
msgid "Select the numbering option for the footnotes."
-msgstr ""
+msgstr "Selektearje de nûmering opsje foar de fuotnoaten."
#. 7GqFA
#: sw/uiconfig/swriter/ui/footnotepage.ui:202
msgctxt "footnotepage|extended_tip|prefix"
msgid "Enter the text that you want to display in front of the footnote number in the note text."
-msgstr ""
+msgstr "Fier de tekst yn dy't jo foar it fuotnoat nûmer yn de tekst fan de fuotnoat werjaan wolle."
#. 7rE4w
#: sw/uiconfig/swriter/ui/footnotepage.ui:218
msgctxt "footnotepage|extended_tip|suffix"
msgid "Enter the text that you want to display after the footnote number in the note text."
-msgstr ""
+msgstr "Fier de tekst yn dy't jo nei it fuotnoat nûmer yn de tekst fan de fuotnoat werjaan wolle."
#. wXK75
#: sw/uiconfig/swriter/ui/footnotepage.ui:233
msgctxt "footnotepage|extended_tip|numberinglb"
msgid "Select the numbering style that you want to use."
-msgstr ""
+msgstr "Selektearje de nûmering styl dat jo brûke wolle."
#. Gzv4E
#: sw/uiconfig/swriter/ui/footnotepage.ui:253
@@ -14850,13 +14850,13 @@ msgstr "Begjin fan folgjende side"
#: sw/uiconfig/swriter/ui/footnotepage.ui:319
msgctxt "footnotepage|extended_tip|contfromed"
msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". %PRODUCTNAME Writer automatically inserts the number of the previous page."
-msgstr ""
+msgstr "Fier de tekst yn dy;t jo werjaan wolle op de side wêr de fuotnoaten ferfolge wurde, as foarbyld \"Ferfolch fan side \". %PRODUCTNAME Writer sil automatysk it nûmer fan de foarige side ynfoegje."
#. PM3nD
#: sw/uiconfig/swriter/ui/footnotepage.ui:337
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". %PRODUCTNAME Writer automatically inserts the number of the following page."
-msgstr ""
+msgstr "Fier de tekst yn dy;t jo werjaan wolle op de side wêr de fuotnoaten op de folgjende side ferfolge wurde, as foarbyld \"Ferfolch op side \". %PRODUCTNAME Writer sil automatysk it nûmer fan de folgjende side ynfoegje."
#. ZEhG2
#: sw/uiconfig/swriter/ui/footnotepage.ui:354
@@ -14880,25 +14880,25 @@ msgstr "Side"
#: sw/uiconfig/swriter/ui/footnotepage.ui:416
msgctxt "footnotepage|extended_tip|parastylelb"
msgid "Select the paragraph style for the footnote text. Only special styles can be selected."
-msgstr ""
+msgstr "Selektearje it alinea styl foar de fuotnoat tekst. Allinne spesjale stilen kinne selektearre wurde."
#. bhosj
#: sw/uiconfig/swriter/ui/footnotepage.ui:432
msgctxt "footnotepage|extended_tip|pagestylelb"
msgid "Select the page style that you want to use for footnotes."
-msgstr ""
+msgstr "Selektearje de side styl dat jo brûke wolle foar fuotnoaten."
#. ESqR9
#: sw/uiconfig/swriter/ui/footnotepage.ui:448
msgctxt "footnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for footnote anchors in the text area of your document."
-msgstr ""
+msgstr "Selektearje it teken styl dat jo brûke wolle foar fuotnoat ankers yn it tekst gebiet fan jo dokumint."
#. EfWvJ
#: sw/uiconfig/swriter/ui/footnotepage.ui:464
msgctxt "footnotepage|extended_tip|charstylelb"
msgid "Select the character style that you want to use for the footnote numbers in the footnote area."
-msgstr ""
+msgstr "Selektearje de teken styl dat jo brûke wolle foar de fuotnoat nûmers yn it gebiet foar fuotnoaten."
#. ZP5bQ
#: sw/uiconfig/swriter/ui/footnotepage.ui:477
@@ -14922,7 +14922,7 @@ msgstr "Stilen"
#: sw/uiconfig/swriter/ui/footnotepage.ui:519
msgctxt "footnotepage|extended_tip|FootnotePage"
msgid "Specifies the formatting for footnotes."
-msgstr ""
+msgstr "Beskaat de yndieling fan fuotnoaten."
#. MV5EC
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:57
@@ -14934,13 +14934,13 @@ msgstr "_Nije nûmering"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:67
msgctxt "footnotesendnotestabpage|extended_tip|ftnntnum"
msgid "Restarts the footnote numbering at the number that you specify."
-msgstr ""
+msgstr "Begjin in nije nûmering fan de fuotnoaten by it nûmer dat jo opjouwe."
#. Buptq
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:92
msgctxt "footnotesendnotestabpage|extended_tip|ftnoffset"
msgid "Enter the number that you want to assign the footnote."
-msgstr ""
+msgstr "Fier it nûmer yn dat jo oan de fuotnoat tawize wolle."
#. GVtFs
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:106
@@ -14958,7 +14958,7 @@ msgstr "Oanpast _formaat"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:156
msgctxt "footnotesendnotestabpage|extended_tip|ftnsuffix"
msgid "Enter the text that you want to display after the footnote number."
-msgstr ""
+msgstr "Fier de tekst yn dy't jo nei it fuotnoat nûmer werjaan wolle."
#. JzjqC
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:169
@@ -14970,13 +14970,13 @@ msgstr "Dêrn_ei:"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:185
msgctxt "footnotesendnotestabpage|extended_tip|ftnnumviewbox"
msgid "Select the numbering style for the footnotes."
-msgstr ""
+msgstr "Selektearje de nûmering styl foar de fuotnoaten."
#. 7RJB2
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:203
msgctxt "footnotesendnotestabpage|extended_tip|ftnprefix"
msgid "Enter the text that you want to display in front of the footnote number."
-msgstr ""
+msgstr "Fier de tekst yn dy't jo foar it fuotnoat nûmer werjaan wolle."
#. MFBgR
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:217
@@ -14994,7 +14994,7 @@ msgstr "Oan ein fan _tekst sammelje"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:251
msgctxt "footnotesendnotestabpage|extended_tip|ftnntattextend"
msgid "Adds footnotes at the end of the section. If the section spans more than one page, the footnotes are added to the bottom of the page on which the footnote anchors appear."
-msgstr ""
+msgstr "Foeget fuotnoaten oan de ein fan de seksje ta. As de seksje mear dan ien side omfiemet, wurde de fuotnoaten taheakke ûnder oan de side wêrop de fuotnoat ankers ferskine."
#. J8Vb4
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:268
@@ -15012,7 +15012,7 @@ msgstr "Oan ein fan h_aadstik sammelje"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:316
msgctxt "footnotesendnotestabpage|extended_tip|endntattextend"
msgid "Adds endnotes at the end of the section."
-msgstr ""
+msgstr "Foeget einnoaten ta oan it ein fan de seksje."
#. KFFRg
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:336
@@ -15024,13 +15024,13 @@ msgstr "_Nije nûmering"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:346
msgctxt "footnotesendnotestabpage|extended_tip|endntnum"
msgid "Restarts the endnote numbering at the number that you specify."
-msgstr ""
+msgstr "Begjin in nije nûmering fan de einnoaten by it nûmer dat jo opjouwe."
#. CjnZB
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:371
msgctxt "footnotesendnotestabpage|extended_tip|endoffset"
msgid "Enter the number that you want to assign the endnote."
-msgstr ""
+msgstr "Fier it nûmer yn dat jo oan de einnoat tawize wolle."
#. 3vUD5
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:385
@@ -15048,13 +15048,13 @@ msgstr "_Oanpast formaat"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:414
msgctxt "footnotesendnotestabpage|extended_tip|endntnumfmt"
msgid "Specifies a custom numbering format for endnotes."
-msgstr ""
+msgstr "Sil in oanpaste nûmering foar einnoaten oantsjutte."
#. ye4DA
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:440
msgctxt "footnotesendnotestabpage|extended_tip|endsuffix"
msgid "Enter the text that you want to display after the endnote number."
-msgstr ""
+msgstr "Fier de tekst yn dy't jo nei it einnoat nûmer werjaan wolle."
#. GmatM
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:453
@@ -15066,13 +15066,13 @@ msgstr "Dêrn_ei:"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:469
msgctxt "footnotesendnotestabpage|extended_tip|endnumviewbox"
msgid "Select the numbering style for the endnotes."
-msgstr ""
+msgstr "Selektearje de nûmering styl foar de einnoaten."
#. kWheg
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:487
msgctxt "footnotesendnotestabpage|extended_tip|endprefix"
msgid "Enter the text that you want to display in front of the endnote number"
-msgstr ""
+msgstr "Fier de tekst yn dy't jo foar it einnoat nûmer werjaan wolle."
#. iFELv
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:501
@@ -15090,7 +15090,7 @@ msgstr "Einnoat"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:546
msgctxt "footnotesendnotestabpage|extended_tip|FootnotesEndnotesTabPage"
msgid "Specifies where footnotes and endnotes are displayed as well as their numbering formats."
-msgstr ""
+msgstr "Jout oan wêr fuotnoaten en einnoaten werjûn moatte wurde, krekt as har nûmering."
#. GzLJU
#: sw/uiconfig/swriter/ui/formatsectiondialog.ui:8
@@ -15138,7 +15138,7 @@ msgstr "Bree_dte"
#: sw/uiconfig/swriter/ui/formattablepage.ui:113
msgctxt "formattablepage|extended_tip|name"
msgid "Enter an internal name for the table. You can use this name to quickly locate the table in the Navigator."
-msgstr ""
+msgstr "Fier in ynterne namme foar de tabel yn. Jo kinne dizze namme brûke om de tabel fluch yn de Navigator fine te kinnen."
#. FUTdi
#: sw/uiconfig/swriter/ui/formattablepage.ui:130
@@ -15150,13 +15150,13 @@ msgstr "Relatie_f"
#: sw/uiconfig/swriter/ui/formattablepage.ui:139
msgctxt "formattablepage|extended_tip|relwidth"
msgid "Displays the width of the table as a percentage of the page width."
-msgstr ""
+msgstr "Jout de breedte fan de tabel oan as in persintaazje fan de breedte fan de side."
#. YioP3
#: sw/uiconfig/swriter/ui/formattablepage.ui:157
msgctxt "formattablepage|extended_tip|widthmf"
msgid "Enter the width of the table."
-msgstr ""
+msgstr "Fier de breedte fan de tabel yn."
#. FCGH6
#: sw/uiconfig/swriter/ui/formattablepage.ui:180
@@ -15192,25 +15192,25 @@ msgstr "_Under"
#: sw/uiconfig/swriter/ui/formattablepage.ui:281
msgctxt "formattablepage|extended_tip|leftmf"
msgid "Enter the amount of space that you want to leave between the left page margin and the edge of the table."
-msgstr ""
+msgstr "Fier de romte yn dy't jo hâlde wolle tusken de linker marzje en de râne fan de tabel."
#. j5BBD
#: sw/uiconfig/swriter/ui/formattablepage.ui:299
msgctxt "formattablepage|extended_tip|rightmf"
msgid "Enter the amount of space that you want to leave between the right page margin and the edge of the table."
-msgstr ""
+msgstr "Fier de romte yn dy't jo hâlde wolle tusken de rjochter marzje en de râne fan de tabel."
#. Aff4C
#: sw/uiconfig/swriter/ui/formattablepage.ui:317
msgctxt "formattablepage|extended_tip|abovemf"
msgid "Enter the amount of space that you want to leave between the top edge of the table and the text above the table."
-msgstr ""
+msgstr "Fier de romte grutte yn dy der tusken de boppekant fan de tabel en de tekst boppe de tabel."
#. 5f47L
#: sw/uiconfig/swriter/ui/formattablepage.ui:335
msgctxt "formattablepage|extended_tip|belowmf"
msgid "Enter the amount of space that you want to leave between the bottom edge of the table and the text below the table."
-msgstr ""
+msgstr "Fier de romte grutte yn dy der tusken de boppekant fan de tabel en de tekst ûnder de tabel."
#. 9zfaR
#: sw/uiconfig/swriter/ui/formattablepage.ui:352
@@ -15228,7 +15228,7 @@ msgstr "A_utomatysk"
#: sw/uiconfig/swriter/ui/formattablepage.ui:401
msgctxt "formattablepage|extended_tip|full"
msgid "Extends the table horizontally to the left and to the right page margins."
-msgstr ""
+msgstr "Sil de tabel horizontaal útwreidzje nei de linkser en rjochter side marzje."
#. hYcCM
#: sw/uiconfig/swriter/ui/formattablepage.ui:412
@@ -15240,7 +15240,7 @@ msgstr "_Links"
#: sw/uiconfig/swriter/ui/formattablepage.ui:422
msgctxt "formattablepage|extended_tip|left"
msgid "Aligns the left edge of the table to the left page margin."
-msgstr ""
+msgstr "Rjochtet de linker râne fan de tabel oan de linker side marzje."
#. DCS6Q
#: sw/uiconfig/swriter/ui/formattablepage.ui:433
@@ -15252,7 +15252,7 @@ msgstr "_Fan ôf links"
#: sw/uiconfig/swriter/ui/formattablepage.ui:443
msgctxt "formattablepage|extended_tip|fromleft"
msgid "Aligns the left edge of the table to the indent that you enter in the Left box in the Spacing area."
-msgstr ""
+msgstr "Rjochtet de linker râne fan de tabel oan de ynsprong dy't jo ynfiere yn it linker fak yn it Romte gebiet."
#. 83zCa
#: sw/uiconfig/swriter/ui/formattablepage.ui:454
@@ -15264,7 +15264,7 @@ msgstr "R_jochts"
#: sw/uiconfig/swriter/ui/formattablepage.ui:464
msgctxt "formattablepage|extended_tip|right"
msgid "Aligns the right edge of the table to the right page margin."
-msgstr ""
+msgstr "Rjochtet de rjochter râne fan de tabel oan de rjochter side marzje."
#. kMsAJ
#: sw/uiconfig/swriter/ui/formattablepage.ui:475
@@ -15276,7 +15276,7 @@ msgstr "_Sintrearre"
#: sw/uiconfig/swriter/ui/formattablepage.ui:485
msgctxt "formattablepage|extended_tip|center"
msgid "Centers the table horizontally on the page."
-msgstr ""
+msgstr "Set de tabel horizontaal sintrearre op de side."
#. 52nix
#: sw/uiconfig/swriter/ui/formattablepage.ui:496
@@ -15288,7 +15288,7 @@ msgstr "_Selsbehear"
#: sw/uiconfig/swriter/ui/formattablepage.ui:506
msgctxt "formattablepage|extended_tip|free"
msgid "Horizontally aligns the table based on the values that you enter in the Left and Right boxes in the Spacing area."
-msgstr ""
+msgstr "Rjochtet de tabel horizontaal op de basis fan de wearden dy't jo ynfiere yn de Linker en Rjochter fakken yn it Romte gebiet."
#. pYDMp
#: sw/uiconfig/swriter/ui/formattablepage.ui:524
@@ -15312,7 +15312,7 @@ msgstr "Eigenskippen "
#: sw/uiconfig/swriter/ui/formattablepage.ui:606
msgctxt "formattablepage|extended_tip|FormatTablePage"
msgid "Specify the size, position, spacing, and alignment options for the selected table."
-msgstr ""
+msgstr "Jou de grutte, posysje, romte, en rjochting opsjes oan foar de selektearre tabel."
#. y8Bai
#: sw/uiconfig/swriter/ui/framedialog.ui:8
@@ -15378,13 +15378,13 @@ msgstr "Makro"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:54
msgctxt "frmaddpage|extended_tip|name"
msgid "Enter a name for the selected item."
-msgstr ""
+msgstr "Fier in namme yn foar it selektearre item."
#. DFFRx
#: sw/uiconfig/swriter/ui/frmaddpage.ui:72
msgctxt "frmaddpage|extended_tip|altname"
msgid "Enter the text to display in a web browser when the selected item is unavailable. Alternate text is also used to assist people with disabilities."
-msgstr ""
+msgstr "Fier te tekst yn dy't yn in websneuper te sjen is wannear it selektearre item net beskikber is. Ferfangende tekst wurdt ek brûkt om minsken mei in beheining te stypjen."
#. kJNV9
#: sw/uiconfig/swriter/ui/frmaddpage.ui:85
@@ -15408,7 +15408,7 @@ msgstr "<Gjint>"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:119
msgctxt "frmaddpage|extended_tip|prev"
msgid "Displays the item (object, graphic, or frame) that comes before the current item in a linked sequence. To add or change the previous link, select a name from the list. If you are linking frames, the current frame and the target frame must be empty."
-msgstr ""
+msgstr "Lit it item (objekt, ôfbylding, of ramt) sjen dy foar it aktive item komt yn in keppele searje. Wolle jo de foarige keppeling taheakje of bewurkje, selektearje in namme fan út de list. As jo ramten keppelje, moatte de aktive ramt en de doel ramt leech wêze."
#. pwAz4
#: sw/uiconfig/swriter/ui/frmaddpage.ui:134
@@ -15420,7 +15420,7 @@ msgstr "<Gjint>"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:138
msgctxt "frmaddpage|extended_tip|next"
msgid "Displays the item (object, graphic, or frame) that comes after the current item in a linked sequence. To add or change the next link, select a name from the list. If you are a linking frames, the target frame must be empty."
-msgstr ""
+msgstr "Lit it item (objekt, ôfbylding, of ramt) sjen dy foar it aktive item komt yn in keppele searje. Wolle jo de folgjende keppeling taheakje of bewurkje, selektearje in namme fan út de list. As jo ramten keppelje, moatte de aktive ramt en de doel ramt leech wêze."
#. Da3D4
#: sw/uiconfig/swriter/ui/frmaddpage.ui:151
@@ -15456,7 +15456,7 @@ msgstr "_Ynhâld"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:262
msgctxt "frmaddpage|extended_tip|protectcontent"
msgid "Prevents changes to the contents of the selected item."
-msgstr ""
+msgstr "Foarkomt ynhâld feroaringen fan it selektearre item."
#. tHFEc
#: sw/uiconfig/swriter/ui/frmaddpage.ui:273
@@ -15468,7 +15468,7 @@ msgstr "P_osysje"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:282
msgctxt "frmaddpage|extended_tip|protectframe"
msgid "Locks the position of the selected item in the current document."
-msgstr ""
+msgstr "Beskoattelet de posysje fan it selektearre item yn it aktive dokumint."
#. MJfL4
#: sw/uiconfig/swriter/ui/frmaddpage.ui:293
@@ -15480,7 +15480,7 @@ msgstr "_Grutte"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:302
msgctxt "frmaddpage|extended_tip|protectsize"
msgid "Locks the size of the selected item."
-msgstr ""
+msgstr "Beskoattelet de grutte fan it selektearre item."
#. JoBc6
#: sw/uiconfig/swriter/ui/frmaddpage.ui:319
@@ -15516,7 +15516,7 @@ msgstr "Under"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:372
msgctxt "frmaddpage|extended_tip|vertalign"
msgid "Specifies the vertical alignment of the frame's content. Mainly it means text content, but it also affects tables and other objects anchored to the text area (anchored as character, to character or to paragraph), for example frames, graphics or drawings."
-msgstr ""
+msgstr "Tsjut de fertikale rjochting fan de ynhâld fan it ramt. It jout foaral tekst oan, mar it hat ek effekt op tabellen en oare objekten dy ferankere binne oan it tekst gebiet ( ferankere as teken, oan teken of oan alinea), bygelyks ramten, ôfbyldingen of tekeningen."
#. 2weJX
#: sw/uiconfig/swriter/ui/frmaddpage.ui:389
@@ -15534,7 +15534,7 @@ msgstr "T_e bewurkjen yn allinne lêzen dokumint"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:435
msgctxt "frmaddpage|extended_tip|editinreadonly"
msgid "Allows you to edit the contents of a frame in a document that is read-only (write-protected)."
-msgstr ""
+msgstr "Hjirmei kinne jo de ynhâld fan in ramt bewurkje yn in allinne lêze dokumint (befeilige tsjin skriuwen.)"
#. vmiHE
#: sw/uiconfig/swriter/ui/frmaddpage.ui:447
@@ -15546,13 +15546,13 @@ msgstr "Prin_tsje"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:456
msgctxt "frmaddpage|extended_tip|printframe"
msgid "Includes the selected item when you print the document."
-msgstr ""
+msgstr "Nimt ek it selektearre item mei as jo it dokumint printsje."
#. ZSv3T
#: sw/uiconfig/swriter/ui/frmaddpage.ui:473
msgctxt "frmaddpage|extended_tip|textflow"
msgid "Specifies the preferred text flow direction in a frame. To use the default text flow settings for the page, select Use superordinate object settings from the list."
-msgstr ""
+msgstr "Jout de winske rjochting foar it tekst ferrin yn in ramt oan. Om de standert tekst ferrin te brûken, selektearje de ynstellingen fan it hegere objekt út de list."
#. ph8JN
#: sw/uiconfig/swriter/ui/frmaddpage.ui:486
@@ -15570,13 +15570,13 @@ msgstr "Eigenskippen"
#: sw/uiconfig/swriter/ui/frmaddpage.ui:519
msgctxt "frmaddpage|extended_tip|FrameAddPage"
msgid "Specifies properties for the selected object, graphic or frame."
-msgstr ""
+msgstr "Jout eigenskippen foar it selektearre objekt, ôfbylding of ramt oan."
#. up2BK
#: sw/uiconfig/swriter/ui/frmtypepage.ui:83
msgctxt "frmtypepage|extended_tip|width"
msgid "Enter the width that you want for the selected object."
-msgstr ""
+msgstr "Fier de breedte yn dy't jo brûke wolle foar de selektearre objekt."
#. LVvrB
#: sw/uiconfig/swriter/ui/frmtypepage.ui:94
@@ -20361,181 +20361,181 @@ msgid "~File"
msgstr "~Triem"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "T_hús"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Thús"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ynfoegje"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ynfoegje"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Yndieling"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Yndieling"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Ferwizing_en"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referinsje~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Resinsje"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Resinsje"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Werjefte"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Werjefte"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ofbyldin_g"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ofbyldin~g"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tekenje"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tekenje"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Printsje"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Printsje"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulier"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ta_foeging"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ta~foeging"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ark"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "A~rk"
@@ -21573,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Kontoer bewurkje"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "T_afoeging"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
@@ -22163,7 +22157,7 @@ msgstr "Fergrutsje de wurd romte yn rigels mei rigeleinen yn sels behear yn útf
#: sw/uiconfig/swriter/ui/optcompatpage.ui:246
msgctxt "optcompatpage|format"
msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
-msgstr "Formulier befeiligje ( Beskermet net it hiele dokumint. Ynstee dêrfan befeilige gebieden taheakje)"
+msgstr "Formulier beskermje(Beskermet net it hiele dokumint. ynplak dêrfan befeilige gebieden taheakje)"
#. 3Y63F
#: sw/uiconfig/swriter/ui/optcompatpage.ui:247
diff --git a/source/fy/vcl/messages.po b/source/fy/vcl/messages.po
index 0e02e1abe86..09666122afb 100644
--- a/source/fy/vcl/messages.po
+++ b/source/fy/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-08-05 13:34+0000\n"
+"PO-Revision-Date: 2020-11-28 00:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/vclmessages/fy/>\n"
"Language: fy\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.1.1\n"
"X-POOTLE-MTIME: 1562265300.000000\n"
#. k5jTM
@@ -1975,7 +1975,7 @@ msgstr "Printalyk"
#: vcl/uiconfig/ui/printdialog.ui:158
msgctxt "printdialog|extended_tip|preview"
msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
-msgstr ""
+msgstr "It foarbyld lit sjen hoe't elke blêd derút sjen sil. Jo kinne troch alle blêden bledderje troch de knoppen ûnder it foarbyld."
#. Aq6Gv
#: vcl/uiconfig/ui/printdialog.ui:189
@@ -1993,7 +1993,7 @@ msgstr "Folgjende side"
#: vcl/uiconfig/ui/printdialog.ui:208
msgctxt "printdialog|extended_tip|forward"
msgid "Shows preview of the next page."
-msgstr ""
+msgstr "Lit in foarbyld sjen fan de folgjende side."
#. yyFVV
#: vcl/uiconfig/ui/printdialog.ui:223
@@ -2005,7 +2005,7 @@ msgstr "/ %n"
#: vcl/uiconfig/ui/printdialog.ui:240
msgctxt "printdialog|extended_tip|pageedit"
msgid "Enter the number of page to be shown in the preview."
-msgstr ""
+msgstr "Fier it tal siden yn dat yn it foarbyld te sjen moat wêze."
#. ebceU
#: vcl/uiconfig/ui/printdialog.ui:256
@@ -2017,7 +2017,7 @@ msgstr "Foarige side"
#: vcl/uiconfig/ui/printdialog.ui:260
msgctxt "printdialog|extended_tip|backward"
msgid "Shows preview of the previous page."
-msgstr ""
+msgstr "Lit in foarbyld sjen fan de foarige side."
#. SbgFv
#: vcl/uiconfig/ui/printdialog.ui:276
@@ -2035,13 +2035,13 @@ msgstr "_Foarbyld"
#: vcl/uiconfig/ui/printdialog.ui:311
msgctxt "printdialog|extended_tip|previewbox"
msgid "Turn on or off display of the print preview."
-msgstr ""
+msgstr "Skeakelet de werjefte fan it printalyk út of oan."
#. PD6Aj
#: vcl/uiconfig/ui/printdialog.ui:391
msgctxt "printdialog|extended_tip|printersbox"
msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Properties button to change some of the printer properties."
-msgstr ""
+msgstr "De karlist lit de ynstallearre printers sjen. Klik op de printer dy jo foar jo aktive print taak brûke wolle. Klik op de knop Eigenskippen om inkelde printer eigenskippen te feroarjen."
#. qgQDX
#: vcl/uiconfig/ui/printdialog.ui:410
@@ -2059,7 +2059,7 @@ msgstr "Standert printer"
#: vcl/uiconfig/ui/printdialog.ui:431
msgctxt "printdialog|extended_tip|status"
msgid "Shows the availability of the selected printer."
-msgstr ""
+msgstr "Lit de beskikberens fan de selektearre printer sjen."
#. oBACQ
#: vcl/uiconfig/ui/printdialog.ui:443
@@ -2071,7 +2071,7 @@ msgstr "Eigenskippen..."
#: vcl/uiconfig/ui/printdialog.ui:450
msgctxt "printdialog|extended_tip|setup"
msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Printer eigenskippen. De eigenskippen foar de printer hingje ôf fan de printer dy't jo selektearje."
#. AJGau
#: vcl/uiconfig/ui/printdialog.ui:476
@@ -2089,7 +2089,7 @@ msgstr "_Alle siden"
#: vcl/uiconfig/ui/printdialog.ui:529
msgctxt "printdialog|extended_tip|rbAllPages"
msgid "Prints the entire document."
-msgstr ""
+msgstr "Printet it hiele dokumint."
#. pYtbq
#: vcl/uiconfig/ui/printdialog.ui:541
@@ -2101,7 +2101,7 @@ msgstr "_Siden:"
#: vcl/uiconfig/ui/printdialog.ui:553
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
-msgstr ""
+msgstr "Printet allinne de siden of dia's dy't jo oantsjutte yn it fak Siden."
#. 786QC
#: vcl/uiconfig/ui/printdialog.ui:568
@@ -2113,7 +2113,7 @@ msgstr "bgl.: 1, 3-5, 7, 9"
#: vcl/uiconfig/ui/printdialog.ui:571
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
-msgstr ""
+msgstr "Om in berik fan siden te printsjen, brûke jo in notaasje lykas 3-6. Om inkelde siden te printsjen, brûke jo de notaasje as 7;9;11. Jo kinne ek in kombinaasje fan it side berik en inkelde siden printsje dwaan troch in notaasje lykas 3-6;8;10;12 te brûken."
#. Z5kiB
#: vcl/uiconfig/ui/printdialog.ui:582
@@ -2179,7 +2179,7 @@ msgstr "Op beide siden printsje (dupleks koarte kant)"
#: vcl/uiconfig/ui/printdialog.ui:698
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
-msgstr ""
+msgstr "As de printer op twa kanten printsje kin, is it mooglik om te kiezen tusken printsje op ien side fan it papier of op beide siden."
#. AVv6D
#: vcl/uiconfig/ui/printdialog.ui:712
@@ -2191,7 +2191,7 @@ msgstr "_Tal kopyen:"
#: vcl/uiconfig/ui/printdialog.ui:734
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
-msgstr ""
+msgstr "Fier it tal eksimplaren yn dat printe moat wurde."
#. BT4nY
#: vcl/uiconfig/ui/printdialog.ui:748
@@ -2209,7 +2209,7 @@ msgstr "Printsje yn _omkearde oarder"
#: vcl/uiconfig/ui/printdialog.ui:770
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
-msgstr ""
+msgstr "Ynstelle om de siden yn omkearde folchoarder te printsjen."
#. G6QEr
#: vcl/uiconfig/ui/printdialog.ui:787
@@ -2221,25 +2221,25 @@ msgstr "_Steapelje"
#: vcl/uiconfig/ui/printdialog.ui:795
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
-msgstr ""
+msgstr "Behâld de side folchoarder fan it oarspronklik dokumint."
#. GZrpG
#: vcl/uiconfig/ui/printdialog.ui:825
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
-msgstr ""
+msgstr "Makket ôfsûnderlike print taken foar sortearre útfier."
#. X4Am9
#: vcl/uiconfig/ui/printdialog.ui:833
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
-msgstr ""
+msgstr "Selektearje om net de printer te fertrouwen om sortearre kopyen te meitsjen,mar meitsje in print taak foar elke kopy."
#. 2MdHu
#: vcl/uiconfig/ui/printdialog.ui:854
msgctxt "printdialog|rangeexpander"
msgid "_More"
-msgstr ""
+msgstr "_Mear"
#. ehfCG
#: vcl/uiconfig/ui/printdialog.ui:872
@@ -2281,13 +2281,13 @@ msgstr "Lizzend"
#: vcl/uiconfig/ui/printdialog.ui:953
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
-msgstr ""
+msgstr "Selektearje oriïntaasje fan it papier."
#. DSFv2
#: vcl/uiconfig/ui/printdialog.ui:969
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
-msgstr ""
+msgstr "Set de papier grutte op deselde dy't jo brûke wolle. It foarbyld lit sjen hoe't it dokumint derút komt te sjen op papier fan it oantsjutte grutte."
#. EZdsx
#: vcl/uiconfig/ui/printdialog.ui:1004
@@ -2299,7 +2299,7 @@ msgstr "Siden it blêd:"
#: vcl/uiconfig/ui/printdialog.ui:1018
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
-msgstr ""
+msgstr "Printsje meardere siden op in fel papier."
#. DKP5g
#: vcl/uiconfig/ui/printdialog.ui:1059
@@ -2311,7 +2311,7 @@ msgstr "Oanpast"
#: vcl/uiconfig/ui/printdialog.ui:1066
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
-msgstr ""
+msgstr "Selektearje hoefolle siden op ien fel papier printe moat wurde."
#. 65WWt
#: vcl/uiconfig/ui/printdialog.ui:1079
@@ -2323,7 +2323,7 @@ msgstr "Siden:"
#: vcl/uiconfig/ui/printdialog.ui:1098
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
-msgstr ""
+msgstr "Selektearje it tal rigen."
#. DM5aX
#: vcl/uiconfig/ui/printdialog.ui:1110
@@ -2335,7 +2335,7 @@ msgstr "troch"
#: vcl/uiconfig/ui/printdialog.ui:1128
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
-msgstr ""
+msgstr "Selektearje it tal kolommen."
#. szcD7
#: vcl/uiconfig/ui/printdialog.ui:1140
@@ -2347,7 +2347,7 @@ msgstr "Marzje:"
#: vcl/uiconfig/ui/printdialog.ui:1158
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
-msgstr ""
+msgstr "Selektearje de marzje tusken yndividuele siden op elk blêd papier."
#. iGg2m
#: vcl/uiconfig/ui/printdialog.ui:1171
@@ -2365,7 +2365,7 @@ msgstr "Ofstân:"
#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
-msgstr ""
+msgstr "Selektearje de marzje tusken de te printsjen siden en papier râne."
#. XhfvB
#: vcl/uiconfig/ui/printdialog.ui:1213
@@ -2407,7 +2407,7 @@ msgstr "Fan rjochts nei links, dan nei ûnderen"
#: vcl/uiconfig/ui/printdialog.ui:1250
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
-msgstr ""
+msgstr "Selektearje de folchoarder wêryn de siden printe moatte wurde."
#. QG59F
#: vcl/uiconfig/ui/printdialog.ui:1262
@@ -2419,7 +2419,7 @@ msgstr "Teken in râne om elke side"
#: vcl/uiconfig/ui/printdialog.ui:1271
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
-msgstr ""
+msgstr "Ynstelle om in râne om elke side te tekenjen."
#. Yo4xV
#: vcl/uiconfig/ui/printdialog.ui:1283
@@ -2437,13 +2437,13 @@ msgstr "Sortearring foarbyld"
#: vcl/uiconfig/ui/printdialog.ui:1316
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
-msgstr ""
+msgstr "Feroaret de yndieling fan de siden dy op elk blêd printe wurde. It foarbyld lit sjen hoe't elk blêd derút sil sjen."
#. fCjdq
#: vcl/uiconfig/ui/printdialog.ui:1338
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
-msgstr ""
+msgstr "M_ear"
#. rCBA5
#: vcl/uiconfig/ui/printdialog.ui:1356
@@ -2461,7 +2461,7 @@ msgstr "Algemien"
#: vcl/uiconfig/ui/printdialog.ui:1431
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
-msgstr ""
+msgstr "Printet it aktive dokumint, de aktive seleksje fan de oantsjutte siden. Jo kinne ek de print opsjes foar it aktive dokumint ynstelle."
#. 4DiAY
#: vcl/uiconfig/ui/printerdevicepage.ui:35
diff --git a/source/ga/cui/messages.po b/source/ga/cui/messages.po
index 3c78bf6ac87..821769d7f6a 100644
--- a/source/ga/cui/messages.po
+++ b/source/ga/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-15 22:35+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/ga/>\n"
@@ -20900,60 +20900,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
index 2cbe0ae7cab..d9e8ecb1f78 100644
--- a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-15 22:35+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ga/>\n"
@@ -8027,15 +8027,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Folaig~h Sleamhnán"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Téa~cs..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25509,25 +25509,25 @@ msgctxt ""
msgid "~File"
msgstr "~Comhad"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ailí~nigh"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ailí~nigh"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31099,15 +31099,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Roghnaigh go Deireadh an Ailt"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Roghnaigh go dtí an Focal ar Dheis"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ga/sc/messages.po b/source/ga/sc/messages.po
index 506449306cf..04cbf0b5a50 100644
--- a/source/ga/sc/messages.po
+++ b/source/ga/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-03-20 13:54+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24600,213 +24600,213 @@ msgid "~File"
msgstr "~Comhad"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Roghnaigh imlínte na gceall roghnaithe."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Méadaigh an tEangú"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Laghdaigh an tEangú"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Baile"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Réimse"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ionsáigh"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ionsáigh"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Leagan Amach"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Sonraí"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Sonraí"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Athbhreithniú"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Athbhreithniú"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Amharc"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Amharc"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ío~mhá"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Réad"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meáin"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meáin"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Priontáil"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Priontáil"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi_rm"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Uirlisí"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29635,338 +29635,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Réiteoir"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Ro_ghanna..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Réitigh"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Sprioc-chill"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optamaigh an toradh chuig"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Trí chealla a athrú"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Í_osmhéid"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Uas_mhéid"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Luach de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Tagairt do _chill"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Oibreoir"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Lu_ach"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Tagairt do chill"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Tagairt do chill"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Tagairt do chill"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Tagairt do chill"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Slánuimhir"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Dénártha"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Oibreoir"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Slánuimhir"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Dénártha"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Oibreoir"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Slánuimhir"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Dénártha"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Oibreoir"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Slánuimhir"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Dénártha"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Oibreoir"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Luach"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Luach"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Luach"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Luach"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Bain"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Bain"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Bain"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Bain"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Coinníollacha Teorantacha"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ga/sd/messages.po b/source/ga/sd/messages.po
index 51a178c571e..12006677026 100644
--- a/source/ga/sd/messages.po
+++ b/source/ga/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-03-07 15:10+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3822,116 +3822,116 @@ msgstr "~Tábla"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Tiontaigh"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ío_mhá"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ío~mhá"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Réad"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Réad"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meáin"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meáin"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Uirlisí"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Uirlisí"
@@ -4335,12 +4335,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Roghchlár"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6572,219 +6566,219 @@ msgid "~File"
msgstr "~Comhad"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Baile"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Baile"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Réimse"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ionsáigh"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ionsáigh"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Taispeántas _Sleamhnán"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Taispeántas ~Sleamhnán"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Athbhreithniú"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Athbhreithniú"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Amharc"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Amharc"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tábla"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tábla"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Tiontaigh"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ío_mhá"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ío~mhá"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Réad"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Réad"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meáin"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meáin"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Uirlisí"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Uirlisí"
@@ -7694,12 +7688,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Cuir an Comhrian in Eagar"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ga/starmath/messages.po b/source/ga/starmath/messages.po
index b1095f97882..fdd128e4b5c 100644
--- a/source/ga/starmath/messages.po
+++ b/source/ga/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ga/svx/messages.po b/source/ga/svx/messages.po
index adda95e23e1..57140500600 100644
--- a/source/ga/svx/messages.po
+++ b/source/ga/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-02-19 23:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Irish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ga/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Oiriúnaigh an sleamhnán don fhuinneog reatha."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Níorbh fhéidir gach SmartArt a luchtú. Is féidir leat an fhadhb seo a sheachaint trí shábháil in Microsoft Office 2010 nó i leagan níos nuaí."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barra Nascleanúna"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Uasluchtaíodh an tuairisc tuairteála.\n"
-"Beidh tú in ann an tuairisc a fheiceáil go luath ag:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,10 +13991,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Seol an Tuairisc Tuairteála"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/ga/sw/messages.po b/source/ga/sw/messages.po
index a1655804db6..cfa699ba975 100644
--- a/source/ga/sw/messages.po
+++ b/source/ga/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-03-07 16:04+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20380,181 +20380,181 @@ msgid "~File"
msgstr "~Comhad"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Baile"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Baile"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ionsáigh"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ionsáigh"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "~Leagan Amach"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Leagan Amach"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Tagai_rtí"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Tagai~rtí"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Athbhreithniú"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Athbhreithniú"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Amharc"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Amharc"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tábla"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tábla"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ío_mhá"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ío~mhá"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Réad"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Réad"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meáin"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meáin"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Priontáil"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Priontáil"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi_rm"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Uirlisí"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Uirlisí"
@@ -21592,12 +21592,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Cuir an Comhrian in Eagar"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/gd/cui/messages.po b/source/gd/cui/messages.po
index 24258c3c8ae..179dc6dcb14 100644
--- a/source/gd/cui/messages.po
+++ b/source/gd/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-08-21 12:42+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -20897,60 +20897,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
index 2cd3bd6da47..eb163fb849f 100644
--- a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-08-21 09:56+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -8027,15 +8027,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Falaich an t-sleamhnag"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~acsa..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25509,25 +25509,25 @@ msgctxt ""
msgid "~File"
msgstr "~Faidhle"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Co-~thaobhaich"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Co-~thaobhaich"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31099,15 +31099,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Tagh gu ruige deireadh a’ pharagraf"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Tagh gu ruige am facal air an taobh deas"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/gd/sc/messages.po b/source/gd/sc/messages.po
index db108e236ca..66f3df754f2 100644
--- a/source/gd/sc/messages.po
+++ b/source/gd/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-08-21 09:49+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24599,213 +24599,213 @@ msgid "~File"
msgstr "~Faidhle"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Sònraich iomallan nan ceallan a thagh thu."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Meudaich an eag"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Lùghdaich an eag"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Dachaigh"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ra_on"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Cu_ir a-steach"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Cu~ir a-steach"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Co-thaobhadh an oibseict"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Co-dhea~lbhachd"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dàta"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dàta"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Lèi_rmheas"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Lèi~rmheas"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sealladh"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Sealladh"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "D~ealbh"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Iompaich"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Oibseact"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meadhanan"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meadhanan"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Clò-bhuail"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Clò-bh~uail"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi~rm"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Innealan"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29634,338 +29634,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Fuasglair"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_Roghainnean..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Fuasgail"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "An cealla _targaide"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Pisich an toradh a-rèir"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Le atharrachadh cheallan"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "_Meud as lugha"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Meud as motha"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "Lua_ch"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Reifreans _cealla"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Gnìomharaiche"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Lu_ach"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Reifreans cealla"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Reifreans cealla"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Reifreans cealla"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Reifreans cealla"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Àireamh shlàn"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Bìnearaidh"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Gnìomharaiche"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Àireamh shlàn"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Bìnearaidh"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Gnìomharaiche"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Àireamh shlàn"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Bìnearaidh"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Gnìomharaiche"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Àireamh shlàn"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Bìnearaidh"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Gnìomharaiche"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Luach"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Luach"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Luach"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Luach"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Thoir air falbh"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Thoir air falbh"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Thoir air falbh"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Thoir air falbh"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Cumhaichean cuingeachaidh"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/gd/sd/messages.po b/source/gd/sd/messages.po
index 5a2a1282e1f..90db6b2c8e5 100644
--- a/source/gd/sd/messages.po
+++ b/source/gd/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-08-21 09:58+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3821,116 +3821,116 @@ msgstr "Clà~r"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Iompaich"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "D_ealbh"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "D~ealbh"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Tarrai~ng"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oibseact"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oibseact"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meadhanan"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meadhanan"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi~rm"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_D"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~D"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Maighstir"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Maighstir"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Innealan"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Innea~lan"
@@ -4334,12 +4334,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Clàr-taice"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6571,219 +6565,219 @@ msgid "~File"
msgstr "~Faidhle"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Dachaigh"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "D~hachaigh"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ra_on"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Cu_ir a-steach"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Cu~ir a-steach"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "Co-dhea_lbhachd"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Co-dhea~lbhachd"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Taisbeanadh-_shleamhnagan"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Taisbeanadh-~shleamhnagan"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Lèi_rmheasan"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Lèi~rmheas"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sealladh"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Sealladh"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Clà_r"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Clà~r"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Iompaich"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "D_ealbh"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "D~ealbh"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oibseact"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oibseact"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meadhanan"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meadhanan"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi~rm"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Maighstir"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Maighstir"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Sealladh"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Oir-loidhne"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Innealan"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Innea~lan"
@@ -7693,12 +7687,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Deasaich an contur"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/gd/starmath/messages.po b/source/gd/starmath/messages.po
index 04c5a831f58..fbe4368f30a 100644
--- a/source/gd/starmath/messages.po
+++ b/source/gd/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-08-21 09:35+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/gd/svx/messages.po b/source/gd/svx/messages.po
index 804fdc64419..d9cc0da30ff 100644
--- a/source/gd/svx/messages.po
+++ b/source/gd/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Gaelic <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gd/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Freagair meud na sleamhnaige ris an uinneag làithreach."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Cha b’ urrainn dhuinn an SmartArt air fad a luchdadh. Ma shàbhaileas tu e ann am Microsoft 2010 no tionndadh nas ùire dheth, seachnaidh tu an duilgheadas seo."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Bàr na seòladaireachd"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Chaidh an aithisg tuislidh a luchdadh suas.\n"
-"Chì thu an aithisg a dh’aithghearr aig:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,10 +13991,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Cuir an aithi_sg tuislidh"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/gd/sw/messages.po b/source/gd/sw/messages.po
index b170bea7e96..38be5b3d7d1 100644
--- a/source/gd/sw/messages.po
+++ b/source/gd/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-04-23 08:16+0000\n"
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
"Language-Team: Gaelic <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/gd/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20373,181 +20373,181 @@ msgid "~File"
msgstr "~Faidhle"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Dachaigh"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "D~hachaigh"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Cu_ir a-steach"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Cu~ir a-steach"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Co-dhea_lbhachd"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Co-dhea~lbhachd"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Reifrean_san"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Reifrean~san"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Lèi_rmheasan"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Lèi~rmheas"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sealladh"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Sealladh"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Clà_r"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Clà~r"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "D_ealbh"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "D~ealbh"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oibseact"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oibseact"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meadhanan"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meadhanan"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Clò-bhuail"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Clò-bh~uail"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi~rm"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Innealan"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Innea~lan"
@@ -21585,12 +21585,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Deasaich an contur"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/gl/cui/messages.po b/source/gl/cui/messages.po
index 575671e03f8..682dd9602e3 100644
--- a/source/gl/cui/messages.po
+++ b/source/gl/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/gl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562229287.000000\n"
#. GyY9M
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr "Seleccione a súa interface de usuario preferida"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
+msgstr ""
+
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Barra de ferramentas estándar"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Barra de ferramentas única"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Barra lateral"
-
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr "Con lapelas"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "Lapelas compactas"
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr "Barra agrupada compacta"
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr "Barra agrupada"
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Barra agrupada compacta"
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Contextual simple"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Grupos contextuais"
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Barra de ferramentas única"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Barra lateral"
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/gl/dbaccess/messages.po b/source/gl/dbaccess/messages.po
index a5009ab11b6..01072738216 100644
--- a/source/gl/dbaccess/messages.po
+++ b/source/gl/dbaccess/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-02 14:43+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2020-11-25 12:36+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/gl/>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562229307.000000\n"
#. BiN6g
@@ -1512,7 +1512,7 @@ msgstr ""
"\n"
"$path$\n"
"\n"
-"Non existe. Quere crealo?"
+"non existe. Quere crealo?"
#. 3PFxY
#: dbaccess/inc/strings.hrc:272
diff --git a/source/gl/filter/messages.po b/source/gl/filter/messages.po
index b705114fc4e..75594c3aaaf 100644
--- a/source/gl/filter/messages.po
+++ b/source/gl/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-18 15:35+0000\n"
+"PO-Revision-Date: 2020-11-25 12:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/gl/>\n"
"Language: gl\n"
@@ -507,7 +507,7 @@ msgstr "PDF _marcado (engade a estrutura do documento)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:539
msgctxt "pdfgeneralpage|tagged|tooltip_text"
msgid "Includes a document's content structure information in a PDF"
-msgstr "Include a información da estrutura do contido do documento dun PDF"
+msgstr "Inclúe a información da estrutura do contido do documento nun PDF"
#. Btxot
#: filter/uiconfig/ui/pdfgeneralpage.ui:545
diff --git a/source/gl/formula/messages.po b/source/gl/formula/messages.po
index f0231472fc8..a6a51df0966 100644
--- a/source/gl/formula/messages.po
+++ b/source/gl/formula/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-09-08 17:35+0000\n"
+"PO-Revision-Date: 2020-12-08 13:38+0100\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/formulamessages/gl/>\n"
"Language: gl\n"
@@ -692,7 +692,7 @@ msgstr "ISOTEITO"
#: formula/inc/core_resource.hrc:2394
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR"
-msgstr "ARREDMÚLTINF"
+msgstr "ARREDONDAR_MÚLTINF"
#. AmYrj
#: formula/inc/core_resource.hrc:2395
@@ -722,13 +722,13 @@ msgstr "ARREDONDAR"
#: formula/inc/core_resource.hrc:2399
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDUP"
-msgstr "ARREDONDARCARAAARRIBA"
+msgstr "ARREDONDAR.ARRIBA"
#. 3tjA5
#: formula/inc/core_resource.hrc:2400
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDDOWN"
-msgstr "ARREDONDARCARAAABAIXO"
+msgstr "ARREDONDAR_ABAIXO"
#. XBWFh
#: formula/inc/core_resource.hrc:2401
@@ -1396,7 +1396,7 @@ msgstr "MOEDA"
#: formula/inc/core_resource.hrc:2511
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACE"
-msgstr "SUBSTITUÍR"
+msgstr "TROCAR"
#. UZak8
#: formula/inc/core_resource.hrc:2512
@@ -1462,7 +1462,7 @@ msgstr "ESQUERDAB"
#: formula/inc/core_resource.hrc:2522
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACEB"
-msgstr "SUBSTITUIRB"
+msgstr "SUBSTITUÍRB"
#. KAutM
#: formula/inc/core_resource.hrc:2523
@@ -1480,7 +1480,7 @@ msgstr "TEXTO"
#: formula/inc/core_resource.hrc:2525
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUBSTITUTE"
-msgstr "SUBSTITUIR"
+msgstr "SUBSTITUÍR"
#. i3GvS
#: formula/inc/core_resource.hrc:2526
@@ -1512,12 +1512,6 @@ msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFS"
msgstr "SECONXUNTO"
-#. mqNA5
-#: formula/inc/core_resource.hrc:2531
-msgctxt "RID_STRLIST_FUNCTION_NAMES"
-msgid "SWITCH"
-msgstr "TROCAR"
-
#. adC5v
#: formula/inc/core_resource.hrc:2532
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -2194,19 +2188,19 @@ msgstr "INV.BETA"
#: formula/inc/core_resource.hrc:2644
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM"
-msgstr "NUMSEMANA"
+msgstr "NÚMSEMANA"
#. AQAu7
#: formula/inc/core_resource.hrc:2645
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISOWEEKNUM"
-msgstr "NUMSEMANAISO"
+msgstr "NÚMSEMANA_ISO"
#. iN85u
#: formula/inc/core_resource.hrc:2646
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM_OOO"
-msgstr "NUM.SEMANA_OOO"
+msgstr "NÚMSEMANA_OOO"
#. SWHk4
#: formula/inc/core_resource.hrc:2647
@@ -2230,13 +2224,13 @@ msgstr "DÍASÚTILESTOTAIS"
#: formula/inc/core_resource.hrc:2650
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS.INTL"
-msgstr "DIAS.LAB.INTL"
+msgstr "DÍAS.LAB.INTL"
#. QAzUk
#: formula/inc/core_resource.hrc:2651
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WORKDAY.INTL"
-msgstr "DIA.LAB.INTL"
+msgstr "DÍA.LAB.INTL"
#. CFhSp
#. L10n: preserve the leading '#' hash character in translations.
@@ -2481,7 +2475,7 @@ msgstr "SUBTRACBRUTA"
#: formula/inc/core_resource.hrc:2707
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDSIG"
-msgstr "ARRED.SIG"
+msgstr "ARREDONDAR_SIG"
#. nAvYh
#: formula/inc/core_resource.hrc:2708
diff --git a/source/gl/helpcontent2/source/text/sbasic/shared.po b/source/gl/helpcontent2/source/text/sbasic/shared.po
index decd9781220..1d5fb0c6c66 100644
--- a/source/gl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gl/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-14 20:35+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/gl/>\n"
@@ -12814,49 +12814,40 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">Instrución MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Crea un cartafol no soporte dos datos."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
+msgid "Creates a new directory on a data medium."
+msgstr "Crea un cartafol no soporte dos datos."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Texto As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
#. PLopZ
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr ""
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Elimina un cartafol existente no soporte de datos."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Texto As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr ""
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Para a execución dun programa Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,40 +24811,49 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">Instrución With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Define un obxecto como predefinido. A non ser que se declare outro nome de obxecto, as propiedades e métodos refírense ao obxecto predefinido ata que se atinxe a instrución End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
msgstr ""
#. zLuzY
@@ -34101,23 +34065,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Fai soar un sinal no altofalante do computador. O sinal depende do sistema e o seu volume e ton non se poden modificar."
-#. ACDCD
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
-
-#. 9DA89
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/gl/helpcontent2/source/text/scalc.po b/source/gl/helpcontent2/source/text/scalc.po
index 4f7d09d98c9..17b02deab69 100644
--- a/source/gl/helpcontent2/source/text/scalc.po
+++ b/source/gl/helpcontent2/source/text/scalc.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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-08-21 02:35+0000\n"
+"PO-Revision-Date: 2020-11-28 01:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560458338.000000\n"
#. ZxQeC
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Welcome to the $[officename] Calc Help"
-msgstr "Benvido(a) á Axuda do Calc do $[officename]"
+msgstr "Reciba a benvida á Axuda do Calc do $[officename]"
#. PqA2G
#: main0000.xhp
@@ -32,7 +32,7 @@ msgctxt ""
"hd_id3147338\n"
"help.text"
msgid "Welcome to the $[officename] Calc Help"
-msgstr "Benvido(a) á Axuda do Calc do $[officename]"
+msgstr "Reciba a benvida á Axuda do Calc do $[officename]"
#. FATnT
#: main0000.xhp
diff --git a/source/gl/helpcontent2/source/text/scalc/00.po b/source/gl/helpcontent2/source/text/scalc/00.po
index dac65d9298a..abe2071057e 100644
--- a/source/gl/helpcontent2/source/text/scalc/00.po
+++ b/source/gl/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-21 02:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/gl/>\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Escolla <item type=\"menuitem\">Ver - Dividir xanela</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Escolla <item type=\"menuitem\">Ver - Conxelar celas - Conxelar filas e columnas</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/gl/helpcontent2/source/text/scalc/01.po b/source/gl/helpcontent2/source/text/scalc/01.po
index e6e35bb53bf..c08b76bf666 100644
--- a/source/gl/helpcontent2/source/text/scalc/01.po
+++ b/source/gl/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:33+0100\n"
-"PO-Revision-Date: 2020-10-22 11:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565275147.000000\n"
#. sZfWF
@@ -1715,7 +1715,7 @@ msgctxt ""
"par_id2308201415431525817\n"
"help.text"
msgid "<ahelp hid=\".\">Populate a cell range with automatically generated pseudo random numbers with the selected distribution function and its parameters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Encha un intervalo de celas con números pseudoaleatorios xerados automaticamente coa función de distribución seleccionada e os seus parámetros.</ahelp>"
#. 6dhgD
#: 02140700.xhp
@@ -17303,7 +17303,7 @@ msgctxt ""
"bm_id3153018\n"
"help.text"
msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
-msgstr "<bookmark_value> funcións de estatísticas </bookmark_value> <bookmark_value> Asistente de funcións; Estadísticas </bookmark_value> <bookmark_value> funcións; funcións de estatísticas </bookmark_value>"
+msgstr "<bookmark_value> funcións de estatísticas </bookmark_value> <bookmark_value> Asistente de funcións; Estatísticas </bookmark_value> <bookmark_value> funcións; funcións de estatísticas </bookmark_value>"
#. KKBEq
#: 04060108.xhp
diff --git a/source/gl/helpcontent2/source/text/scalc/guide.po b/source/gl/helpcontent2/source/text/scalc/guide.po
index 560a68945d0..9bbfeba21a5 100644
--- a/source/gl/helpcontent2/source/text/scalc/guide.po
+++ b/source/gl/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-04-04 18:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/gl/>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr ""
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr ""
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/gl/helpcontent2/source/text/sdraw.po b/source/gl/helpcontent2/source/text/sdraw.po
index 4da8f854113..8e9214fe254 100644
--- a/source/gl/helpcontent2/source/text/sdraw.po
+++ b/source/gl/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-08-21 02:35+0000\n"
+"PO-Revision-Date: 2020-11-28 01:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560458370.000000\n"
#. dHbww
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Welcome to the $[officename] Draw Help"
-msgstr "Benvido/a á Axuda do Draw do $[officename]"
+msgstr "Reciba a benvida á Axuda do Draw do $[officename]"
#. P2C6T
#: main0000.xhp
@@ -32,7 +32,7 @@ msgctxt ""
"hd_id3155960\n"
"help.text"
msgid "Welcome to the $[officename] Draw Help"
-msgstr "Benvido/a á Axuda do Draw do $[officename]"
+msgstr "Reciba a benvida á Axuda do Draw do $[officename]"
#. 7S6g8
#: main0000.xhp
diff --git a/source/gl/helpcontent2/source/text/sdraw/01.po b/source/gl/helpcontent2/source/text/sdraw/01.po
index 89ef6713f75..9c0504051cc 100644
--- a/source/gl/helpcontent2/source/text/sdraw/01.po
+++ b/source/gl/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-06-02 11:50+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/gl/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Define a orientación da páxina, as marxes da páxina, o fondo e outras opcións de deseño.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Para cambiar o fondo de todas as páxinas do ficheiro activo, seleccione un fondo, prema en <emph>Aceptar</emph> e prema en <emph>Si</emph> no diálogo <emph>Configuración da páxina</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/gl/helpcontent2/source/text/shared/01.po b/source/gl/helpcontent2/source/text/shared/01.po
index 55f4ddcb69e..e2d38b61618 100644
--- a/source/gl/helpcontent2/source/text/shared/01.po
+++ b/source/gl/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/gl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565277872.000000\n"
#. 3u8hR
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/gl/helpcontent2/source/text/shared/05.po b/source/gl/helpcontent2/source/text/shared/05.po
index af894d0be1f..fdd25dbbfc9 100644
--- a/source/gl/helpcontent2/source/text/shared/05.po
+++ b/source/gl/helpcontent2/source/text/shared/05.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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-09-15 19:35+0000\n"
+"PO-Revision-Date: 2020-11-28 01:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textshared05/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560458416.000000\n"
#. WPTtk
@@ -185,7 +185,7 @@ msgctxt ""
"par_id0120200910361848\n"
"help.text"
msgid "If you want to take an active role in the worldwide %PRODUCTNAME community, you are very welcome to give feedback, discuss features, propose enhancements, write your own article in an FAQ, how-to, manual, create a video tutorial, etc."
-msgstr "Se quere ter un rol efectivo na comunidade global de %PRODUCTNAME, será moi benvido tanto para comentar, discutir as características, propoñer melloras, escribir un artigo de FAQ, un manual how-to, crear un videotutorial, etc."
+msgstr "Se quere ter un rol efectivo na comunidade global de %PRODUCTNAME, aceptarase moi ben que comente, discuta as características, propoña melloras, escriba un artigo de preguntas frecuentes ou un manual de como se fai algo, cree un videotutorial, etc."
#. tfyrA
#: 00000001.xhp
diff --git a/source/gl/helpcontent2/source/text/shared/guide.po b/source/gl/helpcontent2/source/text/shared/guide.po
index 66c5f6c54e8..10d70c1258d 100644
--- a/source/gl/helpcontent2/source/text/shared/guide.po
+++ b/source/gl/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-15 19:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/gl/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Traballar con %PRODUCTNAME\">Traballar con <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Documento HTML"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Ferramenta de informe de erros"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Ferramenta de informe de erros\">Ferramenta de informe de erros</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "A ferramenta de informe de erros reúne toda a información necesaria para axudar aos programadores na mellora do código, e así evitar eses erros nas futuras versións. Axúdenos a mellorar o software enviándonos o informe de erros xerado."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Iniciar a ferramenta de informe de erros"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Completar o informe"
-
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Na caixa de diálogo principal da ferramenta de informe de erros pode introducir información adicional que pode axudar aos nosos programadores a localizar o erro. Por exemplo, se o erro só aparece despois dun cambio no contorno de hardware ou de software, ou se premeu nun botón, inclúa esa información."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Enviar informe de erros por correo electrónico"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "A ferramenta de informe de erros utiliza o protocolo HTTP PUT / SOAP para enviar os datos do informe. Pode introducir un texto descritivo que nos axudará a identificar o contexto da falla do programa . A continuación prema o botón <emph>Enviar</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Non recibirá ningunha resposta ao seu informe de erros. Se necesita soporte, visite o <link href=\"text/shared/main0108.xhp\">foro de soporte</link> na internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Que datos son enviados?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "O informe de erros consiste en varios ficheiros. O principal contén información sobre o tipo de erro, nome e versión do sistema operativo, uso da memoria e a descrición fornecida. Pode premer no botón <emph>Mostrar informe</emph> na caixa de diálogo principal da ferramenta de informe de erros para ver o que se enviará no ficheiro principal."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Alén disto, o contido relevante da memoria e os rastros da pila reúnense mediante algunhas ferramentas estándar do sistema ('dbhhelp.dll' nos sistemas Windows; 'pstack' nos sistemas UNIX). Esta información tamén se envía."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Lembre crear unha tarefa de impresión separada para cada fax, evitará así que sexa o primeiro destinatario quen reciba todas as mensaxes de fax. Na caixa de diálogo <emph>Ferramentas - Combinación de correspondencia</emph>, seleccione a opción <emph>Impresora</emph> e marque a caixa de verificación <emph>Tarefas de impresión individuais</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Cambiar modelos predefinidos"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Cambiar modelos predefinidos\">Cambiar modelos predefinidos</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Cando abre un novo documento mediante <emph>Ficheiro - Novo</emph>, aparece un documento en branco baseado nun modelo de $[officename]. Pode editar, modificar ou substituír ese modelo para que o novo documento conteña estilos personalizados ou outro contido."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modificar modelos predefinidos"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Para comezar abra un modelo existente de $[officename] e modifíqueo, ou abra un documento novo e edíteo para crear o modelo desexado."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Pode definir un modelo de documento para cada módulo de $[officename]. A continuación descríbese como proceder con documentos de texto."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Escolla <emph>Ficheiro - Novo - Modelos</emph>"
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
+
+#. mhwYW
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id531605464645795\n"
+"help.text"
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. RbKS3
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
msgstr ""
-#. 9jy7r
+#. Us6Qr
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
msgstr ""
-#. GuEWL
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Uso de modelos personalizados"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. Quf5G
+#. DuAAp
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id251605475503009\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Os modelos personalizados poden facilitar o seu traballo de varias maneiras."
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. S8XFP
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Modelos no cartafol de modelos"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/gl/helpcontent2/source/text/shared/optionen.po b/source/gl/helpcontent2/source/text/shared/optionen.po
index 6b8f6059773..14bcfd422b1 100644
--- a/source/gl/helpcontent2/source/text/shared/optionen.po
+++ b/source/gl/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-08 12:12+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/gl/>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Especifica as opcións de vista."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Interface de usuario"
+msgid "Icon style"
+msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Suavización do tipo de letra de pantalla"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Introduza o tamaño de tipo de letra máis pequeno para aplicar a suavización.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Saída de imaxe"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Prema Maiús+Ctrl+R para restaurar ou actualizar a visualización do documento actual.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Prema Maiús+Ctrl+R para restaurar ou actualizar a visualización do documento actual.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menú"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Suavización do tipo de letra de pantalla"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Introduza o tamaño de tipo de letra máis pequeno para aplicar a suavización.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/smath.po b/source/gl/helpcontent2/source/text/smath.po
index 8f5e5472b34..bf0c50d6bd1 100644
--- a/source/gl/helpcontent2/source/text/smath.po
+++ b/source/gl/helpcontent2/source/text/smath.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:43+0100\n"
-"PO-Revision-Date: 2019-03-12 22:44+0000\n"
+"PO-Revision-Date: 2020-11-28 01:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath/gl/>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1552430671.000000\n"
#. yKBT5
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Welcome to the $[officename] Math Help"
-msgstr "Benvido(a) á Axuda de $[officename] Math"
+msgstr "Reciba a benvida á Axuda de $[officename] Math"
#. RKjEE
#: main0000.xhp
@@ -32,7 +32,7 @@ msgctxt ""
"hd_id3148868\n"
"help.text"
msgid "Welcome to the $[officename] Math Help"
-msgstr "Benvido(a) á Axuda de $[officename] Math"
+msgstr "Reciba a benvida á Axuda de $[officename] Math"
#. 9EweT
#: main0000.xhp
diff --git a/source/gl/helpcontent2/source/text/smath/01.po b/source/gl/helpcontent2/source/text/smath/01.po
index 43befa8fa5a..cf315170ced 100644
--- a/source/gl/helpcontent2/source/text/smath/01.po
+++ b/source/gl/helpcontent2/source/text/smath/01.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2019-06-25 20:26+0000\n"
+"PO-Revision-Date: 2020-11-28 01:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
-"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
+"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/gl/>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561494403.000000\n"
#. QmNGE
@@ -1031,7 +1031,7 @@ msgctxt ""
"bm_id3156316\n"
"help.text"
msgid "<bookmark_value>relations; in $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; relations</bookmark_value><bookmark_value>equal sign</bookmark_value><bookmark_value>inequation</bookmark_value><bookmark_value>unequal sign</bookmark_value><bookmark_value>identical to relation</bookmark_value><bookmark_value>congruent relation</bookmark_value><bookmark_value>right angled relations</bookmark_value><bookmark_value>orthogonal relations</bookmark_value><bookmark_value>divides relation</bookmark_value><bookmark_value>does not divide relation</bookmark_value><bookmark_value>less than relations</bookmark_value><bookmark_value>approximately equal to relation</bookmark_value><bookmark_value>parallel relation</bookmark_value><bookmark_value>less than or equal to signs</bookmark_value><bookmark_value>greater than or equal to signs</bookmark_value><bookmark_value>proportional to relation</bookmark_value><bookmark_value>similar to relations</bookmark_value><bookmark_value>toward relation</bookmark_value><bookmark_value>logic symbols</bookmark_value><bookmark_value>double arrow symbols</bookmark_value><bookmark_value>much greater than relation</bookmark_value><bookmark_value>considerably greater than relation</bookmark_value><bookmark_value>greater than relations</bookmark_value><bookmark_value>much less than relation</bookmark_value><bookmark_value>considerably less than relation</bookmark_value><bookmark_value>defined as relation</bookmark_value><bookmark_value>correspondence; picture by</bookmark_value><bookmark_value>picture by correspondence</bookmark_value><bookmark_value>image of relation</bookmark_value><bookmark_value>correspondence; original by</bookmark_value><bookmark_value>original by correspondence</bookmark_value><bookmark_value>precedes relation</bookmark_value><bookmark_value>not precedes relation</bookmark_value><bookmark_value>succeeds relation</bookmark_value><bookmark_value>not succeeds relation</bookmark_value><bookmark_value>precedes or equal relation</bookmark_value><bookmark_value>succeeds or equal relation</bookmark_value><bookmark_value>precedes or equivalent relation</bookmark_value><bookmark_value>succeeds or equivalent relation</bookmark_value>"
-msgstr "<bookmark_value>relacións; no Math do $[officename]</bookmark_value><bookmark_value>Math do $[officename]; relacións</bookmark_value><bookmark_value>símbolo de igualdade</bookmark_value><bookmark_value>inecuación</bookmark_value><bookmark_value>símbolo de desigualdade</bookmark_value><bookmark_value>relación é idéntico a</bookmark_value><bookmark_value>relación é congruente con</bookmark_value><bookmark_value>relación ten ángulo recto con</bookmark_value><bookmark_value>relación é ortogonal a</bookmark_value><bookmark_value>relación divide</bookmark_value><bookmark_value>relación non divide</bookmark_value><bookmark_value>relación é menor que</bookmark_value><bookmark_value>relación é aproximadamente igual a</bookmark_value><bookmark_value>relación é paralelo a</bookmark_value><bookmark_value>símbolo de menor ou igual a</bookmark_value><bookmark_value>símbolo de maior ou igual a</bookmark_value><bookmark_value>relación é proporcional a</bookmark_value><bookmark_value>relacións é similar a</bookmark_value><bookmark_value>relación tende a</bookmark_value><bookmark_value>símbolos lóxicos</bookmark_value><bookmark_value>símbolo de frecha dupla</bookmark_value><bookmark_value>relación é moito maior que</bookmark_value><bookmark_value>relación é considerabelmente maior que</bookmark_value><bookmark_value>relación é maior que</bookmark_value><bookmark_value>relación é moito menor que</bookmark_value><bookmark_value>relación é considerabelmente menor que</bookmark_value><bookmark_value>relación é definido como</bookmark_value><bookmark_value>correspondencia; figura por</bookmark_value><bookmark_value>figura por correspondencia</bookmark_value><bookmark_value>imaxe da relación</bookmark_value><bookmark_value>correspondencia; oriorixinal por</bookmark_value><bookmark_value>orixinal por correspondencia</bookmark_value><bookmark_value>relación precede a</bookmark_value><bookmark_value>relación non precede a</bookmark_value><bookmark_value>relación sucede a</bookmark_value><bookmark_value>relación non sucede a</bookmark_value><bookmark_value>relación precede ou é igual a</bookmark_value><bookmark_value>relación sucede ou é igual a</bookmark_value><bookmark_value>relación precede ou é equivalente a</bookmark_value><bookmark_value>relación sucede ou é equivalente a</bookmark_value>"
+msgstr "<bookmark_value>relacións; no Math do $[officename]</bookmark_value><bookmark_value>Math do $[officename]; relacións</bookmark_value><bookmark_value>símbolo de igualdade</bookmark_value><bookmark_value>inecuación</bookmark_value><bookmark_value>símbolo de desigualdade</bookmark_value><bookmark_value>relación é idéntico a</bookmark_value><bookmark_value>relación é congruente con</bookmark_value><bookmark_value>relación ten ángulo recto con</bookmark_value><bookmark_value>relación é ortogonal a</bookmark_value><bookmark_value>relación divide</bookmark_value><bookmark_value>relación non divide</bookmark_value><bookmark_value>relación é menor que</bookmark_value><bookmark_value>relación é aproximadamente igual a</bookmark_value><bookmark_value>relación é paralelo a</bookmark_value><bookmark_value>símbolo de menor ou igual a</bookmark_value><bookmark_value>símbolo de maior ou igual a</bookmark_value><bookmark_value>relación é proporcional a</bookmark_value><bookmark_value>relacións é similar a</bookmark_value><bookmark_value>relación tende a</bookmark_value><bookmark_value>símbolos lóxicos</bookmark_value><bookmark_value>símbolo de frecha dupla</bookmark_value><bookmark_value>relación é moito maior que</bookmark_value><bookmark_value>relación é considerabelmente maior que</bookmark_value><bookmark_value>relación é maior que</bookmark_value><bookmark_value>relación é moito menor que</bookmark_value><bookmark_value>relación é considerabelmente menor que</bookmark_value><bookmark_value>relación é definido como</bookmark_value><bookmark_value>correspondencia; figura por</bookmark_value><bookmark_value>figura por correspondencia</bookmark_value><bookmark_value>imaxe da relación</bookmark_value><bookmark_value>correspondencia; orixinal por</bookmark_value><bookmark_value>orixinal por correspondencia</bookmark_value><bookmark_value>relación precede a</bookmark_value><bookmark_value>relación non precede a</bookmark_value><bookmark_value>relación sucede a</bookmark_value><bookmark_value>relación non sucede a</bookmark_value><bookmark_value>relación precede ou é igual a</bookmark_value><bookmark_value>relación sucede ou é igual a</bookmark_value><bookmark_value>relación precede ou é equivalente a</bookmark_value><bookmark_value>relación sucede ou é equivalente a</bookmark_value>"
#. j8KMi
#: 03090200.xhp
diff --git a/source/gl/helpcontent2/source/text/swriter.po b/source/gl/helpcontent2/source/text/swriter.po
index 883ba0555f5..85f1c306f5c 100644
--- a/source/gl/helpcontent2/source/text/swriter.po
+++ b/source/gl/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-08-21 02:35+0000\n"
+"PO-Revision-Date: 2020-11-28 01:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1546864361.000000\n"
#. P7iNX
@@ -527,7 +527,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Welcome to the $[officename] Writer Help"
-msgstr "Benvido(a) á Axuda de $[officename] Writer"
+msgstr "Reciba a benvida á Axuda de $[officename] Writer"
#. CsmWo
#: main0000.xhp
diff --git a/source/gl/helpcontent2/source/text/swriter/guide.po b/source/gl/helpcontent2/source/text/swriter/guide.po
index 5378a8377a9..2e4a3861345 100644
--- a/source/gl/helpcontent2/source/text/swriter/guide.po
+++ b/source/gl/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-29 13:35+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/gl/>\n"
@@ -12523,13 +12523,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12568,13 +12568,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12595,58 +12595,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12676,13 +12658,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16916,14 +16898,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "A menos que especifique o contrario, os novos documentos de texto de $[officename] están baseados no modelo predefinido."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] posúe varios <link href=\"text/swriter/01/05130000.xhp\" name=\"modelos predefinidos\">modelos predefinidos</link> que pode usar para crear diferentes tipos de documentos de texto, como cartas comerciais."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17276,14 +17258,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Na <item type=\"menuitem\"> Ferramentas </item> bar, prema no botón <item type=\"menuitem\"> Cursor directo </item> icona <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in \"><alt id=\"alt_id3149846\"> icona </alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17294,32 +17276,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Prema nun espazo libre do documento de texto. O apuntador do rato transfórmase para reflectir o aliñamento que se aplicará ao texto que introduza:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icona</alt> </image> Aliñar á esquerda"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"> <alt id=\"alt_id5730253\">icona</alt></image> Centrada"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"> <alt id=\"alt_id6953622\"> icona </alt> </image> Aliñar á dereita"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
index 7e9e2cdef53..c7649449cd3 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-18 15:35+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/gl/>\n"
"Language: gl\n"
@@ -2424,7 +2424,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Cl~ear Contents..."
-msgstr "~Limpar o contido..."
+msgstr "~Limpar contido..."
#. isi5D
#: CalcCommands.xcu
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Agochar diapositiva"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~xto..."
+msgid "Te~xt Attributes..."
+msgstr "Atributos de te~xto..."
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -21776,7 +21776,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr "Clonar o formato"
+msgstr "Clonar formato"
#. 7uXaL
#: GenericCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Ficheiro"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Al~iñar"
+msgid "Alig~n Objects"
+msgstr "Ali~ñar obxectos"
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Al~iñar"
+msgid "Align Tex~t"
+msgstr "Aliñar ~texto"
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Seleccionar ata a fin do parágrafo"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Seleccionar ata o final da palabra"
+msgid "Select to End of Word"
+msgstr "Seleccionar até a fin da palabra"
#. bpBoC
#: WriterCommands.xcu
@@ -34006,7 +34006,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr "Clonar o formato"
+msgstr "Clonar formato"
#. 59EAt
#: WriterCommands.xcu
diff --git a/source/gl/sc/messages.po b/source/gl/sc/messages.po
index aaaa703cb14..f0aee360752 100644
--- a/source/gl/sc/messages.po
+++ b/source/gl/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/gl/>\n"
"Language: gl\n"
@@ -2094,13 +2094,13 @@ msgstr "Título do eixe"
#: sc/inc/globstr.hrc:373
msgctxt "STR_PIVOT_STYLE_INNER"
msgid "Pivot Table Value"
-msgstr "Valor da táboa dinámica"
+msgstr "Valor de táboa dinámica"
#. iaSss
#: sc/inc/globstr.hrc:374
msgctxt "STR_PIVOT_STYLE_RESULT"
msgid "Pivot Table Result"
-msgstr "Resultado da táboa dinámica"
+msgstr "Resultado de táboa dinámica"
#. DJhBL
#: sc/inc/globstr.hrc:375
@@ -2112,19 +2112,19 @@ msgstr "Categoría dinámica"
#: sc/inc/globstr.hrc:376
msgctxt "STR_PIVOT_STYLE_TITLE"
msgid "Pivot Table Title"
-msgstr "Título da táboa dinámica"
+msgstr "Título de táboa dinámica"
#. zuSeA
#: sc/inc/globstr.hrc:377
msgctxt "STR_PIVOT_STYLE_FIELDNAME"
msgid "Pivot Table Field"
-msgstr "Campo da táboa dinámica"
+msgstr "Campo de táboa dinámica"
#. Spguu
#: sc/inc/globstr.hrc:378
msgctxt "STR_PIVOT_STYLE_TOP"
msgid "Pivot Table Corner"
-msgstr "Canto da táboa dinámica"
+msgstr "Canto de táboa dinámica"
#. GyuCe
#: sc/inc/globstr.hrc:379
@@ -14101,13 +14101,13 @@ msgstr "Valor que debe utilizar para a comparación."
#: sc/inc/scfuncs.hrc:3409
msgctxt "SC_OPCODE_LOOKUP"
msgid "Search vector"
-msgstr "Vector_busca"
+msgstr "Vector de busca"
#. DCfYa
#: sc/inc/scfuncs.hrc:3410
msgctxt "SC_OPCODE_LOOKUP"
msgid "The vector (row or column) in which to search."
-msgstr "Vector (fila ou columna) en que buscar."
+msgstr "O vector (fila ou columna) en que buscar."
#. UECRK
#: sc/inc/scfuncs.hrc:3411
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "~Ficheiro"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Indique os bordos das celas seleccionadas."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Aumentar sangrado"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Diminuír sangrado"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Aliñamento de obxectos"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposición"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Disposición"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "E_statísticas"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Datos"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Datos"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ima_xe"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~xe"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Debuxo"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Debuxo"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converter"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obxecto"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Obxecto"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Im_primir"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Im~primir"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensión"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensión"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
@@ -26360,7 +26360,7 @@ msgstr "Determina a configuración da impresora para as follas de cálculo."
#: sc/uiconfig/scalc/ui/optformula.ui:32
msgctxt "optformula|englishfuncname"
msgid "Use English function names"
-msgstr "Usar nomes ingleses de funcións"
+msgstr "Usar nomes das funcións en inglés"
#. EH5Je
#: sc/uiconfig/scalc/ui/optformula.ui:67
@@ -28796,7 +28796,7 @@ msgstr "Intervalos"
#: sc/uiconfig/scalc/ui/selectrange.ui:170
msgctxt "selectrange|extended_tip|SelectRangeDialog"
msgid "Selects a database range that you defined under Data - Define Range."
-msgstr "Selecciona un intervalo de bases de datos xa definido en Datos - Definir intervalo."
+msgstr "Selecciona un intervalo de base de datos xa definido en Datos - Definir intervalo."
#. EzRBz
#: sc/uiconfig/scalc/ui/selectsource.ui:8
@@ -29626,338 +29626,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Resolvedor"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr "_Restaurar todo"
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_pcións..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Abre a caixa de diálogo Opcións do solucionador."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Solucionar"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Cela de _destino"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimizar resultado cara o"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Cambiando as celas"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Mín_imo"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Introduza o intervalo de celas que poden ser cambiadas."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Má_ximo"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Introduza o intervalo de celas que poden ser cambiadas."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Introduza o intervalo de celas que poden ser cambiadas."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Introduza ou prema na referencia de cela da cela de destino. Este campo toma o enderezo da cela cuxo valor se desexa optimizar."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Valor de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Introduza o intervalo de celas que poden ser cambiadas."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Introduza o intervalo de celas que poden ser cambiadas."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Referencia da cela"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operador"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_alor"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de cela"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de cela"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de cela"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de cela"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Enteiro"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binario"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operador"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Enteiro"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binario"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operador"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Enteiro"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binario"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operador"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Enteiro"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binario"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operador"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valor"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valor"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valor"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valor"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Retirar"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Retirar"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Retirar"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Retirar"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Condicións limitadoras"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Abre a caixa de diálogo Solucinador. Un solucionador permite resolver problemas matemáticos con varias variábeis descoñecidas e un conxunto de restricións sobre as variábeis con métodos de atinxir meta."
diff --git a/source/gl/scaddins/messages.po b/source/gl/scaddins/messages.po
index bbe4cb4b81c..e87e3e61050 100644
--- a/source/gl/scaddins/messages.po
+++ b/source/gl/scaddins/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-01-17 16:46+0100\n"
-"PO-Revision-Date: 2020-08-22 22:35+0000\n"
+"PO-Revision-Date: 2020-12-06 19:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/scaddinsmessages/gl/>\n"
"Language: gl\n"
@@ -280,7 +280,7 @@ msgstr "O número"
#: scaddins/inc/analysis.hrc:101
msgctxt "ANALYSIS_Multinomial"
msgid "Returns the multinomial coefficient of a set of numbers"
-msgstr "Devolve o coeficiente multinominal dun conxunto de números"
+msgstr "Devolve o coeficiente multinomial dun conxunto de números"
#. vix4j
#: scaddins/inc/analysis.hrc:102
@@ -292,7 +292,7 @@ msgstr "Número"
#: scaddins/inc/analysis.hrc:103
msgctxt "ANALYSIS_Multinomial"
msgid "Number or list of numbers for which you want the multinomial coefficient"
-msgstr "Número ou lista de números para os que debe determinar o coeficiente multinominal"
+msgstr "Número ou lista de números para os que debe determinar o coeficiente multinomial"
#. V9LAZ
#: scaddins/inc/analysis.hrc:108
diff --git a/source/gl/sd/messages.po b/source/gl/sd/messages.po
index e463848e637..2fca09ed983 100644
--- a/source/gl/sd/messages.po
+++ b/source/gl/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-07 06:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/gl/>\n"
@@ -3819,116 +3819,116 @@ msgstr "~Táboa"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converter"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_xe"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~xe"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Debuxo"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Debuxo"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obxecto"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obxecto"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Principal"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Principal"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensión"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensión"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menú"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensión"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "~Ficheiro"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Disposición"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposición"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pre_sentación de diapositivas"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Pre~sentación de diapositivas"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táboa"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táboa"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converter"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_xe"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~xe"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Debuxo"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Debuxo"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obxecto"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obxecto"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Principal"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Principal"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Ver"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Esquema"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensión"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensión"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Editar contorno"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensión"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/gl/sfx2/messages.po b/source/gl/sfx2/messages.po
index 06d546db69d..ebf62bf7778 100644
--- a/source/gl/sfx2/messages.po
+++ b/source/gl/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-02 14:42+0000\n"
+"PO-Revision-Date: 2020-11-25 12:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560960742.000000\n"
#. bHbFE
@@ -4145,25 +4145,25 @@ msgstr ""
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Pechar barra lateral"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Personalización"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Restaurar valores predeterminados"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Configuración da barra lateral"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/gl/starmath/messages.po b/source/gl/starmath/messages.po
index bc03d86d11b..3b67a1955c8 100644
--- a/source/gl/starmath/messages.po
+++ b/source/gl/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562230149.000000\n"
#. GrDhX
@@ -2189,11 +2189,11 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Teorema fundamental do cálculo"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
-msgstr "Ecuación do Caos"
+msgstr "Equación do Caos"
#. afEQ8
#: starmath/inc/strings.hrc:329
diff --git a/source/gl/svtools/messages.po b/source/gl/svtools/messages.po
index d0be64d8554..a3c93b6c8cc 100644
--- a/source/gl/svtools/messages.po
+++ b/source/gl/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-07 06:36+0000\n"
+"PO-Revision-Date: 2020-11-25 12:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559330420.000000\n"
#. fLdeV
@@ -3419,7 +3419,7 @@ msgstr "Español (Porto Rico)"
#: svtools/inc/langtab.hrc:183
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Kenya)"
-msgstr "Swahili (Kenia)"
+msgstr "Suaíli (Quenia)"
#. AFhrJ
#: svtools/inc/langtab.hrc:184
@@ -3647,7 +3647,7 @@ msgstr "Dzongkha"
#: svtools/inc/langtab.hrc:221
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Tanzania)"
-msgstr "Swahili (Tanzania)"
+msgstr "Suaíli (Tanzania)"
#. ywH3p
#: svtools/inc/langtab.hrc:222
diff --git a/source/gl/svx/messages.po b/source/gl/svx/messages.po
index c1efb0b5ca9..867d432492f 100644
--- a/source/gl/svx/messages.po
+++ b/source/gl/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559330444.000000\n"
#. 3GkZj
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Axustar a diapositiva á xanela actual."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Non foi posíbel cargar todos os SmartArts. O gardado en Microsoft Office 2010 ou posterior evitaría este problema."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Non foi posíbel cargar todos os obxectos de SmartArt. Gardar no Office 2010 da Microsoft ou nunha versión posterior podería evitar este problema."
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barra de navegación"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"O informe de fallo foi enviado correctamente.\n"
-"Dentro de pouco ha poder ver este informe en:\n"
-" crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Enviar un informe de fallo"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Non enviar"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/gl/sw/messages.po b/source/gl/sw/messages.po
index d2f2aae8da7..591be082237 100644
--- a/source/gl/sw/messages.po
+++ b/source/gl/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 11:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562578065.000000\n"
#. v3oJv
@@ -100,11 +100,11 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr "Manter os niveis de títulos en orde. O título de nivel %LEVEL_CURRENT% non debe ir despois de %LEVEL_PREV%."
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr "Evite utilizar o Fontwork nos seus documentos. Asegúrese de que o usa para presentar unha mostra ou outro texto sen sentido."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
+msgstr "Evite os obxectos de Fontwork nos seus documentos. Comprobe que o emprega para mostras ou texto sen sentido."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -20361,181 +20361,181 @@ msgid "~File"
msgstr "~Ficheiro"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposición"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposición"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referencia_s"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referencia~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táboa"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táboa"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ima_xe"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~xe"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Debuxo"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Debuxo"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obxecto"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obxecto"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Im_primir"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Im~primir"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_xtensión"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensión"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
@@ -21573,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Editar contorno"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_xtensión"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/gu/cui/messages.po b/source/gu/cui/messages.po
index a7da41f9dc9..29052acd39e 100644
--- a/source/gu/cui/messages.po
+++ b/source/gu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21382,60 +21382,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/gu/helpcontent2/source/text/sbasic/shared.po b/source/gu/helpcontent2/source/text/sbasic/shared.po
index fd51375ae37..b9140906550 100644
--- a/source/gu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
-"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Creates a new directory on a data medium."
-
-#. SehPs
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
msgstr ""
-#. xrp6D
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3155150\n"
+"par_id3147000\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
+msgid "Creates a new directory on a data medium."
+msgstr "Creates a new directory on a data medium."
-#. J4Hg2
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3156027\n"
+"par_id3155150\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "If the path is not determined, the directory is created in the current directory."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,13 +13120,13 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Deletes an existing directory from a data medium."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
msgstr ""
#. uE7FC
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,24 +24568,15 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Stops the execution of the Basic program."
-#. FtjMt
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3153126\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
msgstr ""
-#. qrBWD
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. BsgsP
#: 03090409.xhp
msgctxt ""
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,24 +34063,15 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
-#. ACDCD
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3153990\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
msgstr ""
-#. 9DA89
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. 9FABw
#: 03130500.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/scalc/00.po b/source/gu/helpcontent2/source/text/scalc/00.po
index 9f49ad0869b..52c0d136c83 100644
--- a/source/gu/helpcontent2/source/text/scalc/00.po
+++ b/source/gu/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/gu/helpcontent2/source/text/scalc/guide.po b/source/gu/helpcontent2/source/text/scalc/guide.po
index 146d9fe60aa..7e76a67b562 100644
--- a/source/gu/helpcontent2/source/text/scalc/guide.po
+++ b/source/gu/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/gu/helpcontent2/source/text/sdraw/01.po b/source/gu/helpcontent2/source/text/sdraw/01.po
index d76c7ca975f..b20ea032b49 100644
--- a/source/gu/helpcontent2/source/text/sdraw/01.po
+++ b/source/gu/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 23:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/gu/helpcontent2/source/text/shared/01.po b/source/gu/helpcontent2/source/text/shared/01.po
index a7d622e6289..271be4cec39 100644
--- a/source/gu/helpcontent2/source/text/shared/01.po
+++ b/source/gu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/gu/helpcontent2/source/text/shared/guide.po b/source/gu/helpcontent2/source/text/shared/guide.po
index 0798ccb41ca..d3a04224a3c 100644
--- a/source/gu/helpcontent2/source/text/shared/guide.po
+++ b/source/gu/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "ભૂલ અહેવાલ સાધન"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "ભૂલના અહેવાલ માટેનું સાધન શરુ કરી રહ્યા છે"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "અહેવાલ પૂરો કરી રહ્યા છે"
-
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Sending the Error Report"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "કઈ માહિતી મોકલાઈ?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modifying Default Templates"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
msgstr ""
-#. GuEWL
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. Quf5G
+#. DuAAp
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id251605475503009\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "There are several ways to make your work easier by using your own custom templates."
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. S8XFP
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/gu/helpcontent2/source/text/shared/optionen.po b/source/gu/helpcontent2/source/text/shared/optionen.po
index 9af1907d69a..9ef89c7e6eb 100644
--- a/source/gu/helpcontent2/source/text/shared/optionen.po
+++ b/source/gu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "જુઓ"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Screen font antialiasing"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Graphics output"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "યાદી"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Screen font antialiasing"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">Enter the smallest font size to apply antialiasing.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/swriter/guide.po b/source/gu/helpcontent2/source/text/swriter/guide.po
index 6cc18c8a735..4efd47968a7 100644
--- a/source/gu/helpcontent2/source/text/swriter/guide.po
+++ b/source/gu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr ""
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "On the <emph>Tools</emph> bar, click the <emph>Direct Cursor</emph> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"3.7mm\" height=\"8.2mm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"6.09mm\" height=\"8.2mm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"3.97mm\" height=\"8.2mm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
index cd97738353a..b2450ba6df7 100644
--- a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -8126,15 +8126,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "સ્લાઈડ છુપાવો (~H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "લખાણ (~x)..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25812,27 +25812,25 @@ msgctxt ""
msgid "~File"
msgstr "ફાઈલ (~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ગોઠવો"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ગોઠવો"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31498,15 +31496,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "ફકરાના અંત સુધી પસંદ કરો"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "જમણા શબ્દ સુધી પસંદ કરો"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/gu/sc/messages.po b/source/gu/sc/messages.po
index 694eb47ab2e..07ed276bb83 100644
--- a/source/gu/sc/messages.po
+++ b/source/gu/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25097,213 +25097,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30273,343 +30273,349 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "ઉકેલનાર"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "વિકલ્પો(_p)..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "ઉકેલો (_S)"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "લક્ષ્ય સેલ (_T)"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "પરિણામ ની આશા રાખો"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "સેલને બદલીને (_B)"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "ન્યૂનત્તમ (_u)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "મહત્તમ (_M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "ની કિંમત (_V)"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "સેલ સંદર્ભ (_C)"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "ઑપરેટર (_O)"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "કિંમત (_a)"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "સેલ સંદર્ભ (_C)"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "સેલ સંદર્ભ (_C)"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "સેલ સંદર્ભ (_C)"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "સેલ સંદર્ભ (_C)"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "પૂર્ણાંક"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "બાઇનરી"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "પ્રક્રિયક"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "પૂર્ણાંક"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "બાઇનરી"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "પ્રક્રિયક"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "પૂર્ણાંક"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "બાઇનરી"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "પ્રક્રિયક"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "પૂર્ણાંક"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "બાઇનરી"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "પ્રક્રિયક"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "કિંમત"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "કિંમત"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "કિંમત"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "કિંમત"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "દૂર કરો"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "દૂર કરો"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "દૂર કરો"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "દૂર કરો"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "મર્યાદિત શરતો"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/gu/sd/messages.po b/source/gu/sd/messages.po
index 7ae4df04e44..404d3d45c71 100644
--- a/source/gu/sd/messages.po
+++ b/source/gu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3869,116 +3869,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4382,12 +4382,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6698,219 +6692,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7872,12 +7866,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "લખાણનુ કન્ટુર"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/gu/starmath/messages.po b/source/gu/starmath/messages.po
index 6c59da8d4b2..1bcf0431662 100644
--- a/source/gu/starmath/messages.po
+++ b/source/gu/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2195,9 +2195,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/gu/svx/messages.po b/source/gu/svx/messages.po
index c2ed120a157..e893c35d59a 100644
--- a/source/gu/svx/messages.po
+++ b/source/gu/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Gujarati <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gu/>\n"
@@ -7289,10 +7289,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "હાલની વિન્ડોમાં સ્લાઇડને બંધબેસાડો."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14162,13 +14162,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "સંશોધક પટ્ટી"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14192,10 +14192,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/gu/sw/messages.po b/source/gu/sw/messages.po
index 90aff582fd9..0d41f771356 100644
--- a/source/gu/sw/messages.po
+++ b/source/gu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20793,181 +20793,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22024,12 +22024,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "લખાણનુ કન્ટુર"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/gug/cui/messages.po b/source/gug/cui/messages.po
index 38037c29540..db965912838 100644
--- a/source/gug/cui/messages.po
+++ b/source/gug/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-01 16:20+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: Guarani (Paraguayan) <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/gug/>\n"
@@ -20936,60 +20936,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/gug/helpcontent2/source/text/sbasic/shared.po b/source/gug/helpcontent2/source/text/sbasic/shared.po
index 705a47e6dd7..d0c784a10b4 100644
--- a/source/gug/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gug/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-05 10:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557855034.000000\n"
#. yzYVt
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Instrucción MkDir\">Instrucción MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Crea una carpeta nueva en un soporte de datos."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "Creates a new directory on a data medium."
+msgstr "Crea una carpeta nueva en un soporte de datos."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Texto As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que especifique el nombre y ruta del directorio que se desea crear. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">notación URL</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Si la ruta de acceso no se determina, se crea el directorio en el directorio actual."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Elimina una carpeta existente de un soporte de datos."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Texto As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Si la ruta de acceso no se determina, la <emph>instrucción RmDir</emph> busca el directorio que se desea borrar en la ruta actual. Si no lo encuentra, aparece un mensaje de error."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Detiene la ejecución del programa Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Instrucción With\">Instrucción With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Define un objeto como el predeterminado. A menos que se declare otro nombre de objeto, todas las propiedades y métodos hacen referencia al objeto predeterminado hasta que se llega a la instrucción End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Use <emph>With</emph> y <emph>End With</emph> si tiene varias propiedades o métodos para un único objeto."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Hace sonar un tono a través del altavoz del ordenador. El tono depende del sistema y no puede modificarse el volumen ni la modulación."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/gug/helpcontent2/source/text/scalc/00.po b/source/gug/helpcontent2/source/text/scalc/00.po
index 404604e58b2..fb91b5d0604 100644
--- a/source/gug/helpcontent2/source/text/scalc/00.po
+++ b/source/gug/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-03 13:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/es/>\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Vaya a <item type=\"menuitem\">Ver ▸ Dividir ventana</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Vaya a <item type=\"menuitem\">Ver ▸Inmovilizar celdas ▸ Inmovilizar filas y columnas</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/gug/helpcontent2/source/text/scalc/01.po b/source/gug/helpcontent2/source/text/scalc/01.po
index 0ce0f9bb65f..d38974c03d3 100644
--- a/source/gug/helpcontent2/source/text/scalc/01.po
+++ b/source/gug/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:33+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564682427.000000\n"
#. sZfWF
@@ -1715,7 +1715,7 @@ msgctxt ""
"par_id2308201415431525817\n"
"help.text"
msgid "<ahelp hid=\".\">Populate a cell range with automatically generated pseudo random numbers with the selected distribution function and its parameters.</ahelp>"
-msgstr "<ahelp hid=\".\">Rellena un intervalo de celdas con números aleatorios de acuerdo con la distribución seleccionada y sus parámetros.</ahelp>"
+msgstr "<ahelp hid=\".\">Rellena un intervalo de celdas con números pseudoaleatorios de acuerdo con la distribución seleccionada y sus parámetros.</ahelp>"
#. 6dhgD
#: 02140700.xhp
@@ -9995,7 +9995,7 @@ msgctxt ""
"par_id3149312\n"
"help.text"
msgid "<variable id=\"logicaltext\">This category contains the <emph>Logical</emph> functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"logicaltext\">Esta categoría contiene las funciones <emph>lógicas</emph>.</variable>"
#. ADKTB
#: 04060105.xhp
@@ -12695,7 +12695,7 @@ msgctxt ""
"bm_id3157762\n"
"help.text"
msgid "<bookmark_value>PI function</bookmark_value>"
-msgstr "<bookmark_value>PI</bookmark_value>"
+msgstr "<bookmark_value>función PI</bookmark_value>"
#. kbhnE
#: 04060106.xhp
@@ -45950,7 +45950,7 @@ msgctxt ""
"hd_id3149530\n"
"help.text"
msgid "Borders"
-msgstr "Borde"
+msgstr "Bordes"
#. BisJb
#: 05110000.xhp
@@ -45986,7 +45986,7 @@ msgctxt ""
"hd_id3155379\n"
"help.text"
msgid "Pattern"
-msgstr "Modelo"
+msgstr "Motivo"
#. CTDte
#: 05110000.xhp
@@ -45995,7 +45995,7 @@ msgctxt ""
"par_id3150368\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">Cuando está marcada, indica que desea conservar el patrón del formato seleccionado.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">Cuando está marcada, indica que desea conservar el motivo del formato seleccionado.</ahelp>"
#. C6ePa
#: 05110000.xhp
@@ -46499,7 +46499,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
-msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">La orden <emph>División de palabras</emph> abre el cuadro de diálogo para establecer la separación por sílabas en $[officename] Calc.</ahelp></variable>"
+msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">La orden <emph>División de palabras</emph> abre el cuadro de diálogo para establecer el silabeo en $[officename] Calc.</ahelp></variable>"
#. xwmmG
#: 06020000.xhp
@@ -52745,7 +52745,7 @@ msgctxt ""
"par_id221603980244052\n"
"help.text"
msgid "Only up to 255 characters are saved, when using Excel format."
-msgstr ""
+msgstr "Cuando se utiliza el formato de Excel, se guardan únicamente 255 caracteres como máximo."
#. pfATZ
#: 12120100.xhp
@@ -53204,7 +53204,7 @@ msgctxt ""
"hd_id1000013\n"
"help.text"
msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.3."
-msgstr ""
+msgstr "Esta función es parte del estándar Open Document Format for Office Applications (OpenDocument), versión 1.3."
#. SGHPh
#: calculate.xhp
@@ -56480,7 +56480,7 @@ msgctxt ""
"par_id831605805755075\n"
"help.text"
msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
-msgstr ""
+msgstr "Para que estos ejemplos funcionen como se han descrito, asegúrese de que esté seleccionada la opción <emph>Activar expresiones regulares en fórmulas</emph>, la cual se halla en <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME ▸ Preferencias</menuitem></caseinline><defaultinline><menuitem>Herramientas ▸ Opciones</menuitem></defaultinline></switchinline><menuitem> ▸ $[officename] Calc ▸ Calcular</menuitem>."
#. iHFsx
#: func_countifs.xhp
@@ -60458,7 +60458,7 @@ msgctxt ""
"hd_id30455222431067\n"
"help.text"
msgid "Using regular expressions and nested functions"
-msgstr ""
+msgstr "Uso de expresiones regulares y funciones anidadas"
#. CBaMz
#: func_minifs.xhp
@@ -60476,7 +60476,7 @@ msgctxt ""
"par_id27619246864839\n"
"help.text"
msgid "Calculates the minimum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and minimum. Returns 65."
-msgstr ""
+msgstr "Calcula el mínimo de los valores del intervalo C2:C6 que corresponde a todos los valores del intervalo B2:B6 excepto su mínimo y máximo. Devuelve 65."
#. CnZcV
#: func_minifs.xhp
diff --git a/source/gug/helpcontent2/source/text/scalc/02.po b/source/gug/helpcontent2/source/text/scalc/02.po
index e1315b20cf3..9eb9de75007 100644
--- a/source/gug/helpcontent2/source/text/scalc/02.po
+++ b/source/gug/helpcontent2/source/text/scalc/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: 2020-06-29 13:08+0200\n"
-"PO-Revision-Date: 2020-08-15 14:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc02/es/>\n"
"Language: es\n"
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3156444\n"
"help.text"
msgid "$[officename] automatically suggests a cell range, provided that the spreadsheet contains data. If the cell range already contains a function, you can combine it with the new one to yield the function applied to the range data. If the range contains filters, the Subtotal function is inserted instead of the selected function."
-msgstr ""
+msgstr "$[officename] sugerirá automáticamente un intervalo de celdas siempre y cuando la hoja de cálculo contenga datos. Si el intervalo de celdas contuviere ya una función, podrá combinarla con la nueva para producir un resultado correspondiente a los datos del intervalo. Si el intervalo contuviere filtros, se insertará la función Subtotal en lugar de la función seleccionada."
#. vpnqf
#: 06030000.xhp
@@ -455,7 +455,7 @@ msgctxt ""
"par_id3153189\n"
"help.text"
msgid "Click the <emph>Accept</emph> icon to use the formula displayed in the input line or <emph>Cancel</emph>."
-msgstr ""
+msgstr "Pulse en el icono <emph>Aceptar</emph> para utilizar la fórmula mostrada en el cuadro de entrada; en caso contrario, pulse en <emph>Cancelar</emph>."
#. TVD6h
#: 06030000.xhp
@@ -518,7 +518,7 @@ msgctxt ""
"par_id991592658144387\n"
"help.text"
msgid "When the selected range has one row, the function result is placed in the first available cell on the right of the selected range."
-msgstr ""
+msgstr "Cuando el intervalo seleccionado consta de una fila, el resultado de la función se coloca en la primera celda disponible a la derecha del intervalo seleccionado."
#. NYGR7
#: 06040000.xhp
diff --git a/source/gug/helpcontent2/source/text/scalc/guide.po b/source/gug/helpcontent2/source/text/scalc/guide.po
index e0265195347..77a5487c7c3 100644
--- a/source/gug/helpcontent2/source/text/scalc/guide.po
+++ b/source/gug/helpcontent2/source/text/scalc/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: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-11-17 16:43+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/es/>\n"
"Language: es\n"
@@ -5693,7 +5693,7 @@ msgctxt ""
"par_id3163853\n"
"help.text"
msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. These symbols are included in searches when the Formatted Display search option is activated."
-msgstr ""
+msgstr "El contenido de las celdas puede formatearse de varias formas. Por ejemplo, un número se puede formatear como moneda para que se muestre con un símbolo monetario. Estos símbolos se incluyen en las búsquedas cuando se activa la opción Cadena formateada."
#. Z4ABm
#: finding.xhp
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Para inmovilizar horizontal y verticalmente seleccione la <emph>celda</emph> situada debajo de la fila y a la derecha de la columna que quiera fijar."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Vaya a <item type=\"menuitem\">Ver ▸ Inmovilizar celdas ▸ Inmovilizar filas y columnas</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr "Vaya a <item type=\"menuitem\">Ver ▸ Inmovilizar filas y columnas</item>."
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Para desactivar la funcionalidad, diríjase de nuevo a <item type=\"menuitem\">Ver ▸ Inmovilizar celdas ▸ Inmovilizar filas y columnas</item>."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr "Para desactivarlo, diríjase nuevamente a <item type=\"menuitem\">Ver ▸ Inmovilizar filas y columnas</item>."
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Si desea que una fila determinada se imprima en todas las hojas de un documento, utilice la orden <item type=\"menuitem\">Formato ▸ Zonas de impresión ▸ Editar</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Ver - Inmovilizar celdas - Inmovilizar filas y columnas\">Ver ▸ Inmovilizar celdas ▸ Inmovilizar filas y columnas</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Ver - Inmovilizar celdas - Inmovilizar filas y columnas\">Ver ▸ Inmovilizar filas y columnas</link>"
#. RbKLt
#: line_fix.xhp
@@ -12587,7 +12587,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Edit Macros</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Herramientas ▸ Macros ▸ Editar macros</menuitem>."
#. N4uB4
#: userdefined_function.xhp
@@ -13451,7 +13451,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
-msgstr "En <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ $[officename] ▸ General</emph> puede definir el siglo que se usa cuando escribe un año con solo dos dígitos. El intervalo de fechas predeterminado es desde 1930 hasta 2029."
+msgstr "En <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ $[officename] ▸ General</emph> puede definir el siglo que se usa cuando escribe un año con solo dos dígitos. El intervalo de fechas predeterminado abarca desde 1930 hasta 2029."
#. zB3Ff
#: year2000.xhp
diff --git a/source/gug/helpcontent2/source/text/sdatabase.po b/source/gug/helpcontent2/source/text/sdatabase.po
index 87b3c3ab207..4d31dacc9a4 100644
--- a/source/gug/helpcontent2/source/text/sdatabase.po
+++ b/source/gug/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/es/>\n"
"Language: es\n"
@@ -1093,7 +1093,7 @@ msgctxt ""
"par_id3155533\n"
"help.text"
msgid "No function will be executed."
-msgstr ""
+msgstr "No se ejecutará ninguna función."
#. 6dWZZ
#: 02010100.xhp
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3166420\n"
"help.text"
msgid "Average"
-msgstr ""
+msgstr "Promedio"
#. NfRNs
#: 02010100.xhp
@@ -1111,7 +1111,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "Calculates the arithmetic mean of a field."
-msgstr ""
+msgstr "Calcula la media aritmética de un campo."
#. 6z2Kj
#: 02010100.xhp
@@ -1120,7 +1120,7 @@ msgctxt ""
"par_id3149979\n"
"help.text"
msgid "Count"
-msgstr ""
+msgstr "Recuento"
#. rvWA5
#: 02010100.xhp
@@ -1129,7 +1129,7 @@ msgctxt ""
"par_id3155810\n"
"help.text"
msgid "Determines the number of records in the table. Empty fields can either be counted (a) or excluded (b)."
-msgstr ""
+msgstr "Determina el número de registros de la tabla. Los campos vacíos pueden incluirse (a) o excluirse (b)."
#. UyAx2
#: 02010100.xhp
@@ -1156,7 +1156,7 @@ msgctxt ""
"par_id3153067\n"
"help.text"
msgid "Maximum"
-msgstr ""
+msgstr "Máximo"
#. ds4ey
#: 02010100.xhp
@@ -1165,7 +1165,7 @@ msgctxt ""
"par_id3159221\n"
"help.text"
msgid "Determines the highest value of a record for that field."
-msgstr ""
+msgstr "Determina el valor más alto de un registro para este campo."
#. EhSWy
#: 02010100.xhp
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3146866\n"
"help.text"
msgid "Minimum"
-msgstr ""
+msgstr "Mínimo"
#. VxmeB
#: 02010100.xhp
@@ -1183,7 +1183,7 @@ msgctxt ""
"par_id3157982\n"
"help.text"
msgid "Determines the lowest value of a record for that field."
-msgstr ""
+msgstr "Determina el valor más bajo de un registro para este campo."
#. CvkuF
#: 02010100.xhp
@@ -1192,7 +1192,7 @@ msgctxt ""
"par_id3154828\n"
"help.text"
msgid "Sum"
-msgstr ""
+msgstr "Suma"
#. 82gAC
#: 02010100.xhp
@@ -1201,7 +1201,7 @@ msgctxt ""
"par_id3154536\n"
"help.text"
msgid "Calculates the sum of the values of records for the associated fields."
-msgstr ""
+msgstr "Calcula la suma de los valores de los registros para los campos asociados."
#. zCzVC
#: 02010100.xhp
@@ -1210,7 +1210,7 @@ msgctxt ""
"par_id3148820\n"
"help.text"
msgid "Group"
-msgstr ""
+msgstr "Agrupar"
#. tSPNG
#: 02010100.xhp
@@ -1237,7 +1237,7 @@ msgctxt ""
"par_id3156340\n"
"help.text"
msgid "SELECT FUNCTION(column) FROM table."
-msgstr ""
+msgstr "SELECT FUNCTION(columna) FROM tabla."
#. qAAoF
#: 02010100.xhp
@@ -1273,7 +1273,7 @@ msgctxt ""
"par_id3148651\n"
"help.text"
msgid "To use other functions not listed in the list box, you must enter them manually under <emph>Field</emph>."
-msgstr ""
+msgstr "Para utilizar estas funciones no enumeradas, las debe introducir manualmente en <emph>Campo</emph>."
#. WkboS
#: 02010100.xhp
@@ -1282,7 +1282,7 @@ msgctxt ""
"par_id3155098\n"
"help.text"
msgid "You can also assign aliases to function calls. If you do not want to display the query string in the column header, enter a desired substitute name under <emph>Alias</emph>."
-msgstr ""
+msgstr "También es posible asignar alias a las llamadas de las funciones. Si no quiere que se muestre la cadena de la consulta en la cabecera de la columna, introduzca un nombre sustituto en <emph>Alias</emph>."
#. 98GCC
#: 02010100.xhp
@@ -1300,7 +1300,7 @@ msgctxt ""
"par_id3149425\n"
"help.text"
msgid "SELECT FUNCTION() AS alias FROM table"
-msgstr ""
+msgstr "SELECT FUNCTION() AS alias FROM tabla"
#. EjzuD
#: 02010100.xhp
@@ -1309,7 +1309,7 @@ msgctxt ""
"par_id3144431\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Ejemplo:"
#. G9URE
#: 02010100.xhp
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_id3154614\n"
"help.text"
msgid "SELECT COUNT(*) AS count FROM \"Item\""
-msgstr ""
+msgstr "SELECT COUNT(*) AS recuento FROM \"Articulo\""
#. xiNnR
#: 02010100.xhp
@@ -1327,7 +1327,7 @@ msgctxt ""
"par_id3154610\n"
"help.text"
msgid "If you run such a function, you cannot insert any additional columns for the query other than as an argument in a \"Group\" function."
-msgstr ""
+msgstr "Si ejecuta esta función, no podrá insertar más columnas para la consulta que no sean argumentos de la función «Agrupar»."
#. EHACK
#: 02010100.xhp
@@ -1336,7 +1336,7 @@ msgctxt ""
"par_id3154644\n"
"help.text"
msgid "<emph>Examples</emph>"
-msgstr ""
+msgstr "<emph>Ejemplos</emph>"
#. N5CBE
#: 02010100.xhp
@@ -1345,7 +1345,7 @@ msgctxt ""
"par_id3151120\n"
"help.text"
msgid "In the following example, a query is run through two tables: an \"Item\" table with the \"Item_No\" field and a \"Suppliers\" table with the \"Supplier_Name\" field. In addition, both tables have a common field name \"Supplier_No.\""
-msgstr ""
+msgstr "En el ejemplo siguiente, se ejecuta una consulta a través de dos tablas: una, «Artículos», con el campo «Num_articulo», y la otra, «Proveedores», con el campo «Nombre_proveedor». Ambas tablas cuentan además con un nombre de campo en común, «Num_proveedor»."
#. P5hJD
#: 02010100.xhp
@@ -1354,7 +1354,7 @@ msgctxt ""
"par_id3155144\n"
"help.text"
msgid "The following steps are required to create a query containing all suppliers who deliver more than three items."
-msgstr ""
+msgstr "Los pasos descritos a continuación son necesarios para crear una consulta que contenga todos los proveedores que entregan más de tres artículos."
#. ZhRQD
#: 02010100.xhp
@@ -1363,7 +1363,7 @@ msgctxt ""
"par_id3153240\n"
"help.text"
msgid "Insert the \"Item\" and \"Suppliers\" tables into the query design."
-msgstr ""
+msgstr "Inserte las tablas «Artículo» y «Proveedores» en el diseño de la consulta."
#. LMRUV
#: 02010100.xhp
@@ -1372,7 +1372,7 @@ msgctxt ""
"par_id3148807\n"
"help.text"
msgid "Link the \"Supplier_No\" fields of the two tables if there is not already a relation of this type."
-msgstr ""
+msgstr "Enlace los campos «Num_proveedor» de las dos tablas si todavía no existiese una relación de este tipo."
#. qWhFA
#: 02010100.xhp
@@ -1390,7 +1390,7 @@ msgctxt ""
"par_id3151009\n"
"help.text"
msgid "Enter >3 as a criterion and disable the Visible field."
-msgstr ""
+msgstr "Introduzca >3 como criterio y desactive el campo Visible."
#. VwEhF
#: 02010100.xhp
@@ -1408,7 +1408,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "Run the query."
-msgstr ""
+msgstr "Ejecute la consulta."
#. EzQsj
#: 02010100.xhp
@@ -1426,7 +1426,7 @@ msgctxt ""
"par_id3153045\n"
"help.text"
msgid "Insert the \"Item\" table into the query design."
-msgstr ""
+msgstr "Inserte la tabla «Artículo» en el diseño de la consulta."
#. tjfuE
#: 02010100.xhp
@@ -1435,7 +1435,7 @@ msgctxt ""
"par_id3149802\n"
"help.text"
msgid "Double-click the \"Price\" and \"Supplier_No\" fields."
-msgstr ""
+msgstr "Pulse dos veces en los campos «Precio» y «Num_proveedor»."
#. 6dBkt
#: 02010100.xhp
@@ -1471,7 +1471,7 @@ msgctxt ""
"par_id3155547\n"
"help.text"
msgid "Run the query."
-msgstr ""
+msgstr "Ejecute la consulta."
#. EkHzB
#: 02010100.xhp
@@ -1480,7 +1480,7 @@ msgctxt ""
"par_id3147549\n"
"help.text"
msgid "The following context menu commands and symbols are available:"
-msgstr ""
+msgstr "Dispone de las órdenes de menú contextual y los símbolos siguientes:"
#. PesFs
#: 02010100.xhp
@@ -1489,7 +1489,7 @@ msgctxt ""
"hd_id3154172\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Funciones"
#. BchuJ
#: 02010100.xhp
@@ -1498,7 +1498,7 @@ msgctxt ""
"par_id3150414\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides a row for the selection of functions.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Muestra u oculta una fila según la selección de funciones.</ahelp>"
#. yx5XE
#: 02010100.xhp
@@ -1507,7 +1507,7 @@ msgctxt ""
"hd_id3149872\n"
"help.text"
msgid "Table Name"
-msgstr ""
+msgstr "Nombre de tabla"
#. ELTGJ
#: 02010100.xhp
@@ -1525,7 +1525,7 @@ msgctxt ""
"hd_id3145117\n"
"help.text"
msgid "Alias Name"
-msgstr ""
+msgstr "Nombre de alias"
#. LDFZB
#: 02010100.xhp
@@ -1543,7 +1543,7 @@ msgctxt ""
"hd_id3153298\n"
"help.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Valores distintos"
#. 23sAF
#: 02010100.xhp
@@ -1597,7 +1597,7 @@ msgctxt ""
"par_id3147501\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Allows you to limit the maximum number of records returned by a query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Le permite limitar el número máximo de registros devueltos por una consulta.</ahelp>"
#. B6S5f
#: 02010100.xhp
@@ -1615,7 +1615,7 @@ msgctxt ""
"hd_id3148926\n"
"help.text"
msgid "Formulating filter conditions"
-msgstr ""
+msgstr "Formular las condiciones del filtro"
#. iFSpm
#: 02010100.xhp
@@ -1633,7 +1633,7 @@ msgctxt ""
"par_id3149044\n"
"help.text"
msgid "Operator"
-msgstr ""
+msgstr "Operador"
#. mfdEx
#: 02010100.xhp
@@ -1642,7 +1642,7 @@ msgctxt ""
"par_id3152471\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significado"
#. mBZgC
#: 02010100.xhp
@@ -1651,7 +1651,7 @@ msgctxt ""
"par_id3147407\n"
"help.text"
msgid "Condition is satisfied if..."
-msgstr ""
+msgstr "La condición se cumple si…"
#. gqkRK
#: 02010100.xhp
@@ -1660,7 +1660,7 @@ msgctxt ""
"par_id3153026\n"
"help.text"
msgid "equal to"
-msgstr ""
+msgstr "igual a"
#. hw7KZ
#: 02010100.xhp
@@ -1669,7 +1669,7 @@ msgctxt ""
"par_id3148895\n"
"help.text"
msgid "... the content of the field is identical to the indicated expression."
-msgstr ""
+msgstr "… el contenido del campo es idéntico a la expresión indicada."
#. A8XJU
#: 02010100.xhp
@@ -1678,7 +1678,7 @@ msgctxt ""
"par_id3153120\n"
"help.text"
msgid "The operator = will not be displayed in the query fields. If you enter a value without any operator, the = operator is automatically assumed."
-msgstr ""
+msgstr "El operador = no se mostrará en los campos de la consulta. Si introduce un valor sin algún operador, se da por supuesto el operador =."
#. mWwUE
#: 02010100.xhp
@@ -1696,7 +1696,7 @@ msgctxt ""
"par_id3145635\n"
"help.text"
msgid "... the content of the field does not correspond to the specified expression."
-msgstr ""
+msgstr "… el contenido del campo no se corresponde con la expresión especificada."
#. dtjkU
#: 02010100.xhp
@@ -1705,7 +1705,7 @@ msgctxt ""
"par_id3146815\n"
"help.text"
msgid "greater than"
-msgstr ""
+msgstr "mayor que"
#. gCWug
#: 02010100.xhp
@@ -1714,7 +1714,7 @@ msgctxt ""
"par_id3149150\n"
"help.text"
msgid "... the content of the field is greater than the specified expression."
-msgstr ""
+msgstr "… el contenido del campo es mayor que la expresión especificada."
#. QkAKk
#: 02010100.xhp
@@ -1723,7 +1723,7 @@ msgctxt ""
"par_id3147379\n"
"help.text"
msgid "less than"
-msgstr ""
+msgstr "menor que"
#. xxPdk
#: 02010100.xhp
@@ -1732,7 +1732,7 @@ msgctxt ""
"par_id3150375\n"
"help.text"
msgid "... the content of the field is less than the specified expression."
-msgstr ""
+msgstr "… el contenido del campo es menor que la expresión especificada."
#. 4aJjX
#: 02010100.xhp
@@ -1741,7 +1741,7 @@ msgctxt ""
"par_id3150636\n"
"help.text"
msgid "greater than or equal to"
-msgstr ""
+msgstr "mayor que o igual a"
#. 2rwQm
#: 02010100.xhp
@@ -1750,7 +1750,7 @@ msgctxt ""
"par_id3154584\n"
"help.text"
msgid "... the content of the field is greater than or equal to the specified expression."
-msgstr ""
+msgstr "… el contenido del campo es mayor que o igual a la expresión especificada."
#. ADRZk
#: 02010100.xhp
@@ -1759,7 +1759,7 @@ msgctxt ""
"par_id3154052\n"
"help.text"
msgid "less than or equal to"
-msgstr ""
+msgstr "menor que o igual a"
#. 9KtmZ
#: 02010100.xhp
@@ -1768,7 +1768,7 @@ msgctxt ""
"par_id3157902\n"
"help.text"
msgid "... the content of the field is less than or equal to the specified expression."
-msgstr ""
+msgstr "… el contenido del campo es menor que o igual a la expresión especificada."
#. DBXG9
#: 02010100.xhp
@@ -1777,7 +1777,7 @@ msgctxt ""
"par_id3154630\n"
"help.text"
msgid "$[officename] command"
-msgstr ""
+msgstr "Orden de $[officename]"
#. Yo7MG
#: 02010100.xhp
@@ -1786,7 +1786,7 @@ msgctxt ""
"par_id3150484\n"
"help.text"
msgid "SQL command"
-msgstr ""
+msgstr "Orden de SQL"
#. pJay6
#: 02010100.xhp
@@ -1795,7 +1795,7 @@ msgctxt ""
"par_id3154158\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significado"
#. qmaX5
#: 02010100.xhp
@@ -1804,7 +1804,7 @@ msgctxt ""
"par_id3149433\n"
"help.text"
msgid "Condition is satisfied if..."
-msgstr ""
+msgstr "La condición se cumple si…"
#. do6XQ
#: 02010100.xhp
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_id3154744\n"
"help.text"
msgid "... the field contains no data. For Yes/No fields with three possible states, this command automatically queries the undetermined state (neither Yes nor No)."
-msgstr ""
+msgstr "… el campo no contiene ningún dato. En los campos sí/no con tres estados posibles, esta orden automáticamente efectúa una consulta sobre el estado indeterminado (ni Sí ni No)."
#. 7Rfbd
#: 02010100.xhp
@@ -1840,7 +1840,7 @@ msgctxt ""
"par_id3145304\n"
"help.text"
msgid "... the field is not empty, i.e it contains data."
-msgstr ""
+msgstr "… el campo no está vacío, es decir, que contiene datos."
#. GGKUH
#: 02010100.xhp
@@ -1849,7 +1849,7 @@ msgctxt ""
"par_id3153891\n"
"help.text"
msgid "placeholder (*) for any number of characters"
-msgstr ""
+msgstr "sustitutorio (*) para un número indeterminado de caracteres"
#. gbEWB
#: 02010100.xhp
@@ -1858,7 +1858,7 @@ msgctxt ""
"par_id3148887\n"
"help.text"
msgid "placeholder (?) for exactly one character"
-msgstr ""
+msgstr "sustitutorio (?) para exactamente un carácter"
#. tBQfA
#: 02010100.xhp
@@ -1867,7 +1867,7 @@ msgctxt ""
"bm_id3157985\n"
"help.text"
msgid "<bookmark_value>placeholders; in SQL queries</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sustitutorios; en consultas SQL</bookmark_value>"
#. agxhB
#: 02010100.xhp
@@ -1876,7 +1876,7 @@ msgctxt ""
"par_id3157985\n"
"help.text"
msgid "placeholder (%) for any number of characters"
-msgstr ""
+msgstr "sustitutorio (%) para un número indeterminado de caracteres"
#. EE9ii
#: 02010100.xhp
@@ -1885,7 +1885,7 @@ msgctxt ""
"par_id3147422\n"
"help.text"
msgid "Placeholder (_) for exactly one character"
-msgstr ""
+msgstr "Sustitutorio (_) para exactamente un carácter"
#. za5g2
#: 02010100.xhp
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_id3154845\n"
"help.text"
msgid "is an element of"
-msgstr ""
+msgstr "es un elemento de"
#. 2Y3zW
#: 02010100.xhp
diff --git a/source/gug/helpcontent2/source/text/sdraw.po b/source/gug/helpcontent2/source/text/sdraw.po
index 8343962e315..53e694d5eed 100644
--- a/source/gug/helpcontent2/source/text/sdraw.po
+++ b/source/gug/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-09-04 05:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564682198.000000\n"
#. dHbww
@@ -158,7 +158,7 @@ msgctxt ""
"par_idN105B2\n"
"help.text"
msgid "Master"
-msgstr ""
+msgstr "Patrón"
#. eSnQZ
#: main0103.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"hd_id102720151746522815\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Comentarios"
#. XjZkS
#: main0103.xhp
diff --git a/source/gug/helpcontent2/source/text/sdraw/00.po b/source/gug/helpcontent2/source/text/sdraw/00.po
index 884c73050b5..9860de6108a 100644
--- a/source/gug/helpcontent2/source/text/sdraw/00.po
+++ b/source/gug/helpcontent2/source/text/sdraw/00.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2019-11-05 12:08+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Spanish <https://vm137.documentfoundation.org/projects/libo_help-master/textsdraw00/es/>\n"
+"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw00/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561322983.000000\n"
#. EDSDr
@@ -86,7 +86,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <menuitem>Page - New Page</menuitem>"
-msgstr ""
+msgstr "Vaya a <menuitem>Página ▸ Página nueva</menuitem>"
#. EpBTa
#: page_menu.xhp
diff --git a/source/gug/helpcontent2/source/text/sdraw/01.po b/source/gug/helpcontent2/source/text/sdraw/01.po
index 43306d89be5..536ca1f7d21 100644
--- a/source/gug/helpcontent2/source/text/sdraw/01.po
+++ b/source/gug/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561323156.000000\n"
#. ybhKD
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Configura la orientación de la página, los márgenes, el fondo y otras opciones de maquetación.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Para modificar el fondo de todas las páginas en el archivo activo, seleccione un fondo, pulse en <emph>Aceptar</emph> y, a continuación, seleccione <emph>Sí</emph> en el cuadro de diálogo <emph>Configuración de página</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/00.po b/source/gug/helpcontent2/source/text/shared/00.po
index 0b37382a3ef..0370a23bf6a 100644
--- a/source/gug/helpcontent2/source/text/shared/00.po
+++ b/source/gug/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-03 11:58+0000\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561043947.000000\n"
#. 3B8ZN
@@ -4397,7 +4397,7 @@ msgctxt ""
"par_id3154068\n"
"help.text"
msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. The use of indentations and line breaks can be activated in the <link href=\"text/shared/optionen/expertconfig.xhp\"><emph>Expert configuration</emph></link> by setting the property <emph>/org.openoffice.Office.Common/Save/Document PrettyPrinting</emph> to <emph>true</emph>."
-msgstr ""
+msgstr "De manera predeterminada, <emph>content.xml</emph> se guarda sin elementos de formato tales como la sangría o los saltos de renglón, para minimizar el tiempo que demora el guardado y la apertura del documento. El uso de sangrías y saltos de renglón puede activarse en la <link href=\"text/shared/optionen/expertconfig.xhp\"><emph>Configuración para expertos</emph></link>, definiendo la propiedad <emph>/org.openoffice.Office.Common/Save/Document PrettyPrinting</emph> como <emph>true</emph>."
#. CATsa
#: 00000021.xhp
@@ -4532,7 +4532,7 @@ msgctxt ""
"par_id3154408\n"
"help.text"
msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
-msgstr "<variable id=\"winmanager\">La disponibilidad de esta función depende del Administrador de ventanas X. </variable>"
+msgstr "<variable id=\"winmanager\">La disponibilidad de esta función depende del gestor de ventanas X. </variable>"
#. sHNos
#: 00000099.xhp
@@ -6098,7 +6098,7 @@ msgctxt ""
"par_id3154812\n"
"help.text"
msgid "Choose <menuitem>File - New</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Nuevo</menuitem>."
#. 4rLdL
#: 00000401.xhp
@@ -6116,7 +6116,7 @@ msgctxt ""
"par_id3150127\n"
"help.text"
msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156053\">Icon New</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156053\">Icono Nuevo</alt></image>"
#. ED9Aa
#: 00000401.xhp
@@ -7025,7 +7025,7 @@ msgctxt ""
"par_idN113AB\n"
"help.text"
msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id4044007\">Icon Email Document</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id4044007\">Icono Enviar documento por correo</alt></image>"
#. iYxXg
#: 00000401.xhp
@@ -7034,7 +7034,7 @@ msgctxt ""
"par_idN113C8\n"
"help.text"
msgid "Email Document"
-msgstr ""
+msgstr "Enviar documento por correo"
#. 6wXER
#: 00000401.xhp
@@ -7043,7 +7043,7 @@ msgctxt ""
"par_id3145269\n"
"help.text"
msgid "<variable id=\"export\">Choose <menuitem>File - Export</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"export\">Vaya a <menuitem>Archivo ▸ Exportar</menuitem>.</variable>"
#. uGwBS
#: 00000401.xhp
@@ -7052,7 +7052,7 @@ msgctxt ""
"par_id621525017637963\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as EPUB</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Exportar a ▸ Exportar a EPUB</menuitem>."
#. eA3gr
#: 00000401.xhp
@@ -7061,7 +7061,7 @@ msgctxt ""
"par_id121525017890767\n"
"help.text"
msgid "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id51525017890767\"> Icon Export as EPUB</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id51525017890767\"> Icono Exportar a EPUB</alt></image>"
#. tGZDr
#: 00000401.xhp
@@ -7079,7 +7079,7 @@ msgctxt ""
"par_id3163421\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - Digital Signatures</menuitem> tab."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Exportar a ▸ Exportar a PDF ▸</menuitem> pestaña <menuitem>Firmas digitales</menuitem>."
#. MgPsT
#: 00000401.xhp
@@ -7124,7 +7124,7 @@ msgctxt ""
"par_id541574090661437\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF - User Interface</menuitem> tab."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Exportar a ▸ Exportar a PDF ▸</menuitem> pestaña <menuitem>Interfaz de usuario</menuitem>."
#. B8yCN
#: 00000401.xhp
@@ -7133,7 +7133,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <menuitem>File - Export As - Export as PDF</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Exportar a ▸ Exportar a PDF</menuitem>."
#. JCWGU
#: 00000401.xhp
@@ -7160,7 +7160,7 @@ msgctxt ""
"par_id3145410\n"
"help.text"
msgid "Choose <menuitem>File - Send - Email as PDF</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Enviar ▸ Por correo como PDF</menuitem>."
#. kiHmE
#: 00000401.xhp
@@ -7169,7 +7169,7 @@ msgctxt ""
"par_id3159160\n"
"help.text"
msgid "<variable id=\"glo\">Choose <menuitem>File - Send - Create Master Document</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"glo\">Vaya a <menuitem>Archivo ▸ Enviar ▸ Crear patrón de documento</menuitem>.</variable>"
#. 6yCud
#: 00000401.xhp
@@ -7178,7 +7178,7 @@ msgctxt ""
"par_id3149951\n"
"help.text"
msgid "Choose <menuitem>File - Print</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Imprimir</menuitem>"
#. mXCMo
#: 00000401.xhp
@@ -7367,7 +7367,7 @@ msgctxt ""
"par_id3156183\n"
"help.text"
msgid "Choose <menuitem>View - Toolbars</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Ver ▸ Barras de herramientas</menuitem>."
#. aAbgp
#: 00000403.xhp
@@ -7457,7 +7457,7 @@ msgctxt ""
"par_id3159269\n"
"help.text"
msgid "Choose <menuitem>View - Full Screen</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Ver ▸ Pantalla completa</menuitem>."
#. cDF5C
#: 00000403.xhp
@@ -7475,7 +7475,7 @@ msgctxt ""
"par_id3153257\n"
"help.text"
msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148473\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148473\">Icono</alt></image>"
#. Zez4K
#: 00000403.xhp
@@ -7520,7 +7520,7 @@ msgctxt ""
"par_id3153778\n"
"help.text"
msgid "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153524\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153524\">Icono</alt></image>"
#. dvWwd
#: 00000403.xhp
@@ -14549,7 +14549,7 @@ msgctxt ""
"par_id31562971\n"
"help.text"
msgid "Choose <menuitem>Edit - Find</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Editar ▸ Buscar</menuitem>."
#. cPD4u
#: edit_menu.xhp
@@ -14567,7 +14567,7 @@ msgctxt ""
"par_id3156297\n"
"help.text"
msgid "Choose <menuitem>Edit - Find & Replace</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Editar ▸ Buscar y reemplazar</menuitem>."
#. 4pWKe
#: edit_menu.xhp
@@ -14594,7 +14594,7 @@ msgctxt ""
"par_id3150020\n"
"help.text"
msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149121\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149121\">Icono</alt></image>"
#. jRcHP
#: edit_menu.xhp
@@ -14612,7 +14612,7 @@ msgctxt ""
"par_id3156357\n"
"help.text"
msgid "<variable id=\"suchenattribute\">Choose <menuitem>Edit - Find & Replace - Attributes</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenattribute\">Vaya a <menuitem>Editar ▸ Buscar y reemplazar ▸ Atributos</menuitem>.</variable>"
#. DCnDy
#: edit_menu.xhp
@@ -14621,7 +14621,7 @@ msgctxt ""
"par_id3153840\n"
"help.text"
msgid "<variable id=\"suchenformat\">Choose <menuitem>Edit - Find & Replace - Format</menuitem> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenformat\">Vaya a <menuitem>Editar ▸ Buscar y reemplazar ▸</menuitem> botón <menuitem>Formato</menuitem>.</variable>"
#. 6929F
#: edit_menu.xhp
@@ -14648,7 +14648,7 @@ msgctxt ""
"par_id551602176159965\n"
"help.text"
msgid "<image id=\"img_id314249\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id314249\">Search Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id314249\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id314249\">Icono Buscar</alt></image>"
#. 8FD2j
#: edit_menu.xhp
@@ -14675,7 +14675,7 @@ msgctxt ""
"par_id3152960\n"
"help.text"
msgid "Choose <menuitem>View - Navigator</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Ver ▸ Navegador</menuitem>."
#. mXj7f
#: edit_menu.xhp
@@ -14693,7 +14693,7 @@ msgctxt ""
"par_id3159183\n"
"help.text"
msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154508\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154508\">Icono</alt></image>"
#. DFjLG
#: edit_menu.xhp
@@ -14711,7 +14711,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "<variable id=\"litdat\">Choose <menuitem>Tools - Bibliography Database</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"litdat\">Vaya a <menuitem>Herramientas ▸ Base de datos bibliográfica</menuitem>.</variable>"
#. moWAi
#: edit_menu.xhp
@@ -14720,7 +14720,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "<variable id=\"link\">Choose <menuitem>Edit - Links to External Files</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"link\">Vaya a <menuitem>Editar ▸ Enlaces a archivos externos</menuitem>.</variable>"
#. ARRG5
#: edit_menu.xhp
@@ -14738,7 +14738,7 @@ msgctxt ""
"par_id3148927\n"
"help.text"
msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
-msgstr ""
+msgstr "Seleccione un marco y, enseguida, elija <menuitem>Editar ▸ Objeto ▸ Propiedades</menuitem>."
#. cDcix
#: edit_menu.xhp
@@ -14747,7 +14747,7 @@ msgctxt ""
"par_id3156315\n"
"help.text"
msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
-msgstr ""
+msgstr "Abra el menú contextual del marco seleccionado y elija <menuitem>Propiedades</menuitem>."
#. jmnro
#: edit_menu.xhp
@@ -14756,7 +14756,7 @@ msgctxt ""
"par_id3149259\n"
"help.text"
msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit1\">Vaya a <menuitem>Editar ▸ Objeto</menuitem>.</variable>"
#. XAqNW
#: edit_menu.xhp
@@ -14765,7 +14765,7 @@ msgctxt ""
"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 ""
+msgstr "<variable id=\"edit2\">Vaya a <menuitem>Editar ▸ Objeto ▸ Editar</menuitem>, también en el menú contextual del objeto seleccionado.</variable>"
#. sA6YF
#: edit_menu.xhp
@@ -14774,7 +14774,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit3\">Vaya a <menuitem>Editar ▸ Objeto ▸ Abrir</menuitem>.</variable>"
#. kQifg
#: edit_menu.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/01.po b/source/gug/helpcontent2/source/text/shared/01.po
index 5da7d52d952..40b4c4ad0f7 100644
--- a/source/gug/helpcontent2/source/text/shared/01.po
+++ b/source/gug/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-13 12:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/es/>\n"
"Language: es\n"
@@ -2552,7 +2552,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "The <emph>Close</emph> command closes all open windows of the current document."
-msgstr ""
+msgstr "La orden <emph>Cerrar</emph> cierra todas las ventanas abiertas del documento actual."
#. jSMdE
#: 01050000.xhp
@@ -2561,7 +2561,7 @@ msgctxt ""
"par_id3148620\n"
"help.text"
msgid "If you have made changes to the current document, you are prompted if you want to <link href=\"text/shared/01/01060000.xhp\" name=\"save\"><emph>save</emph></link> your changes."
-msgstr ""
+msgstr "Si ha efectuado cambios en el documento actual, se le solicitará <link href=\"text/shared/01/01060000.xhp\" name=\"guardar\"><emph>guardarlos</emph></link>."
#. KoyrB
#: 01050000.xhp
@@ -7999,14 +7999,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "El carácter que representa un código hexadecimal Unicode de ocho dígitos (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "En algunos tipos de letra de símbolos, el código Unicode necesario para producir determinados símbolos puede variar. Puede ver los códigos Unicode mediante la orden <menuitem>Insertar ▸ Carácter especial</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
@@ -8258,7 +8258,7 @@ msgctxt ""
"par_id771559577837101\n"
"help.text"
msgid "The first character of a paragraph."
-msgstr ""
+msgstr "El primer carácter de un párrafo."
#. DwGtk
#: 02100001.xhp
@@ -9383,7 +9383,7 @@ msgctxt ""
"par_id3145313\n"
"help.text"
msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icono</alt></image>"
#. 3Lq2G
#: 02110000.xhp
@@ -9419,7 +9419,7 @@ msgctxt ""
"par_id3153716\n"
"help.text"
msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icono</alt></image>"
#. nRB3E
#: 02110000.xhp
@@ -9455,7 +9455,7 @@ msgctxt ""
"par_id3159166\n"
"help.text"
msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icono</alt></image>"
#. F4J5u
#: 02110000.xhp
@@ -9590,7 +9590,7 @@ msgctxt ""
"par_id3153951\n"
"help.text"
msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icono</alt></image>"
#. ijR7M
#: 02110000.xhp
@@ -9698,7 +9698,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icono</alt></image>"
#. ADEyJ
#: 02110000.xhp
@@ -9734,7 +9734,7 @@ msgctxt ""
"par_id3156178\n"
"help.text"
msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icono</alt></image>"
#. GqEUL
#: 02110000.xhp
@@ -9770,7 +9770,7 @@ msgctxt ""
"par_id3154790\n"
"help.text"
msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icono</alt></image>"
#. DLEGF
#: 02110000.xhp
@@ -9806,7 +9806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Links to External Files"
-msgstr ""
+msgstr "Editar enlaces a archivos externos"
#. YrBSL
#: 02180000.xhp
@@ -9824,7 +9824,7 @@ msgctxt ""
"hd_id3150279\n"
"help.text"
msgid "Edit Links to External Files"
-msgstr ""
+msgstr "Editar enlaces a archivos externos"
#. hN2Am
#: 02180000.xhp
@@ -27635,7 +27635,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pattern"
-msgstr ""
+msgstr "Motivo"
#. 5FVqC
#: 05210800.xhp
@@ -27644,7 +27644,7 @@ msgctxt ""
"bm_id431592861834899\n"
"help.text"
msgid "<bookmark_value>pattern;area</bookmark_value><bookmark_value>pattern;background</bookmark_value><bookmark_value>background;pattern</bookmark_value><bookmark_value>background;area</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>motivo;área</bookmark_value><bookmark_value>motivo;fondo</bookmark_value><bookmark_value>fondo;motivo</bookmark_value><bookmark_value>fondo;área</bookmark_value>"
#. S8BBE
#: 05210800.xhp
@@ -27653,7 +27653,7 @@ msgctxt ""
"hd_id801592861657875\n"
"help.text"
msgid "<link href=\"text/shared/01/05210800.xhp\" name=\"pattern\">Pattern</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210800.xhp\" name=\"motivo\">Motivo</link>"
#. qLwKU
#: 05210800.xhp
@@ -27662,7 +27662,7 @@ msgctxt ""
"par_id3153626\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Fills the object with a simple two color pattern selected on this page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Rellena el objeto con el motivo bicolor simple que seleccione en esta pestaña.</ahelp>"
#. p5uGC
#: 05210800.xhp
@@ -27671,7 +27671,7 @@ msgctxt ""
"hd_id3159147\n"
"help.text"
msgid "Pattern"
-msgstr ""
+msgstr "Motivo"
#. KW3Ah
#: 05210800.xhp
@@ -27680,7 +27680,7 @@ msgctxt ""
"par_id3149955\n"
"help.text"
msgid "Lists the available patterns. You can also modify or create your own pattern."
-msgstr ""
+msgstr "Enumera los motivos disponibles. También es posible modificarlos y crear nuevos."
#. rpQaV
#: 05210800.xhp
@@ -27689,7 +27689,7 @@ msgctxt ""
"par_id161584528499683\n"
"help.text"
msgid "To rename a pattern, select the pattern, right-click and choose <menuitem>Rename</menuitem>. To delete a pattern, select the pattern, right-click and choose <menuitem>Delete</menuitem>."
-msgstr ""
+msgstr "Para cambiar el nombre de un motivo, selecciónelo, pulse con el botón secundario del ratón y elija <menuitem>Cambiar nombre</menuitem>. Para eliminar un motivo, selecciónelo, pulse con el botón secundario del ratón y elija <menuitem>Eliminar</menuitem>."
#. VrE5t
#: 05210800.xhp
@@ -27707,7 +27707,7 @@ msgctxt ""
"par_id3148924\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_ADD\">Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/patterntabpage/BTN_ADD\">Permite añadir un motivo personalizado a la lista actual. Especifique las propiedades de su motivo y, a continuación, pulse en este botón.</ahelp>"
#. 5waZ4
#: 05210800.xhp
@@ -27725,7 +27725,7 @@ msgctxt ""
"par_id3156023\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_MODIFY\">Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/patterntabpage/BTN_MODIFY\">Aplica las propiedades actuales al motivo seleccionado. Si lo desea, puede guardar el motivo con un nombre distinto.</ahelp>"
#. WCFwi
#: 05210800.xhp
@@ -27752,7 +27752,7 @@ msgctxt ""
"hd_id3147834\n"
"help.text"
msgid "Pattern Editor"
-msgstr ""
+msgstr "Editor de motivos"
#. rFfJm
#: 05210800.xhp
@@ -27806,7 +27806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Text (Formatting)"
-msgstr "Texto (Formato)"
+msgstr "Texto (formato)"
#. rCSp7
#: 05220000.xhp
@@ -38318,7 +38318,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Position (List Styles)"
-msgstr ""
+msgstr "Posición (estilos de lista)"
#. YCPm7
#: 06050600.xhp
@@ -38363,7 +38363,7 @@ msgctxt ""
"hd_id3149261\n"
"help.text"
msgid "Position and Spacing"
-msgstr ""
+msgstr "Posición y espaciado"
#. AGzEA
#: 06050600.xhp
@@ -39839,7 +39839,7 @@ msgctxt ""
"hd_id551514302487751\n"
"help.text"
msgid "Available Commands"
-msgstr ""
+msgstr "Órdenes disponibles"
#. B7bPB
#: 06140100.xhp
@@ -39974,7 +39974,7 @@ msgctxt ""
"hd_id331604401016431\n"
"help.text"
msgid "Assigned Commands"
-msgstr ""
+msgstr "Órdenes asignadas"
#. oBFeq
#: 06140100.xhp
@@ -40055,7 +40055,7 @@ msgctxt ""
"hd_id631604851974598\n"
"help.text"
msgid "Customize"
-msgstr ""
+msgstr "Personalizar"
#. G2yK8
#: 06140100.xhp
@@ -40307,7 +40307,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">Lists the shortcut keys and the associated commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">Enumera los atajos de teclado y las órdenes asociadas.</ahelp>"
#. GWDEX
#: 06140200.xhp
@@ -40361,7 +40361,7 @@ msgctxt ""
"par_id3159148\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/function\">Lists functions that can be assigned to a shortcut key.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/function\">Enumera las funciones que pueden asignarse a un atajo de teclado.</ahelp>"
#. Gfzcs
#: 06140200.xhp
@@ -40514,7 +40514,7 @@ msgctxt ""
"par_id261603929349350\n"
"help.text"
msgid "<link href=\"text/shared/main0400.xhp\" name=\"frequentkeys\">Shortcut Keys in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/main0400.xhp\" name=\"frequentkeys\">Atajos de teclado en %PRODUCTNAME</link>"
#. fybrb
#: 06140300.xhp
@@ -40712,7 +40712,7 @@ msgctxt ""
"hd_id381604852428742\n"
"help.text"
msgid "Customize"
-msgstr ""
+msgstr "Personalizar"
#. ASEww
#: 06140300.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/02.po b/source/gug/helpcontent2/source/text/shared/02.po
index 17a714571a9..f1f66b023dd 100644
--- a/source/gug/helpcontent2/source/text/shared/02.po
+++ b/source/gug/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: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-01 11:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564411145.000000\n"
#. Edm6o
@@ -16727,7 +16727,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "<image id=\"img_id3153750\" src=\"media/helpimg/linleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153750\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153750\" src=\"media/helpimg/linleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153750\">Icono</alt></image>"
#. JJcBs
#: 13020000.xhp
@@ -16745,7 +16745,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<image id=\"img_id3145071\" src=\"media/helpimg/linright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145071\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145071\" src=\"media/helpimg/linright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145071\">Icono</alt></image>"
#. Wr4CA
#: 13020000.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/explorer/database.po b/source/gug/helpcontent2/source/text/shared/explorer/database.po
index c5305127f5d..f70797ddeff 100644
--- a/source/gug/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/gug/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/es/>\n"
"Language: es\n"
@@ -7097,7 +7097,7 @@ msgctxt ""
"par_idN105F8\n"
"help.text"
msgid "Email Document"
-msgstr ""
+msgstr "Enviar documento por correo"
#. Qxg2W
#: menufile.xhp
@@ -7106,7 +7106,7 @@ msgctxt ""
"par_idN105FC\n"
"help.text"
msgid "Opens the default email application to send a new email. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body."
-msgstr ""
+msgstr "Abre la aplicación de correo electrónico predeterminada para enviar un mensaje nuevo. El archivo de base de datos actual se anexará al mensaje. Podrá introducir el asunto, los destinatarios y el cuerpo del mensaje."
#. 9WihT
#: menufile.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/guide.po b/source/gug/helpcontent2/source/text/shared/guide.po
index d853340e555..d5678e99e16 100644
--- a/source/gug/helpcontent2/source/text/shared/guide.po
+++ b/source/gug/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/es/>\n"
"Language: es\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Trabajar con <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Documento HTML"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Documento de texto de OpenOffice.org 1.0"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "Documento de texto de OpenOffice.org 1.0"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento de texto de OpenOffice.org 1.0"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "Documento de T602"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Texto"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Texto"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Herramienta de informe de errores"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Herramienta de informe de errores</bookmark_value> <bookmark_value>informes;informes de errores</bookmark_value> <bookmark_value>informes de cierres inesperados</bookmark_value> <bookmark_value>activar;Herramienta de informe de errores</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Programa de informe de errores\">Programa de informe de errores</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "La herramienta de informe de errores se inicia automáticamente cuando se bloquea un programa."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "El programa de informe de errores reúne toda la información necesaria para ayudar a los desarrolladores de programas a mejorar el código, a fin de que en las versiones posteriores este error probablemente se pueda evitar. Ayúdenos a mejorar el software y envíenos un informe del error generado."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Iniciar el programa de informe de errores"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "La herramienta de informe de errores se inicia automáticamente en casi todos los bloqueos de programa."
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. d4BEq
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3154046\n"
+"hd_id3159399\n"
"help.text"
-msgid "Completing the Report"
-msgstr "Completar el informe"
+msgid "Sending the Crash Report"
+msgstr ""
-#. vq6k8
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"par_id711605615413339\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "En el diálogo de la herramienta de informe de errores, puede escribir información adicional para ayudar los desarrolladores a encontrar el error. Por ejemplo, indique también si el error sólo aparece tras un cambio en el hardware o el software, o si se ha hecho clic en un botón."
-
-#. wuqDi
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3159399\n"
-"help.text"
-msgid "Sending the Error Report"
-msgstr "Enviar el informe del error"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "El programa de informe de errores usa el protocolo HTTP PUT/SOAP para enviar los datos del informe. Opcionalmente puede escribir una descripción que nos ayude a identificar el contexto de la caída del programa. Pulse después el botón <emph>Enviar</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "No obtendrá una respuesta a su informe de error. Si necesita asistencia, visite el <link href=\"text/shared/main0108.xhp\">foro de asistencia</link> en Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "¿Qué datos se envían?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "El informe de error consta de varios archivos. El principal contiene información sobre el tipo de error, el nombre del sistema operativo y la versión, el uso de la memoria y la descripción que introdujo. Puede pulsar el botón <emph>Mostrar informe</emph> en el diálogo principal del programa de informe de errores para ver qué se enviará en el archivo principal."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Además, el contenido relevante de la memoria y los rastros de las pilas se reúnen mediante algunas herramientas estándar del sistema (\"dbhhelp.dll\" en los sistemas Windows, \"pstack\" en los sistemas UNIX). También se enviará esta información."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Recuerde que debe crear un trabajo de impresión separado para cada fax; de lo contrario, el primer receptor recibirá todos los faxes. En el diálogo <emph>Herramientas - Combinar correspondencia</emph>, seleccione la opción <emph>Impresora</emph> y, a continuación, la casilla de verificación <emph>Crear tareas individuales de impresión</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Cambiar una plantilla predeterminada"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>modificar, ver cambios</bookmark_value><bookmark_value>cambiar, ver también editar y reemplazar</bookmark_value><bookmark_value>plantillas predeterminadas; cambiar</bookmark_value><bookmark_value>predeterminados;plantillas de documento</bookmark_value><bookmark_value>actualizar; plantillas</bookmark_value><bookmark_value>editar;plantillas</bookmark_value><bookmark_value>plantillas;editar y guardar</bookmark_value><bookmark_value>guardar;plantillas</bookmark_value><bookmark_value>restablecer;plantillas</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Modificar una plantilla predeterminada\">Modificar una plantilla predeterminada</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Al abrir un documento nuevo desde el menú <emph>Archivo</emph> - <emph>Nuevo</emph>, aparece un documento vacío, basado en la plantilla predeterminada de $[officename], éste podrá ser un documento de texto o una base de datos (ambos nuevos). El documento se puede editar, modificar, o reemplazar por uno existente, de forma que cada vez que abra un documento nuevo éste se abrirá con los atributos, formato e incluso contenido otorgados."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modificar una plantilla predeterminada"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "En primer lugar, abra una plantilla de $[officename] y modifíquela, o abra un documento nuevo y haga los cambios pertinentes para crear la plantilla que necesita."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Naturalmente podrá definir una plantilla para cada módulo de $[officename]. A continuación describimos cómo proceder con los documentos de texto."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
+"help.text"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Para guardar el documento, diríjase a <emph>Archivo ▸ Plantillas ▸ Guardar como plantilla</emph> y colóquelo en la categoría <emph>Mis plantillas</emph>."
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Elija <emph>Archivo ▸ Nuevo ▸ Plantilla</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Pulse dos veces en el elemento <emph>Mis plantillas</emph> de la lista. Se mostrarán las plantillas del usuario en la carpeta especificada en <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME ▸ Rutas</emph>. Seleccione la plantilla que acaba de guardar."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Elija <emph>Predeterminar</emph>. La próxima vez que abra un documento de texto nuevo, este se basará en la plantilla predeterminada nueva."
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
-#. GuEWL
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Uso de plantillas personalizadas"
+msgid "Creating a Custom Template"
+msgstr ""
-#. Quf5G
+#. eUBit
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id231605475396242\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Existen varias maneras de facilitar el trabajo mediante el uso de plantillas personalizadas."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. S8XFP
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Plantillas en la carpeta de plantillas"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Es posible guardar una plantilla nueva si va a <emph>Archivo ▸ Plantillas ▸ Guardar como plantilla</emph> o si selecciona algún tipo de archivo de plantilla en el cuadro de diálogo Guardar como. Guarde la plantilla en la carpeta de usuario especificada en <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME ▸ Rutas</emph> para que la plantilla aparezca en el cuadro de diálogo <emph>Archivo ▸ Nuevo ▸ Plantillas</emph>."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Para abrir y editar una plantilla, diríjase a <emph>Archivo ▸ Nuevo ▸ Plantillas</emph>, seleccione la plantilla y pulse en el botón <emph>Editar</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -22766,7 +22613,7 @@ msgctxt ""
"par_id491571706970241\n"
"help.text"
msgid "Parameter"
-msgstr ""
+msgstr "Parámetro"
#. fg9oE
#: start_parameters.xhp
@@ -22775,7 +22622,7 @@ msgctxt ""
"par_id11571706970242\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significado"
#. iAEUa
#: start_parameters.xhp
@@ -22784,7 +22631,7 @@ msgctxt ""
"par_id11571706970245\n"
"help.text"
msgid "An enhanced debugger."
-msgstr ""
+msgstr "Un depurador mejorado."
#. VQCLF
#: start_parameters.xhp
@@ -24253,14 +24100,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Consulte <link href=\"text/swriter/guide/templates_styles.xhp\">Plantillas y estilos</link> para obtener información relacionada."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Consulte <link href=\"text/swriter/guide/template_create.xhp\">Crear una plantilla de documento</link> para obtener información relacionada."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/optionen.po b/source/gug/helpcontent2/source/text/shared/optionen.po
index 829427907f7..b946a781481 100644
--- a/source/gug/helpcontent2/source/text/shared/optionen.po
+++ b/source/gug/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-20 14:49+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561564436.000000\n"
#. PzSYs
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "Ver"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>vistas;valores predeterminados</bookmark_value><bookmark_value>valores predeterminados;vistas</bookmark_value><bookmark_value>configuración;vistas</bookmark_value><bookmark_value>iconos;tamaños</bookmark_value><bookmark_value>iconos;estilos</bookmark_value><bookmark_value>WYSIWYG en listas de tipos de letra</bookmark_value><bookmark_value>previsualizaciones;listas de tipos de letra</bookmark_value><bookmark_value>listas de tipos de letra</bookmark_value><bookmark_value>cuadro de nombre de tipo de letra</bookmark_value><bookmark_value>ratón;posicionamiento</bookmark_value><bookmark_value>portapapeles;portapapeles de selección</bookmark_value><bookmark_value>portapapeles de selección</bookmark_value><bookmark_value>OpenGL;configuración</bookmark_value><bookmark_value>OpenGL;lista negra</bookmark_value><bookmark_value>OpenGL;lista blanca</bookmark_value><bookmark_value>OpenGL;salida de gráficos</bookmark_value><bookmark_value>omnibarra;tamaño de iconos</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Establece opciones de visualización."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Interfaz de usuario"
+msgid "Icon style"
+msgstr "Estilo de iconos"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Tamaño de iconos de barras de herramientas"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Especifica el estilo de iconos de las barras de herramientas y los cuadros de diálogo.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Especifica el tamaño de visualización de los iconos de la barra de herramientas.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> La opción <emph>Automático</emph> utiliza la configuración del tamaño del tipo de letra del sistema operativo para los menús.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Tamaño de iconos de barra lateral"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Especifica el tamaño de los iconos de la barra lateral.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Tamaño de iconos de omnibarra"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Especifica el tamaño de los iconos de la <link href=\"text/shared/01/notebook_bar.xhp\">omnibarra</link>.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Estilo de iconos"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Especifica el estilo de iconos de las barras de herramientas y los cuadros de diálogo.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Especifica el tamaño de los iconos de la barra lateral.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Suavizar tipos de letra de pantalla"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Seleccione esta opción para suavizar el aspecto en pantalla del texto.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Especifique el tamaño de tipo de letra más pequeño para aplicar el antidentado.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Muestra iconos junto a los elementos de menú correspondientes. Seleccione entre «Automático», «Ocultar» y «Mostrar». «Automático» muestra los iconos según la configuración del sistema y los temas.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Ratón"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Posición del ratón"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Especifica si el puntero del ratón se debe situar en los cuadros de diálogo que se acaban de abrir y cómo lo debe hacer.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Botón central del ratón"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "El contenido del portapapeles es la última selección efectuada."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Salida de gráficos"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Oprima Mayús + Ctrl + R para restaurar o actualizar la vista del documento actual.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Oprima Mayús + Ctrl + R para restaurar o actualizar la vista del documento actual.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3785,70 +3803,61 @@ msgctxt ""
"par_id1208200812004444\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Cuando el hardware lo admita, se puede activar o desactivar el «anti-aliasing» de gráficos. Esta configuración mejora la apariencia de la mayoría de los elementos y reduce el ruido visual.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Cuando el hardware lo admita, se puede activar o desactivar el antidentado visual. Esta configuración mejora la apariencia de la mayoría de los elementos y reduce el ruido visual.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Usar OpenGL en toda la aplicación (al reiniciar)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Utilice la Biblioteca de Gráficos Abierta (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) para representar todos los elementos visuales de la aplicación, como ventanas, menús, barras de herramientas e iconos.</ahelp> OpenGL utiliza el dispositivo de gráficos del equipo para acelerar la representación. Si el dispositivo está incluido en la lista negra (siga leyendo), esta opción no surtirá efecto."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Permite utilizar el motor gráfico de alto rendimiento Skia para representar todos los elementos visuales de la aplicación, incluidas las ventanas, los menús, las barras de herramientas y los iconos.</ahelp> Skia utiliza el dispositivo de gráficos del equipo para acelerar la representación visual."
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Forzar OpenGL aún si está en lista negra (al reiniciar)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Fuerza la utilización de OpenGL incluso si el dispositivo de gráficos está incluido en la lista negra.</ahelp> En los dispositivos añadidos a la lista negra se ha encontrado que producen errores o que producen representaciones de poca calidad."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menú"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Seleccione este control para que Skia no utilice el dispositivo de gráficos del equipo.</ahelp>"
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Iconos en menús"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr "Al momento de la instalación, %PRODUCTNAME selecciona las mejores opciones para configurar el motor gráfico Skia. Normalmente no necesitará modificar la configuración predeterminada si Skia está activado."
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Muestra iconos junto a los elementos de menú correspondientes. Seleccione entre «Automático», «Ocultar» y «Mostrar». «Automático» muestra los iconos según la configuración del sistema y los temas.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr "Si tiene problemas con la representación gráfica en pantalla (por ejemplo, con la apariencia de los iconos de las barras de herramientas o de los objetos de dibujo) y Skia está activado, puede probar a desactivar <emph>Forzar representación por software de Skia</emph> o inhabilitar Skia por completo."
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Muestra los nombres de los tipos de letra que se pueden seleccionar en el tipo de letra correspondiente, por ejemplo, en el cuadro desplegable Tipo de letra de la barra <emph>Formato</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Suavizar tipos de letra de pantalla"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Seleccione esta opción para suavizar el aspecto en pantalla del texto.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr "desde"
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Especifique el tamaño de tipo de letra más pequeño para aplicar el antidentado.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/simpress/00.po b/source/gug/helpcontent2/source/text/simpress/00.po
index c61290fd9dc..2f110b88af6 100644
--- a/source/gug/helpcontent2/source/text/simpress/00.po
+++ b/source/gug/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:43+0100\n"
-"PO-Revision-Date: 2020-09-04 05:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress00/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560857928.000000\n"
#. sqmGT
@@ -1400,7 +1400,7 @@ msgctxt ""
"par_id3155530\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <menuitem>Slide - Slide Properties</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Vaya a <menuitem>Diapositiva ▸ Propiedades de diapositiva</menuitem></variable>"
#. FRMtM
#: slide_menu.xhp
@@ -1445,7 +1445,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <menuitem>Slide - New Slide</menuitem>"
-msgstr ""
+msgstr "Vaya a <menuitem>Diapositiva ▸ Diapositiva nueva</menuitem>"
#. 7tbCN
#: slide_menu.xhp
diff --git a/source/gug/helpcontent2/source/text/simpress/01.po b/source/gug/helpcontent2/source/text/simpress/01.po
index 22aed571f06..b090bef41a8 100644
--- a/source/gug/helpcontent2/source/text/simpress/01.po
+++ b/source/gug/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-30 22:35+0000\n"
+"PO-Revision-Date: 2020-12-03 12:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress01/es/>\n"
"Language: es\n"
@@ -4280,7 +4280,7 @@ msgctxt ""
"par_id3145388\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_LINE_DIST\">Specifies the distance between the dimension line and the baseline (line distance = 0).</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_LINE_DIST\">Especifica la distancia entre la línea de cota y la línea de base (distancia de línea = 0).</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_LINE_DIST\">Especifica la distancia entre la línea de cota y la línea de base (distancia entre líneas = 0).</ahelp>"
#. qvdka
#: 05150000.xhp
diff --git a/source/gug/helpcontent2/source/text/smath/01.po b/source/gug/helpcontent2/source/text/smath/01.po
index 514c287ca62..9b6a8faff9c 100644
--- a/source/gug/helpcontent2/source/text/smath/01.po
+++ b/source/gug/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-09-30 15:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559526082.000000\n"
#. QmNGE
@@ -2507,7 +2507,7 @@ msgctxt ""
"par_idN10132\n"
"help.text"
msgid "<image id=\"img_id3149687\" src=\"media/helpimg/starmath/fu21508.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149687\">Logarithm Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149687\" src=\"media/helpimg/starmath/fu21508.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149687\">Icono Logaritmo</alt></image>"
#. LX2Ke
#: 03090400.xhp
@@ -2534,7 +2534,7 @@ msgctxt ""
"par_id3149483\n"
"help.text"
msgid "<image id=\"img_id3149490\" src=\"media/helpimg/starmath/fu21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149490\">Power Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149490\" src=\"media/helpimg/starmath/fu21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149490\">Icono Potencia</alt></image>"
#. XKMzK
#: 03090400.xhp
@@ -2552,7 +2552,7 @@ msgctxt ""
"par_id3151250\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts x raised to the yth power.</ahelp> You can also type <emph><?>^{<?>}</emph> in the <emph>Commands</emph> window. You can replace the <emph>^</emph> character with <emph>rsup</emph> or <emph>sup</emph>."
-msgstr "<ahelp hid=\".\">Inserta x elevada a la potencia y.</ahelp> También puede escribir <emph><?>^{<?>}</emph> en la ventana de <emph>comandos</emph>.! Puede sustituir el carácter <emph>^</emph> con <emph>rsup</emph> o <emph>sup</emph>."
+msgstr "<ahelp hid=\".\">Inserta x elevada a la potencia y.</ahelp> También puede escribir <emph><?>^{<?>}</emph> en el cuadro <emph>Órdenes</emph>. Puede sustituir el carácter <emph>^</emph> por <emph>rsup</emph> o <emph>sup</emph>."
#. QwxyY
#: 03090400.xhp
@@ -2561,7 +2561,7 @@ msgctxt ""
"par_idN101B1\n"
"help.text"
msgid "<image id=\"img_id3149043\" src=\"media/helpimg/starmath/fu21509.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149043\">Sine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149043\" src=\"media/helpimg/starmath/fu21509.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149043\">Icono Seno</alt></image>"
#. FeedP
#: 03090400.xhp
@@ -2588,7 +2588,7 @@ msgctxt ""
"par_idN101EA\n"
"help.text"
msgid "<image id=\"img_id3147139\" src=\"media/helpimg/starmath/fu21510.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147139\">Cosine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147139\" src=\"media/helpimg/starmath/fu21510.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147139\">Icono Coseno</alt></image>"
#. LRNwp
#: 03090400.xhp
@@ -2615,7 +2615,7 @@ msgctxt ""
"par_idN10223\n"
"help.text"
msgid "<image id=\"img_id3148759\" src=\"media/helpimg/starmath/fu21511.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148759\">Tangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148759\" src=\"media/helpimg/starmath/fu21511.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148759\">Icono Tangente</alt></image>"
#. nBpjo
#: 03090400.xhp
@@ -2642,7 +2642,7 @@ msgctxt ""
"par_idN1025C\n"
"help.text"
msgid "<image id=\"img_id3149536\" src=\"media/helpimg/starmath/fu21512.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149536\">Cotangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149536\" src=\"media/helpimg/starmath/fu21512.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149536\">Icono Cotangente</alt></image>"
#. DsEAG
#: 03090400.xhp
@@ -2696,7 +2696,7 @@ msgctxt ""
"par_idN102CE\n"
"help.text"
msgid "<image id=\"img_id3168610\" src=\"media/helpimg/starmath/fu21503.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3168610\">Square Root Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3168610\" src=\"media/helpimg/starmath/fu21503.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3168610\">Icono Raíz cuadrada</alt></image>"
#. JpriW
#: 03090400.xhp
@@ -2804,7 +2804,7 @@ msgctxt ""
"par_idN103B5\n"
"help.text"
msgid "<image id=\"img_id3154714\" src=\"media/helpimg/starmath/fu21504.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154714\">nth Root Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154714\" src=\"media/helpimg/starmath/fu21504.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154714\">Icono Raíz enésima</alt></image>"
#. o7MGD
#: 03090400.xhp
@@ -3911,7 +3911,7 @@ msgctxt ""
"par_id3150533\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ACUTEX\">Inserts a placeholder with an acute accent.</ahelp> You can also type <emph>acute <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ACUTEX\">Inserta un hueco con un acento agudo.</ahelp> También puede escribir <emph>acute <?></emph> en la ventana de <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ACUTEX\">Inserta un hueco con un acento agudo.</ahelp> También puede escribir <emph>acute <?></emph> en el cuadro <emph>Órdenes</emph>."
#. yHTHb
#: 03090600.xhp
@@ -4640,7 +4640,7 @@ msgctxt ""
"bm_id3153150\n"
"help.text"
msgid "<bookmark_value>formatting;in $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formatting</bookmark_value><bookmark_value>superscripts</bookmark_value><bookmark_value>binomials</bookmark_value><bookmark_value>vertical elements</bookmark_value><bookmark_value>lines; inserting in formulas</bookmark_value><bookmark_value>subscripts</bookmark_value><bookmark_value>stacks</bookmark_value><bookmark_value>vertical arrangement of elements</bookmark_value><bookmark_value>small gaps</bookmark_value><bookmark_value>alignment; left (Math)</bookmark_value><bookmark_value>left-justified alignment (Math)</bookmark_value><bookmark_value>alignment; horizontally centered (Math)</bookmark_value><bookmark_value>centered horizontally; alignment (Math)</bookmark_value><bookmark_value>alignment; right (Math)</bookmark_value><bookmark_value>right-justified alignment in %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; arranging</bookmark_value><bookmark_value>spaces in formulas</bookmark_value><bookmark_value>gaps in formulas</bookmark_value><bookmark_value>inserting; gaps</bookmark_value><bookmark_value>arranging;matrices</bookmark_value><bookmark_value>formulas;aligning</bookmark_value><bookmark_value>aligning formulas</bookmark_value>"
-msgstr "<bookmark_value>formato;en $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formato</bookmark_value><bookmark_value>superíndices</bookmark_value><bookmark_value>binómicas</bookmark_value><bookmark_value>elementos verticales</bookmark_value><bookmark_value>renglones; inserción en fórmulas</bookmark_value><bookmark_value>subíndices</bookmark_value><bookmark_value>pilas</bookmark_value><bookmark_value>disposiciones verticales de elementos</bookmark_value><bookmark_value>separaciones pequeñas</bookmark_value><bookmark_value>alineación; izquierda (Math)</bookmark_value><bookmark_value>alineación justificada a la izquierda (Math)</bookmark_value><bookmark_value>alineación; centrada horizontalmente (Math)</bookmark_value><bookmark_value>centrada horizontalmente; alineación (Math)</bookmark_value><bookmark_value>alineación; derecha (Math)</bookmark_value><bookmark_value>alineación justificada a la derecha en %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; disposición</bookmark_value><bookmark_value>espacios en fórmulas</bookmark_value><bookmark_value>separaciones en fórmulas</bookmark_value><bookmark_value>inserción; separaciones</bookmark_value><bookmark_value>disposición;matrices</bookmark_value><bookmark_value>fórmulas;alineación</bookmark_value><bookmark_value>alineación de fórmulas</bookmark_value>"
+msgstr "<bookmark_value>formato;en $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formato</bookmark_value><bookmark_value>superíndices</bookmark_value><bookmark_value>binomios</bookmark_value><bookmark_value>elementos verticales</bookmark_value><bookmark_value>renglones; inserción en fórmulas</bookmark_value><bookmark_value>subíndices</bookmark_value><bookmark_value>pilas</bookmark_value><bookmark_value>disposiciones verticales de elementos</bookmark_value><bookmark_value>separaciones pequeñas</bookmark_value><bookmark_value>alineación; izquierda (Math)</bookmark_value><bookmark_value>alineación justificada a la izquierda (Math)</bookmark_value><bookmark_value>alineación; centrada horizontalmente (Math)</bookmark_value><bookmark_value>centrada horizontalmente; alineación (Math)</bookmark_value><bookmark_value>alineación; derecha (Math)</bookmark_value><bookmark_value>alineación justificada a la derecha en %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; disposición</bookmark_value><bookmark_value>espacios en fórmulas</bookmark_value><bookmark_value>separaciones en fórmulas</bookmark_value><bookmark_value>inserción; separaciones</bookmark_value><bookmark_value>disposición;matrices</bookmark_value><bookmark_value>fórmulas;alineación</bookmark_value><bookmark_value>alineación de fórmulas</bookmark_value>"
#. bzxC7
#: 03090700.xhp
@@ -4676,7 +4676,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "The letter \"a\" refers to the placeholder in your formula which you would like to assign to the respective formatting. You can substitute this character for any other you like."
-msgstr "\"a\" se refiere siempre al hueco de la fórmula al que se desea asignar el correspondiente formato. En lugar de este hueco, se puede introducir cualquier carácter."
+msgstr "«a» se refiere siempre al hueco de la fórmula al que se desea asignar el correspondiente formato. En lugar de este hueco, se puede introducir cualquier carácter."
#. GmDzn
#: 03090700.xhp
@@ -4694,7 +4694,7 @@ msgctxt ""
"par_idN1008B\n"
"help.text"
msgid "<image id=\"img_id3150981\" src=\"media/helpimg/starmath/co21916.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150981\">Superscript left Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150981\" src=\"media/helpimg/starmath/co21916.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150981\">Icono Superíndice a la izquierda</alt></image>"
#. 96dBm
#: 03090700.xhp
@@ -4721,7 +4721,7 @@ msgctxt ""
"par_idN100C4\n"
"help.text"
msgid "<image id=\"img_id3149691\" src=\"media/helpimg/starmath/co21918.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149691\">Superscript top Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149691\" src=\"media/helpimg/starmath/co21918.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149691\">Icono Superíndice arriba</alt></image>"
#. wCKNn
#: 03090700.xhp
@@ -4748,7 +4748,7 @@ msgctxt ""
"par_idN100FF\n"
"help.text"
msgid "<image id=\"img_id3149097\" src=\"media/helpimg/starmath/co21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149097\">Superscript right Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149097\" src=\"media/helpimg/starmath/co21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149097\">Icono Superíndice a la derecha</alt></image>"
#. u5X6R
#: 03090700.xhp
@@ -4775,7 +4775,7 @@ msgctxt ""
"par_idN1013E\n"
"help.text"
msgid "<image id=\"img_id3149044\" src=\"media/helpimg/starmath/co21905.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149044\">Vertical stack (2 elements) Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149044\" src=\"media/helpimg/starmath/co21905.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149044\">Icono Disposición vertical stack (2 elementos)</alt></image>"
#. GtKJw
#: 03090700.xhp
@@ -5414,7 +5414,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XINTERSECTIONY\">Use this icon to insert two placeholders with the set operator <emph>intersection of sets </emph>.</ahelp> The same happens if you enter <emph><?> intersection <?></emph> Commands window."
-msgstr "<ahelp hid=\"HID_SMA_XINTERSECTIONY\">Use este icono para insertar dos comodines con el operador de conjunto <emph>intersección de conjuntos</emph>.</ahelp> El resultado es el mismo si se escribe <emph><?> intersection <?></emph> Ventana Comandos."
+msgstr "<ahelp hid=\"HID_SMA_XINTERSECTIONY\">Utilice este icono para insertar dos huecos con el operador de conjunto <emph>intersección de conjuntos</emph>.</ahelp> Se obtiene el mismo resultado si se escribe <emph><?> intersection <?></emph> en el cuadro Órdenes."
#. nkD6Y
#: 03090800.xhp
@@ -13019,7 +13019,7 @@ msgctxt ""
"hd_id3149819\n"
"help.text"
msgid "Borders"
-msgstr "Márgenes"
+msgstr "Bordes"
#. XUGBv
#: 05030000.xhp
diff --git a/source/gug/helpcontent2/source/text/swriter.po b/source/gug/helpcontent2/source/text/swriter.po
index 88d3ede0056..92844b3ba5e 100644
--- a/source/gug/helpcontent2/source/text/swriter.po
+++ b/source/gug/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"PO-Revision-Date: 2020-12-01 11:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1551206337.000000\n"
#. P7iNX
@@ -2489,7 +2489,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Status Bar (Writer)"
-msgstr ""
+msgstr "Barra de estado (Writer)"
#. bwSYr
#: main0208.xhp
diff --git a/source/gug/helpcontent2/source/text/swriter/00.po b/source/gug/helpcontent2/source/text/swriter/00.po
index 71d37509415..546cef450bb 100644
--- a/source/gug/helpcontent2/source/text/swriter/00.po
+++ b/source/gug/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
+"PO-Revision-Date: 2020-12-01 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter00/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563615688.000000\n"
#. E9tti
@@ -1643,7 +1643,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <menuitem>Insert - Section - Columns</menuitem> tab."
-msgstr ""
+msgstr "Vaya a <menuitem>Insertar ▸ Sección ▸</menuitem> pestaña <menuitem>Columnas</menuitem>."
#. ZCfVD
#: 00000405.xhp
diff --git a/source/gug/helpcontent2/source/text/swriter/01.po b/source/gug/helpcontent2/source/text/swriter/01.po
index 29f4d6bea6e..b40442ba295 100644
--- a/source/gug/helpcontent2/source/text/swriter/01.po
+++ b/source/gug/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-04 00:16+0000\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1566235661.000000\n"
#. sZfWF
@@ -770,7 +770,7 @@ msgctxt ""
"par_id3154616\n"
"help.text"
msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icono Objeto anterior</alt></image>"
#. z3HC5
#: 02110000.xhp
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icono Objeto siguiente</alt></image>"
#. xyGWM
#: 02110000.xhp
@@ -968,7 +968,7 @@ msgctxt ""
"par_id611603290378376\n"
"help.text"
msgid "Tables"
-msgstr ""
+msgstr "Tablas"
#. hiFCt
#: 02110000.xhp
@@ -977,7 +977,7 @@ msgctxt ""
"par_id531603530756147\n"
"help.text"
msgid "Table items"
-msgstr ""
+msgstr "Elementos de tabla"
#. Kj4pw
#: 02110000.xhp
@@ -986,7 +986,7 @@ msgctxt ""
"par_id291603290382271\n"
"help.text"
msgid "Go to, Select, Edit, Delete, Rename"
-msgstr ""
+msgstr "Ir a, Seleccionar, Editar, Eliminar, Cambiar nombre"
#. raARd
#: 02110000.xhp
@@ -995,7 +995,7 @@ msgctxt ""
"par_id771603291076318\n"
"help.text"
msgid "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Frames icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Icono Marcos</alt></image>"
#. HakR3
#: 02110000.xhp
@@ -1004,7 +1004,7 @@ msgctxt ""
"par_id191603290368002\n"
"help.text"
msgid "Frames"
-msgstr ""
+msgstr "Marcos"
#. qDEB2
#: 02110000.xhp
@@ -1013,7 +1013,7 @@ msgctxt ""
"par_id801603532799021\n"
"help.text"
msgid "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Images Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Icono Imágenes</alt></image>"
#. 4Zuo5
#: 02110000.xhp
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id581603532733359\n"
"help.text"
msgid "Images"
-msgstr ""
+msgstr "Imágenes"
#. s8NFi
#: 02110000.xhp
@@ -1031,7 +1031,7 @@ msgctxt ""
"par_id8016035394621021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">OLE Objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Icono Objetos OLE</alt></image>"
#. DF7be
#: 02110000.xhp
@@ -1040,7 +1040,7 @@ msgctxt ""
"par_id581603532723769\n"
"help.text"
msgid "OLE Objects"
-msgstr ""
+msgstr "Objetos OLE"
#. gY9hD
#: 02110000.xhp
@@ -1049,7 +1049,7 @@ msgctxt ""
"par_id801636822799021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Bookmarks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Icono Marcadores</alt></image>"
#. FABsh
#: 02110000.xhp
@@ -1058,7 +1058,7 @@ msgctxt ""
"par_id581603532733956\n"
"help.text"
msgid "Bookmarks"
-msgstr ""
+msgstr "Marcadores"
#. Vk58Q
#: 02110000.xhp
@@ -1067,7 +1067,7 @@ msgctxt ""
"par_id411603531074035\n"
"help.text"
msgid "Frame, Image, OLE Objects, Bookmark items"
-msgstr ""
+msgstr "Marcos, imágenes, objetos OLE, elementos de marcador"
#. ZqgVB
#: 02110000.xhp
@@ -1076,7 +1076,7 @@ msgctxt ""
"par_id611603290373033\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Ir a, Editar, Eliminar, Cambiar nombre"
#. wRDwv
#: 02110000.xhp
@@ -1085,7 +1085,7 @@ msgctxt ""
"par_id741603570764762\n"
"help.text"
msgid "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Sections Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Icono Secciones</alt></image>"
#. SLmBP
#: 02110000.xhp
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id621603570764762\n"
"help.text"
msgid "Sections"
-msgstr ""
+msgstr "Secciones"
#. EQFyT
#: 02110000.xhp
@@ -1103,7 +1103,7 @@ msgctxt ""
"par_id111603570764762\n"
"help.text"
msgid "Section items"
-msgstr ""
+msgstr "Elementos de sección"
#. ZFCBK
#: 02110000.xhp
@@ -1112,7 +1112,7 @@ msgctxt ""
"par_id291694280382271\n"
"help.text"
msgid "Go to, Select, Edit, Rename"
-msgstr ""
+msgstr "Ir a, Seleccionar, Editar, Cambiar nombre"
#. RTDr9
#: 02110000.xhp
@@ -1121,7 +1121,7 @@ msgctxt ""
"par_id461603570542532\n"
"help.text"
msgid "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Hyperlinks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Icono Hiperenlaces</alt></image>"
#. yve5A
#: 02110000.xhp
@@ -1130,7 +1130,7 @@ msgctxt ""
"par_id801603570516284\n"
"help.text"
msgid "Hyperlinks"
-msgstr ""
+msgstr "Hiperenlaces"
#. YCGxB
#: 02110000.xhp
@@ -1139,7 +1139,7 @@ msgctxt ""
"par_id81603570505590\n"
"help.text"
msgid "Hyperlink items"
-msgstr ""
+msgstr "Elementos de hiperenlace"
#. RT7Pi
#: 02110000.xhp
@@ -1148,7 +1148,7 @@ msgctxt ""
"par_id961603570483539\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Ir a, Editar, Eliminar, Cambiar nombre"
#. MmCsC
#: 02110000.xhp
@@ -1157,7 +1157,7 @@ msgctxt ""
"par_id901603571492300\n"
"help.text"
msgid "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">References Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">Icono Referencias</alt></image>"
#. iDyLx
#: 02110000.xhp
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id91603571492300\n"
"help.text"
msgid "References"
-msgstr ""
+msgstr "Referencias"
#. AdAzM
#: 02110000.xhp
@@ -1175,7 +1175,7 @@ msgctxt ""
"par_id121603573019324\n"
"help.text"
msgid "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Indexes Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Icono Índices</alt></image>"
#. DJW2V
#: 02110000.xhp
@@ -1184,7 +1184,7 @@ msgctxt ""
"par_id591603573019324\n"
"help.text"
msgid "Indexes"
-msgstr ""
+msgstr "Índices"
#. SpEBB
#: 02110000.xhp
@@ -1202,7 +1202,7 @@ msgctxt ""
"par_id29160996782271\n"
"help.text"
msgid "Go to"
-msgstr ""
+msgstr "Ir a"
#. DY5cm
#: 02110000.xhp
@@ -1211,7 +1211,7 @@ msgctxt ""
"par_id741603572161942\n"
"help.text"
msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Comments Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Icono Comentarios</alt></image>"
#. BRGDd
#: 02110000.xhp
@@ -1220,7 +1220,7 @@ msgctxt ""
"par_id41603572161942\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Comentarios"
#. XJRCd
#: 02110000.xhp
@@ -1229,7 +1229,7 @@ msgctxt ""
"par_id711603572473016\n"
"help.text"
msgid "Show All, Hide All, Delete All"
-msgstr ""
+msgstr "Mostrar todo, Ocultar todo, Eliminar todo"
#. WMdde
#: 02110000.xhp
@@ -1238,7 +1238,7 @@ msgctxt ""
"par_id751603572161943\n"
"help.text"
msgid "Comments items"
-msgstr ""
+msgstr "Elementos de comentarios"
#. VzhmF
#: 02110000.xhp
@@ -1247,7 +1247,7 @@ msgctxt ""
"par_id291604453382271\n"
"help.text"
msgid "Go to, Edit, Delete"
-msgstr ""
+msgstr "Ir a, Editar, Eliminar"
#. E5dpv
#: 02110000.xhp
@@ -1256,7 +1256,7 @@ msgctxt ""
"par_id951603571856944\n"
"help.text"
msgid "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Drawing objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Icono Objetos de dibujo</alt></image>"
#. apAFN
#: 02110000.xhp
@@ -1265,7 +1265,7 @@ msgctxt ""
"par_id351603571856944\n"
"help.text"
msgid "Drawing objects"
-msgstr ""
+msgstr "Objetos de dibujo"
#. PnfNJ
#: 02110000.xhp
@@ -1274,7 +1274,7 @@ msgctxt ""
"par_id461603571856945\n"
"help.text"
msgid "Drawing objects items"
-msgstr ""
+msgstr "Elementos de objetos de dibujo"
#. DDAda
#: 02110000.xhp
@@ -1283,7 +1283,7 @@ msgctxt ""
"par_id291603347382271\n"
"help.text"
msgid "Go to, Delete, Rename"
-msgstr ""
+msgstr "Ir a, Eliminar, Cambiar nombre"
#. vGwzZ
#: 02110000.xhp
@@ -1292,7 +1292,7 @@ msgctxt ""
"par_id781603291428300\n"
"help.text"
msgid "All"
-msgstr ""
+msgstr "Todo"
#. AChDj
#: 02110000.xhp
@@ -1301,7 +1301,7 @@ msgctxt ""
"par_id711603291482148\n"
"help.text"
msgid "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Drag Mode\">Drag Mode</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"display\">Display</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Modo de arrastre\">Modo de arrastre</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"visualización\">Visualización</link>"
#. SMFgG
#: 02110000.xhp
@@ -1751,7 +1751,7 @@ msgctxt ""
"hd_id3154292\n"
"help.text"
msgid "<variable id=\"dragmode\">Drag Mode</variable>"
-msgstr ""
+msgstr "<variable id=\"dragmode\">Modo de arrastre</variable>"
#. G5FvJ
#: 02110000.xhp
@@ -5081,7 +5081,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Indents (Sections)"
-msgstr ""
+msgstr "Sangrías (secciones)"
#. ZHUTB
#: 04020200.xhp
@@ -7079,7 +7079,7 @@ msgctxt ""
"hd_id3154598\n"
"help.text"
msgid "Offset in days/minutes"
-msgstr "Corrección en días / minutos"
+msgstr "Corrección en días/minutos"
#. xVNTE
#: 04090001.xhp
@@ -14092,7 +14092,7 @@ msgctxt ""
"par_id91599005949275\n"
"help.text"
msgid "Term"
-msgstr ""
+msgstr "Término"
#. zMi8V
#: 04120250.xhp
@@ -14101,7 +14101,7 @@ msgctxt ""
"par_id461599005949276\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significado"
#. e7Npc
#: 04120250.xhp
@@ -14110,7 +14110,7 @@ msgctxt ""
"par_id291599005949278\n"
"help.text"
msgid "Search term"
-msgstr ""
+msgstr "Término de búsqueda"
#. zFwbQ
#: 04120250.xhp
@@ -14119,7 +14119,7 @@ msgctxt ""
"par_id3152953\n"
"help.text"
msgid "\"Search term\" refers to the index entry that you want to mark in the document."
-msgstr "\"Término de búsqueda\" se refiere a la entrada de índice que se desea marcar en el documento."
+msgstr "El «término de búsqueda» es la entrada de índice que se desea marcar en el documento."
#. CEahq
#: 04120250.xhp
@@ -14128,7 +14128,7 @@ msgctxt ""
"par_id811599006053151\n"
"help.text"
msgid "Alternative entry"
-msgstr ""
+msgstr "Entrada alternativa"
#. rxooN
#: 04120250.xhp
@@ -16405,7 +16405,7 @@ msgctxt ""
"hd_id3155625\n"
"help.text"
msgid "Settings"
-msgstr ""
+msgstr "Configuración"
#. eEhFJ
#: 05040500.xhp
@@ -16450,7 +16450,7 @@ msgctxt ""
"par_id971604735234085\n"
"help.text"
msgid "Tooltips describe each predefined selection."
-msgstr ""
+msgstr "Las descripciones emergentes describen cada una de las selecciones predefinidas."
#. 2Dr2B
#: 05040500.xhp
@@ -16477,7 +16477,7 @@ msgctxt ""
"par_id321604744698332\n"
"help.text"
msgid "The following two options are only available when formatting sections."
-msgstr ""
+msgstr "Las dos opciones siguientes están disponibles solamente cuando se da formato a las secciones."
#. znZph
#: 05040500.xhp
@@ -16549,7 +16549,7 @@ msgctxt ""
"hd_id3147562\n"
"help.text"
msgid "Column"
-msgstr ""
+msgstr "Columna"
#. EQzit
#: 05040500.xhp
@@ -16693,7 +16693,7 @@ msgctxt ""
"hd_id3155775\n"
"help.text"
msgid "Style"
-msgstr ""
+msgstr "Estilo"
#. yYDqn
#: 05040500.xhp
@@ -16711,7 +16711,7 @@ msgctxt ""
"hd_id931604684769944\n"
"help.text"
msgid "Width"
-msgstr ""
+msgstr "Anchura"
#. H2vfk
#: 05040500.xhp
@@ -16729,7 +16729,7 @@ msgctxt ""
"hd_id421604684687071\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Color"
#. CuuBH
#: 05040500.xhp
@@ -16738,7 +16738,7 @@ msgctxt ""
"par_id601604684699407\n"
"help.text"
msgid "Select a color for the separator line."
-msgstr ""
+msgstr "Seleccione un color para la línea separadora."
#. u3jAb
#: 05040500.xhp
@@ -24055,7 +24055,7 @@ msgctxt ""
"par_id3147514\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/overwrite\">Replaces styles in the current document that have the same name as the styles you are loading. No warning message is given.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/overwrite\">Sustituye los estilos del documento actual que tienen el mismo nombre que los estilos que van a cargarse. No se emite ningún mensaje de alerta.</ahelp>"
#. EqEyd
#: 05170000.xhp
@@ -24064,7 +24064,7 @@ msgctxt ""
"par_id3150358\n"
"help.text"
msgid "Only applied styles and modified styles are loaded from a document or template. The styles shown in the sidebar cannot be used as a guide."
-msgstr ""
+msgstr "Solamente se cargan los estilos aplicados y los modificados de un documento o plantilla. Los estilos mostrados en la barra lateral no se pueden utilizar como guía."
#. ivfvH
#: 05170000.xhp
@@ -24073,7 +24073,7 @@ msgctxt ""
"hd_id3153668\n"
"help.text"
msgid "From File"
-msgstr ""
+msgstr "Desde archivo"
#. 8Npm7
#: 05170000.xhp
diff --git a/source/gug/helpcontent2/source/text/swriter/guide.po b/source/gug/helpcontent2/source/text/swriter/guide.po
index b1c7186262b..5b60345d98c 100644
--- a/source/gug/helpcontent2/source/text/swriter/guide.po
+++ b/source/gug/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-04 00:16+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/es/>\n"
"Language: es\n"
@@ -1220,7 +1220,7 @@ msgctxt ""
"par_id3155390\n"
"help.text"
msgid "Choose <menuitem>Format - Character</menuitem>."
-msgstr ""
+msgstr "Vaya a <menuitem>Formato ▸ Carácter</menuitem>."
#. vv3Ti
#: background.xhp
@@ -1229,7 +1229,7 @@ msgctxt ""
"par_id3153665\n"
"help.text"
msgid "Click the <emph>Highlighting</emph> tab, select the background color."
-msgstr ""
+msgstr "Pulse en la pestaña <emph>Resalte</emph> y seleccione el color de fondo."
#. tfUge
#: background.xhp
@@ -1265,7 +1265,7 @@ msgctxt ""
"par_id3151245\n"
"help.text"
msgid "On the <emph>Area</emph> tab page, select the background color or a background graphic."
-msgstr ""
+msgstr "En la pestaña <emph>Área</emph>, seleccione el color o la imagen de fondo."
#. k9Qm3
#: background.xhp
@@ -1301,7 +1301,7 @@ msgctxt ""
"par_id3148664\n"
"help.text"
msgid "Choose <menuitem>Table - Properties</menuitem>."
-msgstr ""
+msgstr "Diríjase a <menuitem>Tabla ▸ Propiedades</menuitem>."
#. wLrJQ
#: background.xhp
@@ -12389,7 +12389,7 @@ msgctxt ""
"par_idN10630\n"
"help.text"
msgid "Click <emph>Print</emph>."
-msgstr ""
+msgstr "Pulse en <emph>Imprimir</emph>."
#. 3HQ8i
#: print_brochure.xhp
@@ -12479,7 +12479,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting What to Print"
-msgstr ""
+msgstr "Seleccionar qué imprimir"
#. AiDCa
#: print_selection.xhp
@@ -12488,7 +12488,7 @@ msgctxt ""
"bm_id541605272263762\n"
"help.text"
msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>seleccionar; páginas que imprimir</bookmark_value><bookmark_value>imprimir;intervalo de páginas</bookmark_value><bookmark_value>imprimir;selección</bookmark_value>"
#. WiStT
#: print_selection.xhp
@@ -12497,7 +12497,7 @@ msgctxt ""
"hd_id721605269733190\n"
"help.text"
msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
-msgstr ""
+msgstr "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Seleccionar qué imprimir</link></variable>"
#. FzVEC
#: print_selection.xhp
@@ -12506,7 +12506,7 @@ msgctxt ""
"par_id501605271321756\n"
"help.text"
msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
-msgstr ""
+msgstr "Es posible optar por imprimir páginas solas, un intervalo de páginas o una selección del documento."
#. 4KAbF
#: print_selection.xhp
@@ -12515,16 +12515,16 @@ msgctxt ""
"hd_id601605269573468\n"
"help.text"
msgid "Printing a single page"
-msgstr ""
+msgstr "Imprimir una única página"
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
-msgstr ""
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Diríjase a <menuitem>Archivo ▸ Imprimir</menuitem> para abrir el cuadro de diálogo <emph>Imprimir</emph>."
#. 2GBM8
#: print_selection.xhp
@@ -12533,7 +12533,7 @@ msgctxt ""
"par_id31605269603220\n"
"help.text"
msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
-msgstr ""
+msgstr "En la sección <emph>Intervalo y copias</emph>, seleccione la opción <emph>Páginas</emph>. El cuadro de texto mostrará el número de la página actual."
#. QtixM
#: print_selection.xhp
@@ -12542,7 +12542,7 @@ msgctxt ""
"par_id251605269806172\n"
"help.text"
msgid "Enter the page number you want to print."
-msgstr ""
+msgstr "Introduzca el número de la página que desee imprimir."
#. 3oqEG
#: print_selection.xhp
@@ -12551,7 +12551,7 @@ msgctxt ""
"par_id641605269861744\n"
"help.text"
msgid "The preview box on the left shows the selected page."
-msgstr ""
+msgstr "El cuadro de previsualización a la izquierda mostrará la página seleccionada."
#. KkcGy
#: print_selection.xhp
@@ -12560,16 +12560,16 @@ msgctxt ""
"hd_id171605269647972\n"
"help.text"
msgid "Printing a range of pages"
-msgstr ""
+msgstr "Imprimir un intervalo de páginas"
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
-msgstr ""
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Diríjase a <menuitem>Archivo ▸ Imprimir</menuitem> para abrir el cuadro de diálogo <emph>Imprimir</emph>."
#. hWBFk
#: print_selection.xhp
@@ -12578,7 +12578,7 @@ msgctxt ""
"par_id261605269669284\n"
"help.text"
msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
-msgstr ""
+msgstr "En la sección <emph>Intervalo y copias</emph>, seleccione la opción <emph>Páginas</emph>. El cuadro de texto mostrará el número de página actual."
#. 9F38F
#: print_selection.xhp
@@ -12587,60 +12587,42 @@ msgctxt ""
"par_id331605269672260\n"
"help.text"
msgid "Enter the page numbers to print."
-msgstr ""
+msgstr "Introduzca los números de las páginas que se imprimirán."
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
-msgstr ""
-
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12650,7 +12632,7 @@ msgctxt ""
"par_id581605269685019\n"
"help.text"
msgid "The preview box on the left shows the selected pages."
-msgstr ""
+msgstr "El cuadro de previsualización a la izquierda mostrará las páginas seleccionadas."
#. PZtKv
#: print_selection.xhp
@@ -12659,7 +12641,7 @@ msgctxt ""
"hd_id571605269596899\n"
"help.text"
msgid "Printing a selection of text or graphics"
-msgstr ""
+msgstr "Imprimir una selección de texto o imágenes"
#. 5KxGz
#: print_selection.xhp
@@ -12668,16 +12650,16 @@ msgctxt ""
"par_id261605270158305\n"
"help.text"
msgid "Select the content to print."
-msgstr ""
+msgstr "Seleccione el contenido que se va a imprimir."
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
-msgstr ""
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Diríjase a <menuitem>Archivo ▸ Imprimir</menuitem> para abrir el cuadro de diálogo <emph>Imprimir</emph>."
#. iaYKz
#: print_selection.xhp
@@ -12686,7 +12668,7 @@ msgctxt ""
"par_id911605270164153\n"
"help.text"
msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
-msgstr ""
+msgstr "En la sección <emph>Intervalo y copias</emph>, elija la opción <emph>Selección</emph>."
#. aFMaJ
#: print_selection.xhp
@@ -12695,7 +12677,7 @@ msgctxt ""
"par_id871605270949919\n"
"help.text"
msgid "The preview box shows the selected material."
-msgstr ""
+msgstr "El cuadro de previsualización mostrará el material seleccionado."
#. bJ768
#: print_small.xhp
@@ -12704,7 +12686,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Printing Multiple Pages on One Sheet"
-msgstr "Imprimir varias páginas en una hoja"
+msgstr "Imprimir varias páginas en la misma hoja"
#. qKF9L
#: print_small.xhp
@@ -12722,7 +12704,7 @@ msgctxt ""
"hd_id3149694\n"
"help.text"
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
-msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Imprimir varias páginas por hoja de papel\">Imprimir varias páginas por hoja de papel</link></variable>"
+msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Imprimir varias páginas en la misma hoja\">Imprimir varias páginas en la misma hoja</link></variable>"
#. Q9FyG
#: print_small.xhp
@@ -12731,7 +12713,7 @@ msgctxt ""
"par_id3149829\n"
"help.text"
msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
-msgstr ""
+msgstr "En la sección <emph>Disposición de páginas</emph> del cuadro de diálogo <menuitem>Archivo ▸ Imprimir</menuitem> se encuentra la posibilidad de imprimir varias páginas en una única hoja."
#. 7nqCv
#: print_small.xhp
@@ -12740,7 +12722,7 @@ msgctxt ""
"par_id3156098\n"
"help.text"
msgid "Choose <menuitem>File - Print</menuitem>"
-msgstr ""
+msgstr "Vaya a <menuitem>Archivo ▸ Imprimir</menuitem>"
#. 5EBvC
#: print_small.xhp
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Si no lo especifica de otro modo, todos los documentos de texto nuevos de $[officename] se basará en la plantilla predeterminada."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] tiene un número de <link href=\"text/swriter/01/05130000.xhp\" name=\"plantillas predefinidas\">plantillas predefinidas</link> que puede usar para crear tipos diferentes o documentos de texto, como las cartas comerciales."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Para configurar el comportamiento del cursor directo, vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME Writer ▸ Ayudas de formato</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "En la barra <item type=\"menuitem\">Herramientas</item>, pulse en el icono <item type=\"menuitem\">Cursor directo</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icono</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Pulse en un espacio libre del documento de texto. El puntero del ratón cambia para reflejar la alineación que se aplicará al texto que escriba."
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icono</alt></image> Alinear a la izquierda"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icono</alt></image> Centro"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icono</alt></image> Alinear a la derecha"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
index 81274bdeb6a..2b3bc2af936 100644
--- a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-07-26 16:40+0000\n"
"Last-Translator: dejesusaquino <josesitopechocho197@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8046,15 +8046,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Mokañy Diapositiva"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Mo~ñe'ẽrã..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25622,25 +25622,25 @@ msgctxt ""
msgid "~File"
msgstr "~Ñongatuha"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ali~near"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Ali~near"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31246,15 +31246,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Poravo Opaha peve Párrafogui"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Poravo Palabra Opaha Peve"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/gug/sc/messages.po b/source/gug/sc/messages.po
index c9498f19893..f842c3ff121 100644
--- a/source/gug/sc/messages.po
+++ b/source/gug/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-08-16 15:23+0000\n"
"Last-Translator: Porfiria Orrego <porrego9@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24937,213 +24937,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30007,338 +30007,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solucionador"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_pcionáke..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Solucionar"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Koty'i _objetivo"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimizar resultados a"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Ojemoambue koty'i kuéra"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Mic_hĩvéva"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Tuichaiteve"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Valor de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Referencia _koty'ígui"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operador"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_alor"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Referencia koty'ígui"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Referencia koty'ígui"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Referencia koty'ígui"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Referencia koty'ígui"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Oĩmbáva"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binario"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operador"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Oĩmbáva"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binario"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operador"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Oĩmbáva"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binario"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operador"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Oĩmbáva"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binario"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operador"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valor"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valor"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valor"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valor"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Nohẽ"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Nohẽ"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Nohẽ"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Nohẽ"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Condiciones Limitantes"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/gug/sd/messages.po b/source/gug/sd/messages.po
index 28b07b3742b..e0be5b116e2 100644
--- a/source/gug/sd/messages.po
+++ b/source/gug/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-08-02 16:44+0000\n"
"Last-Translator: Porfiria Orrego <porrego9@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3823,116 +3823,116 @@ msgstr "~Mba'ekuaarã renda"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Myengovia"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ta'a_nga"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ta'a~nga"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Mo_ha'anga"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Ta'a_nga"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Mba'e"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Mba'e"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Apopyvusureta"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Apopyvusureta"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Master"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Master"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tembipuru"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tembiporukuéra"
@@ -4336,12 +4336,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6603,219 +6597,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7756,12 +7750,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Tembe'y mbosako'i"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/gug/starmath/messages.po b/source/gug/starmath/messages.po
index 1c4202a4dc2..ea952376281 100644
--- a/source/gug/starmath/messages.po
+++ b/source/gug/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2192,9 +2192,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/gug/svx/messages.po b/source/gug/svx/messages.po
index 52ddacb5e01..5d7718d7cca 100644
--- a/source/gug/svx/messages.po
+++ b/source/gug/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-01 16:20+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: Guarani (Paraguayan) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gug/>\n"
@@ -7323,10 +7323,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14175,13 +14175,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barra de Navegación"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14205,10 +14205,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/gug/sw/messages.po b/source/gug/sw/messages.po
index 9c1e5b23d79..c672a947ebb 100644
--- a/source/gug/sw/messages.po
+++ b/source/gug/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-08-19 12:02+0200\n"
"Last-Translator: pastora <pastora.leguizamon@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20427,181 +20427,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21640,12 +21640,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Tembe'y mbosako'i"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/he/cui/messages.po b/source/he/cui/messages.po
index c08a7de09eb..18dc62b4641 100644
--- a/source/he/cui/messages.po
+++ b/source/he/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-29 14:35+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/he/>\n"
@@ -21282,60 +21282,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/he/helpcontent2/source/text/sbasic/shared.po b/source/he/helpcontent2/source/text/sbasic/shared.po
index 6debc6dc4be..44a1df5d4bd 100644
--- a/source/he/helpcontent2/source/text/sbasic/shared.po
+++ b/source/he/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-06-09 21:12+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/he/>\n"
@@ -12814,49 +12814,40 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Creates a new directory on a data medium."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "Creates a new directory on a data medium."
+msgstr "Creates a new directory on a data medium."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
#. PLopZ
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "If the path is not determined, the directory is created in the current directory."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Deletes an existing directory from a data medium."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "If the path is not determined, the \\<emph\\>RmDir Statement\\</emph\\> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Stops the execution of the Basic program."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Use \\<emph\\>With\\</emph\\> and \\<emph\\>End With\\</emph\\> if you have several properties or methods for a single object."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
-#. ACDCD
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. 9DA89
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/he/helpcontent2/source/text/scalc/00.po b/source/he/helpcontent2/source/text/scalc/00.po
index f22568f80c1..0883bea2059 100644
--- a/source/he/helpcontent2/source/text/scalc/00.po
+++ b/source/he/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/he/helpcontent2/source/text/scalc/guide.po b/source/he/helpcontent2/source/text/scalc/guide.po
index 23d42756cbb..57fa9935f2e 100644
--- a/source/he/helpcontent2/source/text/scalc/guide.po
+++ b/source/he/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "To freeze both horizontally and vertically, select the \\<emph\\>cell\\</emph\\> that is below the row and to the right of the column that you want to freeze."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "If you want to print a certain row on all pages of a document, choose \\<emph\\>Format - Print ranges - Edit\\</emph\\>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/he/helpcontent2/source/text/sdraw/01.po b/source/he/helpcontent2/source/text/sdraw/01.po
index 591faa60e8f..523f9587fe9 100644
--- a/source/he/helpcontent2/source/text/sdraw/01.po
+++ b/source/he/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-09 23:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/he/helpcontent2/source/text/shared/01.po b/source/he/helpcontent2/source/text/shared/01.po
index 28d7c724c2f..36bdd301a0e 100644
--- a/source/he/helpcontent2/source/text/shared/01.po
+++ b/source/he/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/he/helpcontent2/source/text/shared/guide.po b/source/he/helpcontent2/source/text/shared/guide.po
index 517e53e3c80..ef1af6ddc2f 100644
--- a/source/he/helpcontent2/source/text/shared/guide.po
+++ b/source/he/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-06-09 21:11+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/he/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr ""
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Error Report Tool"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "\\<bookmark_value\\>Error Report Tool\\</bookmark_value\\>\\<bookmark_value\\>reporting errors\\</bookmark_value\\>\\<bookmark_value\\>crash reports\\</bookmark_value\\>\\<bookmark_value\\>activating;Error Report Tool\\</bookmark_value\\>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "The Error Report Tool starts automatically when a program crash occurs. If the program enters into an endless loop, so that it does not respond to mouse-clicks or keypresses, you can also start the Error Report Tool manually."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Starting the Error Report Tool"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "With most program crashes the Error Report Tool will start automatically. However, if the program seems to be stuck and the tool does not start automatically, you can start the tool manually:"
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Completing the Report"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Sending the Error Report"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the \\<emph\\>Send\\</emph\\> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "What Data is Sent?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the \\<emph\\>Show Report\\</emph\\> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,31 +21796,31 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the \\<emph\\>Tools - Mail Merge\\</emph\\> dialog select the \\<emph\\>Printer\\</emph\\> option and then select the \\<emph\\>Single print jobs\\</emph\\> check box."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "\\<bookmark_value\\>default templates; changing\\</bookmark_value\\>\\<bookmark_value\\>changing;default templates\\</bookmark_value\\>\\<bookmark_value\\>defaults;documents\\</bookmark_value\\>\\<bookmark_value\\>custom templates\\</bookmark_value\\>\\<bookmark_value\\>updating; templates\\</bookmark_value\\>\\<bookmark_value\\>editing;templates\\</bookmark_value\\>\\<bookmark_value\\>templates;editing and saving\\</bookmark_value\\>\\<bookmark_value\\>saving;templates\\</bookmark_value\\>\\<bookmark_value\\>resetting;templates\\</bookmark_value\\>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
msgstr ""
#. nWgSj
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "When you open a new document with \\<emph\\>File - New\\</emph\\>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modifying Default Templates"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
+
+#. bnC8i
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3145748\n"
+"help.text"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. 2pSHL
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3146901\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
-#. dAATP
+#. MEA5R
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
msgstr ""
-#. GuEWL
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. Quf5G
+#. DuAAp
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id251605475503009\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "There are several ways to make your work easier by using your own custom templates."
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. S8XFP
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/he/helpcontent2/source/text/shared/optionen.po b/source/he/helpcontent2/source/text/shared/optionen.po
index 55462f66be7..4f8e19d3fb9 100644
--- a/source/he/helpcontent2/source/text/shared/optionen.po
+++ b/source/he/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "View"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,49 +3517,67 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Screen font antialiasing"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
msgstr ""
#. QWZyh
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,22 +3751,22 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Graphics output"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr ""
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
msgstr ""
#. WzMq5
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN107A3\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Menu"
-msgstr "Menu"
-
-#. WnNCQ
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"hd_id3156056\n"
-"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Screen font antialiasing"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr ""
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/swriter/guide.po b/source/he/helpcontent2/source/text/swriter/guide.po
index 4a7582eb22e..d77e4b0c604 100644
--- a/source/he/helpcontent2/source/text/swriter/guide.po
+++ b/source/he/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,13 +16891,13 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Unless you specify otherwise, every new $[officename] text document is based on the default template."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
msgstr ""
#. VFfAP
@@ -17269,13 +17251,13 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
msgstr ""
#. AmitQ
@@ -17287,31 +17269,31 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
msgstr ""
#. EuMGF
diff --git a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
index 5dc9a0624b6..46fd891e9a7 100644
--- a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-29 14:36+0000\n"
"Last-Translator: Yossi Cohen <hawxleader@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/he/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "הסתרת שקופית"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~טקסט..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25590,27 +25590,25 @@ msgctxt ""
msgid "~File"
msgstr "קובץ"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "יישור"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "יישור"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31223,15 +31221,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "בחירה עד לסוף פסקה"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "בחירה עד למילה בצד ימין"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/he/sc/messages.po b/source/he/sc/messages.po
index 82266cd285c..071c6a920d5 100644
--- a/source/he/sc/messages.po
+++ b/source/he/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-03-25 14:16+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/he/>\n"
@@ -25125,213 +25125,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30342,348 +30342,354 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "הפותר"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_אפשרויות..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_פתירה"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "תא הי_עד"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "מיטוב התוצאה ל"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "ע_ל ידי החלפת תאים"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "מ_זערי"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "מירבי"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_ערך של"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "ה_פנייה לתא"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
#, fuzzy
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "אופרטור"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "_ערך"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "ה_פנייה לתא"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "ה_פנייה לתא"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "ה_פנייה לתא"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "ה_פנייה לתא"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "מספר שלם"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "בינרי"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "אופרטור"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "מספר שלם"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "בינרי"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "אופרטור"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "מספר שלם"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "בינרי"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "אופרטור"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "מספר שלם"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "בינרי"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "אופרטור"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "_ערך"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "_ערך"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "_ערך"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "_ערך"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "להסיר"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "להסיר"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "להסיר"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "להסיר"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "מגבלות"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/he/sd/messages.po b/source/he/sd/messages.po
index 23de6d8e35b..fb077e8abce 100644
--- a/source/he/sd/messages.po
+++ b/source/he/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-29 14:36+0000\n"
"Last-Translator: Yossi Cohen <hawxleader@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/he/>\n"
@@ -3866,116 +3866,116 @@ msgstr "~טבלה"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "המרה"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_תמונה"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~תמונה"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_ציור"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~ציור"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_אובייקט"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~אובייקט"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_מדיה"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~מדיה"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "טו_פס"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "טו~פס"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "הר_חבה"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "הר~חבה"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_כלים"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~כלים"
@@ -4397,12 +4397,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_תפריט"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "הר_חבה"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6710,219 +6704,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7881,12 +7875,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "קו מתאר טקסט"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/he/starmath/messages.po b/source/he/starmath/messages.po
index 92b5030f7ca..0dfacae6d1c 100644
--- a/source/he/starmath/messages.po
+++ b/source/he/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2198,9 +2198,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/he/svx/messages.po b/source/he/svx/messages.po
index ec0e6a98c3c..0cc417837b5 100644
--- a/source/he/svx/messages.po
+++ b/source/he/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/he/>\n"
@@ -7284,10 +7284,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14126,13 +14126,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "סרגל ניווט"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14156,10 +14156,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/he/sw/messages.po b/source/he/sw/messages.po
index 1900f26e5e0..2e80a03039c 100644
--- a/source/he/sw/messages.po
+++ b/source/he/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-10-29 14:36+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/he/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20792,181 +20792,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22021,12 +22021,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "קו מתאר טקסט"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/hi/cui/messages.po b/source/hi/cui/messages.po
index 7cf312d67a8..f23eb7265dd 100644
--- a/source/hi/cui/messages.po
+++ b/source/hi/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21464,60 +21464,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/hi/helpcontent2/source/text/sbasic/shared.po b/source/hi/helpcontent2/source/text/sbasic/shared.po
index d3b9149be04..708381c2537 100644
--- a/source/hi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hi/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,49 +12814,40 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
-"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "डाटा मीडियम पर एक नई डिरेक्ट्री बनाता है."
-
-#. SehPs
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
msgstr ""
-#. xrp6D
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3155150\n"
+"par_id3147000\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "ChDir Text As String"
+msgid "Creates a new directory on a data medium."
+msgstr "डाटा मीडियम पर एक नई डिरेक्ट्री बनाता है."
-#. J4Hg2
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3156027\n"
+"par_id3155150\n"
"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
#. PLopZ
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "यदि पथ निर्धारित नहीं है तो वर्तमान डिरेक्ट्री में डिरेक्ट्री बनाई जाएगी."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,13 +13120,13 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "डाटा मीडियम से मौजूदा किसी डिरेक्ट्री को मिटाता है."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
msgstr ""
#. uE7FC
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "ChDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr ""
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,24 +24568,15 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "बेसिक प्रोग्राम का चलाना रोकता है."
-#. FtjMt
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3153126\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
msgstr ""
-#. qrBWD
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
#. BsgsP
#: 03090409.xhp
msgctxt ""
@@ -24856,40 +24811,49 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
msgstr ""
#. zLuzY
@@ -34099,24 +34063,15 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr ""
-#. ACDCD
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3153990\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
msgstr ""
-#. 9DA89
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
#. 9FABw
#: 03130500.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/scalc/00.po b/source/hi/helpcontent2/source/text/scalc/00.po
index 38c5c156ac1..1761a723953 100644
--- a/source/hi/helpcontent2/source/text/scalc/00.po
+++ b/source/hi/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/hi/helpcontent2/source/text/scalc/guide.po b/source/hi/helpcontent2/source/text/scalc/guide.po
index 8a30c8f682c..549c205d69a 100644
--- a/source/hi/helpcontent2/source/text/scalc/guide.po
+++ b/source/hi/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr ""
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr ""
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/hi/helpcontent2/source/text/sdraw/01.po b/source/hi/helpcontent2/source/text/sdraw/01.po
index f3a271630bd..92f3078fdb9 100644
--- a/source/hi/helpcontent2/source/text/sdraw/01.po
+++ b/source/hi/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-10 00:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/hi/helpcontent2/source/text/shared/01.po b/source/hi/helpcontent2/source/text/shared/01.po
index 376dbed368f..d9b2d26f709 100644
--- a/source/hi/helpcontent2/source/text/shared/01.po
+++ b/source/hi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/hi/helpcontent2/source/text/shared/guide.po b/source/hi/helpcontent2/source/text/shared/guide.po
index d56f3735d54..7c6283dac03 100644
--- a/source/hi/helpcontent2/source/text/shared/guide.po
+++ b/source/hi/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr ""
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,148 +10447,139 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "त्रुटि रपट औज़ार"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "त्रुटि रपट औजार प्रारंभ करना"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "रपट पूरा करना"
-
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "त्रुटि रपट भेजना"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "क्या डाटा भेजा गया?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
msgstr ""
#. uD7Ga
@@ -22075,31 +21796,31 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr ""
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "डिफ़ॉल्ट टेम्पलेट बदलना"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
msgstr ""
#. nWgSj
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr ""
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "डिफ़ॉल्ट टेम्पलेट परिवर्धित करना"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "प्रत्येक $[officename] मॉड्यूल के लिए आप दस्तावेज़ टैम्प्लेट निर्धारित कर सकते हैं. निम्न विवरण देता है कि पाठ दस्तावेज़ों के लिए कैसे आगे बढ़ें."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
msgstr ""
-#. GuEWL
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "मनपसंद टैम्प्लेट्स इस्तेमाल करना"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. Quf5G
+#. FZqGj
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"hd_id311605475738848\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "अपने स्वयं के मनपसंद टैम्प्लेट का इस्तेमाल कर अपना कार्य आसान बनाने के यहाँ बहुत सारे तरीके हैं."
+msgid "Modifying a Custom Template"
+msgstr ""
-#. S8XFP
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "टैम्प्लेट फ़ोल्डर में टैमप्लेट"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/hi/helpcontent2/source/text/shared/optionen.po b/source/hi/helpcontent2/source/text/shared/optionen.po
index a06428a9a57..3ab2ae5d372 100644
--- a/source/hi/helpcontent2/source/text/shared/optionen.po
+++ b/source/hi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "दृश्य"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,49 +3517,67 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
+msgid "Visibility"
msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
msgstr ""
#. QWZyh
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,22 +3751,22 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
msgstr ""
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
msgstr ""
#. WzMq5
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "मेन्यू"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr ""
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr ""
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/swriter/guide.po b/source/hi/helpcontent2/source/text/swriter/guide.po
index a7962d06ea4..1616bfcf930 100644
--- a/source/hi/helpcontent2/source/text/swriter/guide.po
+++ b/source/hi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,13 +16891,13 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr ""
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
msgstr ""
#. VFfAP
@@ -17269,13 +17251,13 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
msgstr ""
#. AmitQ
@@ -17287,31 +17269,31 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr ""
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
msgstr ""
#. EuMGF
diff --git a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
index 0d1e85517ad..5673ff5076f 100644
--- a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -8115,15 +8115,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "स्लाइड छुपाएँ (~H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "पाठ (~x)..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25797,27 +25797,25 @@ msgctxt ""
msgid "~File"
msgstr "फ़ाइल (~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "संरेखित करें"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "संरेखित करें"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31482,15 +31480,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "अनुच्छेद के अंत तक चुनें"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "शब्द की दाहिनी ओर चुनें"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/hi/sc/messages.po b/source/hi/sc/messages.po
index 749c0234aca..29a02b6adb4 100644
--- a/source/hi/sc/messages.po
+++ b/source/hi/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25075,213 +25075,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30297,342 +30297,348 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "समाधानकर्ता"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "विकल्प (_p)..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "इसमें परिणाम अनुकूलित करें"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "अधिकतम (_M)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "अधिकतम (_M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
#, fuzzy
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "ऑपरेटर"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "मान"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "पूर्णांक"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "द्विपदीय"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "ऑपरेटर"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "पूर्णांक"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "द्विपदीय"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "ऑपरेटर"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "पूर्णांक"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "द्विपदीय"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "ऑपरेटर"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "पूर्णांक"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "द्विपदीय"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "ऑपरेटर"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "मान"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "मान"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "मान"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "मान"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "हटाएँ"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "हटाएँ"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "हटाएँ"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "हटाएँ"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "परिसीमन स्थिति"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/hi/sd/messages.po b/source/hi/sd/messages.po
index 64c25ecb85b..19f09336529 100644
--- a/source/hi/sd/messages.po
+++ b/source/hi/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3887,116 +3887,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4400,12 +4400,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6729,219 +6723,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7899,12 +7893,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "पाठ परिवेश"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/hi/starmath/messages.po b/source/hi/starmath/messages.po
index e5daa50cf87..e5858303143 100644
--- a/source/hi/starmath/messages.po
+++ b/source/hi/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2203,9 +2203,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/hi/svx/messages.po b/source/hi/svx/messages.po
index 04b29ba89f9..bfbdd7f7933 100644
--- a/source/hi/svx/messages.po
+++ b/source/hi/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Hindi <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/hi/>\n"
@@ -7294,10 +7294,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14164,13 +14164,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "नेविगेशन पट्टी"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14194,10 +14194,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/hi/sw/messages.po b/source/hi/sw/messages.po
index c764baf34bf..1d1c7b92f5b 100644
--- a/source/hi/sw/messages.po
+++ b/source/hi/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20832,181 +20832,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22056,12 +22056,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "पाठ परिवेश"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/hr/cui/messages.po b/source/hr/cui/messages.po
index dd0230f6ed7..7da8cfe74de 100644
--- a/source/hr/cui/messages.po
+++ b/source/hr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/hr/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566194989.000000\n"
#. GyY9M
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/hr/helpcontent2/source/text/sbasic/shared.po b/source/hr/helpcontent2/source/text/sbasic/shared.po
index 9478a3cc0b2..65de0a7a7b2 100644
--- a/source/hr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hr/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-07-19 13:19+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,49 +12814,40 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
+msgid "Creates a new directory on a data medium."
msgstr ""
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Tekst kao niz znakova"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
#. PLopZ
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Ako staza do mape nije određena, mapa se kreira u trenutnoj mapi."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,13 +13120,13 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Briše postojeće direktorije iz podatkovnih medija."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
msgstr ""
#. uE7FC
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr ""
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,24 +24568,15 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Zaustavlja izvršavanje Basic programa."
-#. FtjMt
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3153126\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
msgstr ""
-#. qrBWD
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. BsgsP
#: 03090409.xhp
msgctxt ""
@@ -24856,40 +24811,49 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Postavlja objekt kao uobičajni objekt. Osim ako je drugo objektno ime deklarirano, sve karakteristike i metode odnose se na uobičajni objekt sve dok se ne dosegne End With naredba"
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
msgstr ""
#. zLuzY
@@ -34099,24 +34063,15 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Pušta ton kroz zvučnik računala. Ton je ovisan o sustavu i ne možete promijeniti glasnoću ."
-#. ACDCD
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3153990\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
msgstr ""
-#. 9DA89
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. 9FABw
#: 03130500.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/scalc/00.po b/source/hr/helpcontent2/source/text/scalc/00.po
index 2dd7d62b410..3d32bbf7271 100644
--- a/source/hr/helpcontent2/source/text/scalc/00.po
+++ b/source/hr/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/hr/helpcontent2/source/text/scalc/guide.po b/source/hr/helpcontent2/source/text/scalc/guide.po
index 7ed00144779..10d1a81351d 100644
--- a/source/hr/helpcontent2/source/text/scalc/guide.po
+++ b/source/hr/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr ""
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr ""
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/hr/helpcontent2/source/text/sdraw/01.po b/source/hr/helpcontent2/source/text/sdraw/01.po
index 8adcedb5574..5e6c8780c1d 100644
--- a/source/hr/helpcontent2/source/text/sdraw/01.po
+++ b/source/hr/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-10 00:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/hr/helpcontent2/source/text/shared/01.po b/source/hr/helpcontent2/source/text/shared/01.po
index 34cbc04d970..f0d543a3fe4 100644
--- a/source/hr/helpcontent2/source/text/shared/01.po
+++ b/source/hr/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-07-19 13:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/hr/helpcontent2/source/text/shared/guide.po b/source/hr/helpcontent2/source/text/shared/guide.po
index 0f6d13aa154..4ce847f2712 100644
--- a/source/hr/helpcontent2/source/text/shared/guide.po
+++ b/source/hr/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-07-19 13:37+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr ""
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,148 +10447,139 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Alat za prijavu grešaka"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Pokrećem alat za prijavu grešaka"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Završavam izvješće"
-
-#. vq6k8
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Saljem Izviješće o Grešci"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Koji podaci se šalju?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
msgstr ""
#. uD7Ga
@@ -22075,31 +21796,31 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr ""
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
msgstr ""
#. nWgSj
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr ""
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
+msgid "Creating a Default Template"
msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "When you open a new document, the modified default template will be used."
msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/hr/helpcontent2/source/text/shared/optionen.po b/source/hr/helpcontent2/source/text/shared/optionen.po
index f3005ad8cf5..bb0a3b422d7 100644
--- a/source/hr/helpcontent2/source/text/shared/optionen.po
+++ b/source/hr/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-07-19 13:30+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "Pogled"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,49 +3517,67 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Izglađivanje pisma zaslona"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
msgstr ""
#. QWZyh
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,22 +3751,22 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Grafički ispis"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr ""
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
msgstr ""
#. WzMq5
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN107A3\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Menu"
-msgstr "Izbornik"
-
-#. WnNCQ
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"hd_id3156056\n"
-"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Izglađivanje pisma zaslona"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr ""
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/swriter/guide.po b/source/hr/helpcontent2/source/text/swriter/guide.po
index 83b1a9ed4d2..d1504b34f31 100644
--- a/source/hr/helpcontent2/source/text/swriter/guide.po
+++ b/source/hr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-19 12:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/hr/>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,13 +16891,13 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr ""
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
msgstr ""
#. VFfAP
@@ -17269,13 +17251,13 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
msgstr ""
#. AmitQ
@@ -17287,31 +17269,31 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr ""
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
msgstr ""
#. EuMGF
diff --git a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
index ebe6f71492e..e60aee1bb13 100644
--- a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/hr/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565194753.000000\n"
#. W5ukN
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Sakrij slajd"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~kst..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Datoteka"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Porav~naj"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Porav~naj"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Odaberi do kraja odlomka"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Odaberi desno do riječi"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/hr/sc/messages.po b/source/hr/sc/messages.po
index cafefd6bbff..c3230c334eb 100644
--- a/source/hr/sc/messages.po
+++ b/source/hr/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/hr/>\n"
@@ -24595,213 +24595,213 @@ msgid "~File"
msgstr "~Datoteka"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Postavljanje obruba označenoj ćeliji."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Povećanje uvlake"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Smanjenje uvlake"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "P_očetno"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Po_lje"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Umetanje"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Umetanje"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Izravnanje objekta"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Raspored"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Podaci"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Podaci"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Provjera"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Provjera"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Pogled"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Pogled"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Sli~ke"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Crtanje"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Crtanje"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Pretvori"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medijske datoteke"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medijske datoteke"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Ispisivanje"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Ispisivanje"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ob_rasci"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ob~rasci"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Alati"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29630,338 +29630,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Rješavanje"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "P_ostavke..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Riješi"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Odredišna ćelija"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimiziraj rezultat na"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Sa promjenom ćelija"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Vrijednost od"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Referen_ca ćelije"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_rijednost"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Referenca ćelije"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Referenca ćelije"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Referenca ćelije"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Referenca ćelije"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Cijeli broj"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binarno"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Cijeli broj"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binarno"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Cijeli broj"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binarno"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Cijeli broj"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binarno"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Vrijednost"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Vrijednost"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Vrijednost"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Vrijednost"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Ukloni"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Ukloni"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Ukloni"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Ukloni"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Ograničavajući uvjeti"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/hr/sd/messages.po b/source/hr/sd/messages.po
index 0b18ecdd239..053114a75f1 100644
--- a/source/hr/sd/messages.po
+++ b/source/hr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/hr/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563403648.000000\n"
#. WDjkB
@@ -3820,116 +3820,116 @@ msgstr "~Tablica"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Pretvaranje"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Sl_ika"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Sli~ka"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Crtanje"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Crtanje"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medijska datoteka"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medijska datoteka"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ob_razac"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ob~razac"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Glavni"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Glavni"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Pr_oširenje"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Pr~oširenje"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Alati"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Alati"
@@ -4333,12 +4333,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "Izbor_nik"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Pr_oširenje"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6570,219 +6564,219 @@ msgid "~File"
msgstr "~Datoteka"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Polazno"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Polazno"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Po_lje"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Umetn_i"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Umetn~i"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Raspored"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Raspored"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Prikaz prezentacije"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Prikaz prezentacije"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Provjera"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Provjera"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Pogled"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Pogled"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tablica"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tablica"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Pretvori"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Sl_ika"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Sli~ka"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Crtanje"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Crtanje"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medijska datoteka"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medijska datoteka"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ob_razac"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ob~razac"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Glavni"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Glavni"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Pogled"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Struktura"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Pr_oširenje"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Pr~oširenje"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_ti"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ala~ti"
@@ -7692,12 +7686,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Uređivanje konture"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Pr_oširenje"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/hr/starmath/messages.po b/source/hr/starmath/messages.po
index 5dbc3d94159..1048558a95f 100644
--- a/source/hr/starmath/messages.po
+++ b/source/hr/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/hr/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/hr/svx/messages.po b/source/hr/svx/messages.po
index 2c8297c574f..e280497cc72 100644
--- a/source/hr/svx/messages.po
+++ b/source/hr/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/hr/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Prilagodi slajd trenutačnom prozoru."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Nije moguće učitati sve SmartArt grafike. Problem možete izbjeći spremanje u Microsoft Officeu 2010 ili novijem."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigacijska traka"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Izvještaj o rušenju je uspješno prenesen.\n"
-"Moći ćete uskoro pronaći izvještaj na:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Pošalji izvješće o rušenju"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Nemoj slati"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/hr/sw/messages.po b/source/hr/sw/messages.po
index d8ed93ab14f..1129211092f 100644
--- a/source/hr/sw/messages.po
+++ b/source/hr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/hr/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20368,181 +20368,181 @@ msgid "~File"
msgstr "~Datoteka"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Početna"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Početna"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Umetni"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Umetni"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Raspored"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Raspored"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Reference"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "~Reference"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Provjera"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Provjera"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Pogled"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Pogled"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tablica"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tablica"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Slika"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Slika"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Crtanje"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Crtanje"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Mediji"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Mediji"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Ispis"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Ispis"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ob_razac"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ob~razac"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Pr_oširenje"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Pr~oširenje"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Alati"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Alati"
@@ -21580,12 +21580,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Uredi konturu"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Pr_oširenje"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/hsb/chart2/messages.po b/source/hsb/chart2/messages.po
index a98d884b2c4..3040a84a284 100644
--- a/source/hsb/chart2/messages.po
+++ b/source/hsb/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: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-17 20:36+0000\n"
+"PO-Revision-Date: 2020-11-26 16:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/chart2messages/hsb/>\n"
"Language: hsb\n"
@@ -1728,7 +1728,7 @@ msgstr "Samsna hódnota za wobaj"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:623
msgctxt "dlg_InsertErrorBars|extended_tip|CB_SYN_POS_NEG"
msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically."
-msgstr ""
+msgstr "Zmóžńće to, zo byšće pozitiwne kaž tež negatiwne zmylkowe hódnoty wužiwał. Móžeće jenož hódnotu kašćika „Pozitiwny“ změnić. Tuta hódnota so awtomatisce do kašćika „Negatiwny“ kopěruje."
#. ogVMg
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:641
@@ -1812,7 +1812,7 @@ msgstr "_X-wóska"
#: chart2/uiconfig/ui/insertaxisdlg.ui:115
msgctxt "insertaxisdlg|extended_tip|primaryX"
msgid "Displays the X axis as a line with subdivisions."
-msgstr ""
+msgstr "Zwobraznjuje X-wósku jako liniju z poddźělenjemi."
#. XeWVu
#: chart2/uiconfig/ui/insertaxisdlg.ui:127
@@ -1824,7 +1824,7 @@ msgstr "_Y-wóska"
#: chart2/uiconfig/ui/insertaxisdlg.ui:136
msgctxt "insertaxisdlg|extended_tip|primaryY"
msgid "Displays the Y axis as a line with subdivisions."
-msgstr ""
+msgstr "Zwobraznjuje Y-wósku jako liniju z poddźělenjemi."
#. FoAXW
#: chart2/uiconfig/ui/insertaxisdlg.ui:148
@@ -1836,7 +1836,7 @@ msgstr "_Z-wóska"
#: chart2/uiconfig/ui/insertaxisdlg.ui:157
msgctxt "insertaxisdlg|extended_tip|primaryZ"
msgid "Displays the Z axis as a line with subdivisions."
-msgstr ""
+msgstr "Zwobraznjuje Z-wósku jako liniju z poddźělenjemi."
#. YZ7GG
#: chart2/uiconfig/ui/insertaxisdlg.ui:176
@@ -1854,7 +1854,7 @@ msgstr "X-_wóska"
#: chart2/uiconfig/ui/insertaxisdlg.ui:220
msgctxt "insertaxisdlg|extended_tip|secondaryX"
msgid "Displays a secondary X axis in the chart."
-msgstr ""
+msgstr "Pokazuje sekundarnu X-wósku w diagramje."
#. 598Gk
#: chart2/uiconfig/ui/insertaxisdlg.ui:232
@@ -1866,7 +1866,7 @@ msgstr "Y-wó_ska"
#: chart2/uiconfig/ui/insertaxisdlg.ui:241
msgctxt "insertaxisdlg|extended_tip|secondaryY"
msgid "The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. "
-msgstr ""
+msgstr "Hłowne a sekundarne wóski dadźa so separatnje skalować. Móžeće na přikład jednu wósku na 2 cm a druhu na 1,5 cm skalować. "
#. CAFjD
#: chart2/uiconfig/ui/insertaxisdlg.ui:253
@@ -1884,7 +1884,7 @@ msgstr "Sekundarne wóski"
#: chart2/uiconfig/ui/insertaxisdlg.ui:308
msgctxt "insertaxisdlg|extended_tip|InsertAxisDialog"
msgid "Specifies the axes to be displayed in the chart."
-msgstr ""
+msgstr "Podawa, kotre wóski maja so w daigramje pokazać."
#. 2eGKS
#: chart2/uiconfig/ui/insertgriddlg.ui:8
@@ -1902,7 +1902,7 @@ msgstr "_X-wóska"
#: chart2/uiconfig/ui/insertgriddlg.ui:115
msgctxt "insertgriddlg|extended_tip|primaryX"
msgid "Adds gridlines to the X axis of the chart."
-msgstr ""
+msgstr "Přidawa X-wósce diagrama lěsyčne linije."
#. FEBZW
#: chart2/uiconfig/ui/insertgriddlg.ui:127
@@ -1914,7 +1914,7 @@ msgstr "_Y-wóska"
#: chart2/uiconfig/ui/insertgriddlg.ui:136
msgctxt "insertgriddlg|extended_tip|primaryY"
msgid "Adds gridlines to the Y axis of the chart."
-msgstr ""
+msgstr "Přidawa Y-wósce diagrama lěsyčne linije."
#. XEXTu
#: chart2/uiconfig/ui/insertgriddlg.ui:148
@@ -1926,7 +1926,7 @@ msgstr "_Z-wóska"
#: chart2/uiconfig/ui/insertgriddlg.ui:157
msgctxt "insertgriddlg|extended_tip|primaryZ"
msgid "Adds gridlines to the Z axis of the chart."
-msgstr ""
+msgstr "Přidawa Z-wósce diagrama lěsyčne linije."
#. 9QbAA
#: chart2/uiconfig/ui/insertgriddlg.ui:176
@@ -1944,7 +1944,7 @@ msgstr "X-_wóska"
#: chart2/uiconfig/ui/insertgriddlg.ui:220
msgctxt "insertgriddlg|extended_tip|secondaryX"
msgid "Adds gridlines that subdivide the X axis into smaller sections."
-msgstr ""
+msgstr "Přidawa lěsyčne linije, kotrež X-wósku do mjeńšich wotrězkow poddźěleja."
#. PkzaY
#: chart2/uiconfig/ui/insertgriddlg.ui:232
@@ -1956,7 +1956,7 @@ msgstr "Y-wó_ska"
#: chart2/uiconfig/ui/insertgriddlg.ui:241
msgctxt "insertgriddlg|extended_tip|secondaryY"
msgid "Adds gridlines that subdivide the Y axis into smaller sections."
-msgstr ""
+msgstr "Přidawa lěsyčne linije, kotrež Y-wósku do mjeńšich wotrězkow poddźěleja."
#. CcCG8
#: chart2/uiconfig/ui/insertgriddlg.ui:253
@@ -1968,7 +1968,7 @@ msgstr "Z-wós_ka"
#: chart2/uiconfig/ui/insertgriddlg.ui:262
msgctxt "insertgriddlg|extended_tip|secondaryZ"
msgid "Adds gridlines that subdivide the Z axis into smaller sections."
-msgstr ""
+msgstr "Přidawa lěsyčne linije, kotrež Z-wósku do mjeńšich wotrězkow poddźěleja."
#. QBQD4
#: chart2/uiconfig/ui/insertgriddlg.ui:281
@@ -1980,7 +1980,7 @@ msgstr "Pomocne lěsycy"
#: chart2/uiconfig/ui/insertgriddlg.ui:313
msgctxt "insertgriddlg|extended_tip|InsertGridDialog"
msgid "You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts."
-msgstr ""
+msgstr "Z lěsyčnymi linijemi móžeće wóski do wotrězki poddźělić. Přez to móžeće lěpši přehlad diagrama dóstać, předewšěm jeli z wulkimi diagramami dźěłaće."
#. rqADt
#: chart2/uiconfig/ui/inserttitledlg.ui:8
@@ -2004,13 +2004,13 @@ msgstr "_Podtitul"
#: chart2/uiconfig/ui/inserttitledlg.ui:124
msgctxt "inserttitledlg|extended_tip|maintitle"
msgid "Enter the desired title for the chart."
-msgstr ""
+msgstr "Zapodajće požadany titul za diagram."
#. 5eiq7
#: chart2/uiconfig/ui/inserttitledlg.ui:141
msgctxt "inserttitledlg|extended_tip|subtitle"
msgid "Enter the desired subtitle for the chart."
-msgstr ""
+msgstr "Zapodajće požadany podtitul za diagram."
#. y8KiH
#: chart2/uiconfig/ui/inserttitledlg.ui:180
@@ -2034,19 +2034,19 @@ msgstr "_Z-wóska"
#: chart2/uiconfig/ui/inserttitledlg.ui:226
msgctxt "inserttitledlg|extended_tip|primaryXaxis"
msgid "Enter the desired title for the X axis of the chart."
-msgstr ""
+msgstr "Zapodajće požadany titul za X-wósku diagrama."
#. 3m5Dk
#: chart2/uiconfig/ui/inserttitledlg.ui:243
msgctxt "inserttitledlg|extended_tip|primaryYaxis"
msgid "Enter the desired title for the Y axis of the chart."
-msgstr ""
+msgstr "Zapodajće požadany titul za Y-wósku diagrama."
#. PY2EU
#: chart2/uiconfig/ui/inserttitledlg.ui:260
msgctxt "inserttitledlg|extended_tip|primaryZaxis"
msgid "Enter the desired title for the Z axis of the chart."
-msgstr ""
+msgstr "Zapodajće požadany titul za Z-wósku diagrama."
#. aHvzY
#: chart2/uiconfig/ui/inserttitledlg.ui:277
@@ -2070,13 +2070,13 @@ msgstr "Y-wó_ska"
#: chart2/uiconfig/ui/inserttitledlg.ui:345
msgctxt "inserttitledlg|extended_tip|secondaryXaxis"
msgid "Enter the desired secondary title for the X axis of the chart."
-msgstr ""
+msgstr "Zapodajće sekundarny titul za X-wósku diagrama."
#. bnwti
#: chart2/uiconfig/ui/inserttitledlg.ui:362
msgctxt "inserttitledlg|extended_tip|secondaryYaxis"
msgid "Enter the desired secondary title for the Y axis of the chart."
-msgstr ""
+msgstr "Zapodajće sekundarny titul za Y-wósku diagrama."
#. XvJwD
#: chart2/uiconfig/ui/inserttitledlg.ui:379
@@ -2088,7 +2088,7 @@ msgstr "Sekundarne wóski"
#: chart2/uiconfig/ui/inserttitledlg.ui:411
msgctxt "inserttitledlg|extended_tip|InsertTitleDialog"
msgid "Opens a dialog to enter or modify the titles in a chart."
-msgstr ""
+msgstr "Wočinja dialog, zo byšće titule do diagrama zapodał abo je změnił."
#. 23FsQ
#: chart2/uiconfig/ui/paradialog.ui:8
@@ -2658,7 +2658,7 @@ msgstr "B-spline"
#: chart2/uiconfig/ui/smoothlinesdlg.ui:136
msgctxt "smoothlinesdlg|extended_tip|SplineTypeComboBox"
msgid "Apply a line curve model."
-msgstr ""
+msgstr "Wubjerće linijowy model."
#. eecxc
#: chart2/uiconfig/ui/smoothlinesdlg.ui:171
@@ -2676,19 +2676,19 @@ msgstr "_Stopjeń polynomow:"
#: chart2/uiconfig/ui/smoothlinesdlg.ui:202
msgctxt "smoothlinesdlg|extended_tip|ResolutionSpinbutton"
msgid "Set the resolution."
-msgstr ""
+msgstr "Nastajće rozeznaće."
#. a4btg
#: chart2/uiconfig/ui/smoothlinesdlg.ui:219
msgctxt "smoothlinesdlg|extended_tip|PolynomialsSpinButton"
msgid "Set the degree of the polynomials."
-msgstr ""
+msgstr "Nastajće stopjeń polynomow."
#. YECJR
#: chart2/uiconfig/ui/smoothlinesdlg.ui:253
msgctxt "smoothlinesdlg|extended_tip|SmoothLinesDialog"
msgid "Apply a line curve model."
-msgstr ""
+msgstr "Wubjerće linijowy model."
#. RyJg5
#: chart2/uiconfig/ui/steppedlinesdlg.ui:132
@@ -2700,7 +2700,7 @@ msgstr "_Z horicontalnej liniju započeć"
#: chart2/uiconfig/ui/steppedlinesdlg.ui:142
msgctxt "steppedlinesdlg|extended_tip|step_start_rb"
msgid "Start with horizontal line and step up vertically at the end."
-msgstr ""
+msgstr "Započina so z horicontalnej liniju a postupuje wertikalnje hač do kónca."
#. iJCAt
#: chart2/uiconfig/ui/steppedlinesdlg.ui:153
@@ -2712,7 +2712,7 @@ msgstr "Schodźenk při _horicontalnym přerězku"
#: chart2/uiconfig/ui/steppedlinesdlg.ui:164
msgctxt "steppedlinesdlg|extended_tip|step_center_x_rb"
msgid "Start to step up vertically and end with horizontal line."
-msgstr ""
+msgstr "Postupuje wertikalnje a kónči so z horicontalnej liniju."
#. vtGik
#: chart2/uiconfig/ui/steppedlinesdlg.ui:175
@@ -2724,7 +2724,7 @@ msgstr "Z horicontalnej liniju _skónčić"
#: chart2/uiconfig/ui/steppedlinesdlg.ui:186
msgctxt "steppedlinesdlg|extended_tip|step_end_rb"
msgid "Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line."
-msgstr ""
+msgstr "Započina so z horicontalnej liniju, postupuje wertikalnje wosrjedź X-hódnotow a kónči so z horicontalnej liniju."
#. X3536
#: chart2/uiconfig/ui/steppedlinesdlg.ui:197
@@ -2736,7 +2736,7 @@ msgstr "Schodźenk při _wertikalnym přerězku"
#: chart2/uiconfig/ui/steppedlinesdlg.ui:208
msgctxt "steppedlinesdlg|extended_tip|step_center_y_rb"
msgid "Start to step up vertically to the middle of the Y values, draw a horizontal line and finish by stepping vertically to the end."
-msgstr ""
+msgstr "Započina so wertikalnje hač do srjedźizny Y-hódnotow, pokročuje so z horicontalnej liniju a kónči so wertikalnje na kóncu."
#. oDDMr
#: chart2/uiconfig/ui/steppedlinesdlg.ui:236
@@ -2748,7 +2748,7 @@ msgstr "Typ schodźenkow"
#: chart2/uiconfig/ui/titlerotationtabpage.ui:46
msgctxt "titlerotationtabpage|extended_tip|OrientDegree"
msgid "Allows you to manually enter the orientation angle."
-msgstr ""
+msgstr "Zmóžnja wam, wusměrjenski kut manuelnje zapodać."
#. ViJ9k
#: chart2/uiconfig/ui/titlerotationtabpage.ui:60
@@ -2766,7 +2766,7 @@ msgstr "We_rtikalnje staplowany"
#: chart2/uiconfig/ui/titlerotationtabpage.ui:105
msgctxt "titlerotationtabpage|extended_tip|stackedCB"
msgid "Assigns vertical text orientation for cell contents."
-msgstr ""
+msgstr "Připokazuje wertikalne tekstowe wusměrjenje za celowy wobsah."
#. 3BaMa
#: chart2/uiconfig/ui/titlerotationtabpage.ui:117
@@ -2784,13 +2784,13 @@ msgstr "Tek_stowy směr:"
#: chart2/uiconfig/ui/titlerotationtabpage.ui:148
msgctxt "titlerotationtabpage|extended_tip|textdirLB"
msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
-msgstr ""
+msgstr "Podajće tekstowe wusměrjenje za wotstawk, kotryž kompleksne tekstowe wuhotowanje (CTL) wužiwa. Funkcija je jenož k dispoziciji, jeli podpěra za kompleksne tekstowe wuhotowanje je zmóžnjena."
#. 9cDiw
#: chart2/uiconfig/ui/titlerotationtabpage.ui:167
msgctxt "titlerotationtabpage|extended_tip|dialCtrl"
msgid "Clicking anywhere on the wheel defines the variable text orientation."
-msgstr ""
+msgstr "Hdyž něhdźe na kolesku klikaće, so wariabelne tekstowe wusměrjenje postaja."
#. syx89
#: chart2/uiconfig/ui/titlerotationtabpage.ui:184
@@ -2826,7 +2826,7 @@ msgstr "Swójski"
#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:42
msgctxt "tp_3D_SceneAppearance|extended_tip|LB_SCHEME"
msgid "Select a scheme from the list box, or click any of the check boxes below."
-msgstr ""
+msgstr "Wubjerće šemu z lisćinoweho pola abo klikńće deleka do kontrolnych kašćikow."
#. EyGsf
#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:78
diff --git a/source/hsb/cui/messages.po b/source/hsb/cui/messages.po
index 68adf484631..9dfb169d39e 100644
--- a/source/hsb/cui/messages.po
+++ b/source/hsb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-24 12:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/hsb/>\n"
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 7bfd469da8c..4066a22ff87 100644
--- a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/hsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565003053.000000\n"
#. W5ukN
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Foliju s~chować"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~kst..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Dataja"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Wus~měrić"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Wus~měrić"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Hač ke kóncej wotstawka wubrać"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Hač ke kóncej słowa wubrać"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/hsb/sc/messages.po b/source/hsb/sc/messages.po
index 965c3317b02..7a56c971f30 100644
--- a/source/hsb/sc/messages.po
+++ b/source/hsb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/hsb/>\n"
@@ -24599,213 +24599,213 @@ msgid "~File"
msgstr "~Dataja"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Podajće ramiki wubranych celow."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Zasunjenje powjetšić"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Zasunjenje pomjeńšić"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Po_lo"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasadźić"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasadźić"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektowe wusměrjenje"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Wu_hotowanje"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "W~uhotowanje"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistika"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Daty"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Daty"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Přepruwowanje"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Přepruwowanje"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Napohlad"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Napohlad"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rysować"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rysować"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertować"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ć_išćeć"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ć~išćeć"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Ro_zšěrjenje"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšěrjenje"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nastroje"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Nastroje"
@@ -29634,338 +29634,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solwer"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Na_stajenja..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Rozrisać"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Cilowa cela"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Wuslědk optimować do"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Přez měnjenje celow"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Hódnota"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Celowy poćah"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Hó_dnota"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Celowy poćah"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Celowy poćah"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Celowy poćah"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Celowy poćah"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Cyła ličba"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binarny"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Cyła ličba"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binarny"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Cyła ličba"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binarny"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Cyła ličba"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binarny"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Hódnota"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Hódnota"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Hódnota"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Hódnota"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Wotstronić"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Wotstronić"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Wotstronić"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Wotstronić"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Pódlanske wuměnjenja"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/hsb/sd/messages.po b/source/hsb/sd/messages.po
index 7de0eebda1d..df8148969c9 100644
--- a/source/hsb/sd/messages.po
+++ b/source/hsb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-15 23:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/hsb/>\n"
@@ -3821,116 +3821,116 @@ msgstr "~Tabela"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertować"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rysować"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rysować"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Globalny dokument"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Předłoha"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ro_zšěrjenje"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšěrjenje"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nastroje"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nastroje"
@@ -4334,12 +4334,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Meni"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ro_zšěrjenje"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6571,219 +6565,219 @@ msgid "~File"
msgstr "~Dataja"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Po_lo"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasadźić"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasadźić"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "Wu_hotowanje"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "W~uhotowanje"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Prezentacija"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Prezentacija"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Přepruwowanje"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Přepruwowanje"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Napohlad"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Napohlad"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertować"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rysować"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rysować"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Globalny dokument"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Předłoha"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Napohlad"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Ro~zrjad"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ro_zšěrjenje"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšěrjenje"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nastroje"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nastroje"
@@ -7693,12 +7687,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Konturu wobdźěłać"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ro_zšěrjenje"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/hsb/sfx2/messages.po b/source/hsb/sfx2/messages.po
index 2222c9b1d20..106733e8748 100644
--- a/source/hsb/sfx2/messages.po
+++ b/source/hsb/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-10-29 14:35+0000\n"
+"PO-Revision-Date: 2020-11-25 12:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/hsb/>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559596982.000000\n"
#. bHbFE
@@ -4133,37 +4133,37 @@ msgstr "Zhašeć..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Přidokować"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Wotdokować"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Bóčnicu začinić"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Přiměrjenje"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
msgctxt "tabbar|restoredefault"
msgid "Restore Default"
-msgstr ""
+msgstr "Standard wobnowić"
#. DBWZf
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Nastajenja bóčnicy"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
diff --git a/source/hsb/starmath/messages.po b/source/hsb/starmath/messages.po
index 28578632f04..7c7f2d1fed6 100644
--- a/source/hsb/starmath/messages.po
+++ b/source/hsb/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-11-17 20:36+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-25 12:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/hsb/>\n"
"Language: hsb\n"
@@ -1485,67 +1485,67 @@ msgstr "Barba, heksadecimalna"
#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
-msgstr ""
+msgstr "Koralowa barba"
#. gPCCe
#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
-msgstr ""
+msgstr "Karminowa barba"
#. oDRbR
#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
-msgstr ""
+msgstr "Połnócnomódra barba"
#. 4aCMu
#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
-msgstr ""
+msgstr "Wioletna barba"
#. Qivdb
#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
-msgstr ""
+msgstr "Oranžowa barba"
#. CVygm
#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
-msgstr ""
+msgstr "Oranžočerjwena barba"
#. LbfRK
#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
-msgstr ""
+msgstr "Morjozelena barba"
#. DKivY
#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
-msgstr ""
+msgstr "Barba indigo"
#. TZQzN
#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
-msgstr ""
+msgstr "Barba pink"
#. GHgTB
#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
-msgstr ""
+msgstr "Lawendlowa barba"
#. HQmw7
#: starmath/inc/strings.hrc:219
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
-msgstr ""
+msgstr "Sněhowa barba"
#. A2GQ4
#: starmath/inc/strings.hrc:220
@@ -2189,11 +2189,11 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Fundamentalna sada analysisa"
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
-msgstr "Chaosowa runica"
+msgstr ""
#. afEQ8
#: starmath/inc/strings.hrc:329
@@ -2331,67 +2331,67 @@ msgstr "žołty"
#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
-msgstr ""
+msgstr "koralowy"
#. RZSh6
#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
-msgstr ""
+msgstr "karminowy"
#. QGibF
#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
-msgstr ""
+msgstr "połnócnomódry"
#. NKAkW
#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
-msgstr ""
+msgstr "wioletny"
#. sF9zc
#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
-msgstr ""
+msgstr "oranžowy"
#. CXMyK
#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
-msgstr ""
+msgstr "oranžočerwjeny"
#. Ak3yd
#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
-msgstr ""
+msgstr "lawendlowy"
#. DLUaV
#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
-msgstr ""
+msgstr "sněhobarbny"
#. QDTEU
#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
-msgstr ""
+msgstr "mórjozeleny"
#. PNveS
#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
-msgstr ""
+msgstr "indigo"
#. r5S8P
#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
-msgstr ""
+msgstr "pink"
#. NNmRT
#: starmath/inc/strings.hrc:363
diff --git a/source/hsb/svx/messages.po b/source/hsb/svx/messages.po
index 85bf1ac8faf..b098fc5c2b1 100644
--- a/source/hsb/svx/messages.po
+++ b/source/hsb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-09 12:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/hsb/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Foliju aktualnemu woknu přiměrić."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Nic wšě SmartArts dadźa so začitać. Składowanje w Microsoft Office 2010 abo w nowšim by tutón problem wobešło."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Nawigaciska lajsta"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Spadowa rozprawa je so wuspěšnje nahrała.\n"
-"Móžeće rozprawu bórze namakać na:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Zmylkowu _rozprawu pósłać"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Nje_słać"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/hsb/sw/messages.po b/source/hsb/sw/messages.po
index 69e00ba4291..71e002b7620 100644
--- a/source/hsb/sw/messages.po
+++ b/source/hsb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-11-01 16:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/hsb/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20375,181 +20375,181 @@ msgid "~File"
msgstr "~Dataja"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasadźić"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasadźić"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Wu_hotowanje"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Wuhotowanje"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referen_cy"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referen~ce"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Přepruwowanje"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Přepruwować"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Napohlad"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Napohlad"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rysować"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rysować"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ć_išćeć"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ć~išćeć"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ro_zšěrjenje"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšěrjenje"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nastroje"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Nastroje"
@@ -21587,12 +21587,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Konturu wobdźěłać"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ro_zšěrjenje"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/hu/cui/messages.po b/source/hu/cui/messages.po
index b12f1d75ae3..51080a44b2a 100644
--- a/source/hu/cui/messages.po
+++ b/source/hu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-20 07:13+0000\n"
"Last-Translator: Szép Annabella <szep.annabella@gmail.com>\n"
"Language-Team: Hungarian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/hu/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566407111.000000\n"
#. GyY9M
@@ -20900,60 +20900,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/hu/helpcontent2/source/text/sbasic/shared.po b/source/hu/helpcontent2/source/text/sbasic/shared.po
index 88ddb36f592..a3992458457 100644
--- a/source/hu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-12-12 11:03+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir utasítás\">MkDir utasítás</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Létrehoz egy új könyvtárat egy adatmédiumon."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
+msgid "Creates a new directory on a data medium."
+msgstr "Létrehoz egy új könyvtárat egy adatmédiumon."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Szöveg As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Szöveg:</emph> String (karakterlánc) kifejezés, amely megadja a létrehozandó könyvtár elérési útját és nevét. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Ha az elérési út nincs megadva, akkor a könyvtárat az aktuális könyvtárban hozza létre."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Töröl egy létező könyvtárat egy adatmédiumról."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Szöveg As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Ha az elérési út nincs megadva, akkor az <emph>RmDir utasítás</emph> az aktuális elérési úton keresi a törölni kívánt könyvtárat. Ha itt nem található, akkor egy hibaüzenet jelenik meg."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Leállítja a Basic-program futtatását."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Példa:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With utasítás\">With utasítás</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Az objektumot alapértelmezettként állítja be. Ha nincs másik objektumnév megadva, akkor az összes tulajdonság és metódus az alapértelmezett objektumra hivatkozik, amíg a program az End With utasítást el nem éri."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "A <emph>With</emph> és az <emph>End With</emph> utasítást akkor érdemes használni, ha egy objektum számos tulajdonsággal vagy metódussal rendelkezik."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Egy hangot játszik le a számítógép hangszóróján keresztül. A hang rendszerfüggő, és a hangerő, illetve a hangmagasság nem módosítható."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Példa:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/hu/helpcontent2/source/text/scalc/00.po b/source/hu/helpcontent2/source/text/scalc/00.po
index 57fe7e28fe6..71245c8bdb8 100644
--- a/source/hu/helpcontent2/source/text/scalc/00.po
+++ b/source/hu/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/hu/helpcontent2/source/text/scalc/guide.po b/source/hu/helpcontent2/source/text/scalc/guide.po
index 2e05cbc4f24..3df55d70391 100644
--- a/source/hu/helpcontent2/source/text/scalc/guide.po
+++ b/source/hu/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Ha egy területet vízszintesen és függőlegesen is rögzíteni kíván, akkor válassza ki a rögzíteni kívánt sor alatt, illetve oszloptól jobbra elhelyezkedő <emph>cellát</emph>."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Válassza a <emph>Nézet - Cellák rögzítése - Rögzítés</emph> menüparancsot."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "A kikapcsolásához válassza újra a <emph>Nézet - Cellák rögzítése - Rögzítés</emph> menüparancsot."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Ha egy adott sort a nyomtatás során a dokumentum összes oldalán meg kíván jeleníteni, akkor válassza a <item type=\"menuitem\">Formátum - Nyomtatási tartomány - Szerkesztés</item> lehetőséget."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Nézet - Cellák rögzítése - Rögzítés\">Nézet - Cellák rögzítése - Rögzítés</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
diff --git a/source/hu/helpcontent2/source/text/sdraw/01.po b/source/hu/helpcontent2/source/text/sdraw/01.po
index 9f6abca59e9..4fb15609758 100644
--- a/source/hu/helpcontent2/source/text/sdraw/01.po
+++ b/source/hu/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-06-12 11:15+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Az oldal tájolását, margóit, hátterét és egyéb, a kinézettel kapcsolatos beállításait adja meg.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Az aktív fájlban az összes oldal hátterének módosításához az <emph>Oldalbeállítás</emph> párbeszédablakon válassza ki a kívánt hátteret, majd kattintson az <emph>OK</emph>, majd az <emph>Igen</emph> gombra."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/hu/helpcontent2/source/text/shared/01.po b/source/hu/helpcontent2/source/text/shared/01.po
index 5e6f0deea50..022c4f267c4 100644
--- a/source/hu/helpcontent2/source/text/shared/01.po
+++ b/source/hu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/hu/helpcontent2/source/text/shared/guide.po b/source/hu/helpcontent2/source/text/shared/guide.po
index 2ad8a07f715..c31852eb2f2 100644
--- a/source/hu/helpcontent2/source/text/shared/guide.po
+++ b/source/hu/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Munka a %PRODUCTNAME programmal\">Munka a <item type=\"productname\">%PRODUCTNAME</item> programmal</link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Hibabejelentő eszköz"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Hibabejelentő eszköz</bookmark_value><bookmark_value>bejelentés;hibák bejelentése</bookmark_value><bookmark_value>összeomlási jelentés</bookmark_value><bookmark_value>bekapcsolás;Hibabejelentő eszköz</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Hibabejelentő eszköz\">Hibabejelentő eszköz</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "A Hibabejelentő eszköz automatikusan elindul a program összeomlása után."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "A Hibajelentő eszköz begyűjti azon szükséges információkat, amelyek a programfejlesztők segítségére lehetnek a kód javításában, hogy a későbbi verziókban ez a hiba ne fordulhasson elő. Segítse a szoftverfejlesztők munkáját, és továbbítsa nekik a generált hibajelentést."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "A hibabejelentő segédeszköz indítása"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "A legtöbb programösszeomlás után automatikusan elindul a Hibabejelentő eszköz."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Jelentés befejezése"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "A fő Hibajelentő eszköz párbeszédablakban beírhat további információkat, amelyek segítenek a fejlesztőknek a hiba azonosításában. Ha például a hiba csak akkor jelentkezik, miután megváltoztatta a hardver- vagy szoftverkörnyezetet, vagy ha rákattintott egy bizonyos gombra, akkor mellékelje ezeket az információkat is."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Hibajelentés elküldése"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "A Hibajelentő eszköz a HTTP PUT / SOAP protokollt használja a hibajelentési adatok elküldésére. Megadhat további leírószöveget is, amely segítségünkre lehet a programösszeomlás kontextusának megállapításában. Végül kattintson a <emph>Küldés</emph> gombra."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Hibajelentésére nem fog választ kapni. Ha támogatást igényel, akkor látogassa meg az internetes <link href=\"text/shared/main0108.xhp\">támogatási fórumot</link>."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Milyen adatok lesznek elküldve?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "A hibajelentés több fájlból áll. A fő fájl a hiba típusával, az operációs rendszerrel és annak változatával, valamint a memóriahasználattal kapcsolatos információkat, továbbá az Ön által megadott leírást tartalmazza. A Hibajelentő eszköz fő párbeszédablakának <emph>Jelentés megjelenítése</emph> gombjára kattintva megtekintheti, hogy mi lesz elküldve a fő fájlban."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "A rendszer szabványos eszközei (Windows rendszereken \"dbhhelp.dll\", UNIX rendszereken \"pstack\") lényeges memóriatartalmakat és veremnyomokat gyűjtenek be. Ezek az információk is továbbításra kerülnek."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Ne felejtsen el külön nyomtatási feladatot létrehozni minden faxhoz, ellenkező esetben az első címzett kapja meg az összes faxot. Az <emph>Eszközök - Körlevél</emph> párbeszédablakban válassza ki a <emph>Nyomtató</emph> lehetőséget, majd jelölje be az <emph>Önálló nyomtatási feladatok</emph> jelölőnégyzetet."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Alapértelmezett sablonok módosítása"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>módosítás, lásd változtatás</bookmark_value><bookmark_value>változtatás, lásd még szerkesztés és csere</bookmark_value><bookmark_value>alapértelmezett sablonok; változtatás</bookmark_value><bookmark_value>alapértelmezések;dokumentumok</bookmark_value><bookmark_value>egyedi sablonok</bookmark_value><bookmark_value>frissítés; sablonok</bookmark_value><bookmark_value>szerkesztés;sablonok</bookmark_value><bookmark_value>sablonok;szerkesztés és mentés</bookmark_value><bookmark_value>mentés;sablonok</bookmark_value><bookmark_value>alapállapotba állítás;sablonok</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Alapértelmezett sablonok módosítása\">Alapértelmezett sablonok módosítása</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Ha a <emph>Fájl - Új</emph> menüparanccsal nyit meg egy új dokumentumot, akkor megjelenik egy üres dokumentum a $[officename] sablon alapján. Ezt a sablont szerkesztheti, módosíthatja vagy lecserélheti, hogy az új dokumentum az egyéni stílusokat vagy más tartalmat tartalmazzon."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Alapértelmezett sablonok módosítása"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Először nyisson meg egy meglévő $[officename]-sablont és módosítsa, vagy nyisson meg egy új dokumentumot, és szükség szerint szerkessze a kívánt sablon létrehozásához."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Minden $[officename]-modulhoz megadhat dokumentumsablont. Az alábbiakban a szöveges dokumentum esetét ismertetjük."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Válassza a <emph>Fájl - Új - Sablonok</emph> menüpontot."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Kattintson duplán a <emph>Saját sablonok</emph> elemre a listában. Megjelennek <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>a %PRODUCTNAME - Beállítások</emph></caseinline><defaultinline><emph>az Eszközök- Beállítások</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Útvonalak</emph> alatt megadott felhasználói könyvtárban lévő sablonok. Válassza ki az imént elmentett sablont."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Válassza a <emph>Beállítás alapértelmezettként</emph> lehetőséget. Ha ezután megnyit egy új szöveges dokumentumot, akkor ez az új alapértelmezett sablonra fog épülni."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. GuEWL
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Egyéni sablonok használata"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. Quf5G
+#. 3w93A
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id51605476162735\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "A saját egyéni sablonok használatával számos módon teheti egyszerűbbé a munkáját."
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. S8XFP
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Sablonok a Sablon mappában"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "A sablon szerkesztésre megnyitásához válassza a <emph>Fájl - Új - Sablonok</emph> menüpontot, jelölje ki a sablont, majd nyomja meg a <emph>Szerkesztés</emph> gombot."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/hu/helpcontent2/source/text/shared/optionen.po b/source/hu/helpcontent2/source/text/shared/optionen.po
index 08a99335a13..ffb173dc0be 100644
--- a/source/hu/helpcontent2/source/text/shared/optionen.po
+++ b/source/hu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <openscope at gmail dot com>\n"
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "Nézet"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>nézetek; alapértelmezések</bookmark_value> <bookmark_value>alapértelmezések; nézetek</bookmark_value> <bookmark_value>beállítások; nézetek</bookmark_value> <bookmark_value>ikonméretek</bookmark_value> <bookmark_value>ikonstílusok</bookmark_value> <bookmark_value>WYSIWYG a betűkészletek listáiban</bookmark_value> <bookmark_value>előnézetek; betűkészletek listái</bookmark_value> <bookmark_value>betűkészletlista</bookmark_value> <bookmark_value>betűkészletnevek</bookmark_value> <bookmark_value>egér; pozicionálás</bookmark_value> <bookmark_value>vágólap; kijelölési vágólap</bookmark_value> <bookmark_value>kijelölési vágólap</bookmark_value><bookmark_value>OpenGL;beállítások</bookmark_value> <bookmark_value>OpenGL;feketelista</bookmark_value> <bookmark_value>OpenGL;fehérlista</bookmark_value> <bookmark_value>OpenGL;grafikus kimenet</bookmark_value> <bookmark_value>szalag;ikonméret</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Megadja a nézet beállításait."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Felhasználói felület"
+msgid "Icon style"
+msgstr "Ikonstílus"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Eszköztárikonok mérete"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Megadja az ikonstílust az eszköztárakon és párbeszédablakokban megjelenő ikonokhoz.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Oldalsáv ikonmérete"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Megadja az oldalsáv ikonjainak megjelenési méretét.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Szalag ikonmérete"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Megadja a <link href=\"text/shared/01/notebook_bar.xhp\">szalag</link> ikonjainak megjelenési méretét.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Ikonstílus"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Megadja az ikonstílust az eszköztárakon és párbeszédablakokban megjelenő ikonokhoz.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Megadja az oldalsáv ikonjainak megjelenési méretét.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Betűk élsimítása a képernyőn"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Jelölje be a szöveg képernyőn való megjelenésének simává tételéhez.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Adja meg a legkisebb betűméretet, amelyre alkalmazni kell az élsimítást.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Megjeleníti az ikonokat a megfelelő menüparancsok mellett. A választási lehetőségek: Automatikus, Elrejtés, Megjelenítés. Az „Automatikus” a rendszer beállítása és témája szerint jeleníti meg az ikonokat.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Egér"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Egérpozicionálás"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Megadja, hová kerüljön az egérmutató az újonnan megnyílt párbeszédablakokon.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Középső egérgomb"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "A legutóbbi itteni kijelölés lesz a kijelölési vágólap tartalma."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Grafikus kimenet"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Nyomja meg a Shift+Ctrl+R billentyűkombinációt az aktuális dokumentum nézetének frissítéséhez.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Nyomja meg a Shift+Ctrl+R billentyűkombinációt az aktuális dokumentum nézetének frissítéséhez.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,68 +3805,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Ha támogatott, engedélyezheti és letilthatja a képek élsimítását. Ha az élsimítás engedélyezett, a legtöbb grafikai objektum megjelenítése simábbnak és kevesebb hibát tartalmazónak tűnik.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "OpenGL használata mindenhez (újraindításkor)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">A nagy teljesítményű <link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link> programkönyvtár használata az alkalmazás minden vizuális elemének megjelenítésére, beleértve az ablakokat, menüket, eszköztárakat és ikonokat.</ahelp> Az OpenGL a számítógép grafikus eszközét használja a grafikai megjelenítés gyorsítására. Ha az eszköz feketelistán van (lásd alább), akkor ez a beállítás nem lesz hatásos."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "OpenGL kényszerítése, még ha feketelistán is van (újraindításkor)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Az OpenGL használatának kikényszerítése, még ha a grafikus eszköz fekete listán is van.</ahelp> Az eszköz akkor kerülhet fekete listára, ha az illesztőprogramja hibás vagy gyenge minőségben jeleníti meg a grafikát."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menü"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Ikonok a menükben"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Megjeleníti az ikonokat a megfelelő menüparancsok mellett. A választási lehetőségek: Automatikus, Elrejtés, Megjelenítés. Az „Automatikus” a rendszer beállítása és témája szerint jeleníti meg az ikonokat.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">A kiválasztható betűkészletek nevét a megfelelő betűkészlettel jeleníti meg például a Betűkészlet mezőben a <emph>Formázás</emph> eszköztáron.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Betűk élsimítása a képernyőn"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Jelölje be a szöveg képernyőn való megjelenésének simává tételéhez.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Adja meg a legkisebb betűméretet, amelyre alkalmazni kell az élsimítást.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/swriter/guide.po b/source/hu/helpcontent2/source/text/swriter/guide.po
index b5150fd0309..5627c1e8f48 100644
--- a/source/hu/helpcontent2/source/text/swriter/guide.po
+++ b/source/hu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Hacsak nem állítja be másképp, minden új $[officename]-szövegesdokumentum az alapértelmezett sablon alapján jön létre."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "A $[officename] számos <link href=\"text/swriter/01/05130000.xhp\" name=\"előre megadott sablont\">előre megadott sablont</link> tartalmaz, amelyeket különböző dokumentumok, például üzleti levelek létrehozásához használhat."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "A közvetlen kurzor viselkedésének beállításához válassza <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>a %PRODUCTNAME - Beállítások</emph></caseinline><defaultinline><emph>az Eszközök - Beállítások</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formázási segédletek</emph> lehetőséget."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Az <item type=\"menuitem\">Eszközök</item> eszköztáron kattintson a <item type=\"menuitem\">Közvetlen kurzor</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Ikon</alt></image> ikonra."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Kattintson a szöveges dokumentum egy üres területére. Az egérmutató a beírt szövegre vonatkozó igazításnak megfelelően változik:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Ikon</alt></image> Balra igazítás"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Ikon</alt></image> Középre igazítás"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Ikon</alt></image> Jobbra igazítás"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
index d489576634b..e431468ed75 100644
--- a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-03 11:56+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/hu/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Dia ~elrejtése"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Szöveg..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Fájl"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~Igazítás"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~Igazítás"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Kijelölés bekezdés végéig"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Jobb oldali szó kijelölése"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/hu/sc/messages.po b/source/hu/sc/messages.po
index b9b93659052..1f05b219f4c 100644
--- a/source/hu/sc/messages.po
+++ b/source/hu/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-07-14 10:25+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24591,213 +24591,213 @@ msgid "~File"
msgstr "~Fájl"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Adja meg a kijelölt cellák szegélyeit."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Behúzás növelése"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Behúzás csökkentése"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Kezdő"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Me_ző"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Beszúrás"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Beszúrás"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektumigazítás"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Elrendezés"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Adatok"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Adatok"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Véleményezés"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Véleményezés"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Nézet"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Nézet"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ké~p"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rajz"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rajz"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Átalakítás"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objektum"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Méd_ia"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Nyomtatás"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Nyomtatás"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ű~rlap"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ű~rlap"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eszközök"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29627,338 +29627,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Megoldó"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "B_eállítások..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "M_egoldás"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Célcella"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Eredmény optimalizálása"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Cellák mód_osításával"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maximum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "É_rték:"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Cella_hivatkozás"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operátor"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Ér_ték"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Cellahivatkozás"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Cellahivatkozás"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Cellahivatkozás"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Cellahivatkozás"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Egész szám"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Bináris"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operátor"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Egész szám"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Bináris"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operátor"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Egész szám"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Bináris"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operátor"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Egész szám"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Bináris"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operátor"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Érték"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Érték"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Érték"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Érték"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Eltávolítás"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Eltávolítás"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Eltávolítás"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Eltávolítás"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Korlátozó feltételek"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/hu/sd/messages.po b/source/hu/sd/messages.po
index 0afe181bc32..4d835db9105 100644
--- a/source/hu/sd/messages.po
+++ b/source/hu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-02 07:43+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/hu/>\n"
@@ -3822,116 +3822,116 @@ msgstr "~Táblázat"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Átalakítás"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "~Kép"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ké~p"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rajz"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rajz"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektum"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektum"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Méd_ia"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ű_rlap"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ű~rlap"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Sablon"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Sablo~n"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ki_terjesztés"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ki~terjesztés"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eszközök"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eszközök"
@@ -4335,12 +4335,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menü"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ki_terjesztés"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6573,219 +6567,219 @@ msgid "~File"
msgstr "~Fájl"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Kezdő"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Kezdő"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Me_ző"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Beszúrás"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Beszúrás"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Elrendezés"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Elrendezés"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Diavetíté_s"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Bem~utató"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Véleményezés"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Véleményezés"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Nézet"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Nézet"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táblázat"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táblázat"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konvertálás"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Kép"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ké~p"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rajz"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rajz"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektum"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektum"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Méd_ia"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ű_rlap"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ű~rlap"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Sablon"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Sablo~n"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Nézet"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Vázlat"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ki_terjesztés"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Ki~terjesztés"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eszközök"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eszközök"
@@ -7695,12 +7689,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Körvonal szerkesztése"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Ki_terjesztés"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/hu/starmath/messages.po b/source/hu/starmath/messages.po
index 7103b663f83..aac6b7467ab 100644
--- a/source/hu/starmath/messages.po
+++ b/source/hu/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-02 07:43+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/hu/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/hu/svx/messages.po b/source/hu/svx/messages.po
index 35a78866c88..efaa5b97721 100644
--- a/source/hu/svx/messages.po
+++ b/source/hu/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Hungarian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/hu/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Dia aktuális ablakhoz igazítása."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Nem lehet betölteni minden SmartArtot. Ez elkerülhető a Microsoft Office 2010 vagy újabb használatával való mentéssel."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigációs eszköztár"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"A hibajelentés sikeresen feltöltve.\n"
-"Hamarosan elérheti a következő címen:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,10 +13991,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Hibajelentés küldése"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/hu/sw/messages.po b/source/hu/sw/messages.po
index 4a962cf673a..9dd378ac4a0 100644
--- a/source/hu/sw/messages.po
+++ b/source/hu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-11-03 11:56+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/hu/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20365,181 +20365,181 @@ msgid "~File"
msgstr "~Fájl"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Kezdő"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Kezdő"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Beszúrás"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Beszúrás"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Elren_dezés"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Elrendezés"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Hivatkozások"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Hi~vatkozások"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Véleményezés"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Véleményezés"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Nézet"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Nézet"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táblázat"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táblázat"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "~Kép"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ké~p"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rajz"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rajz"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "~Objektum"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektum"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Méd_ia"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Nyomtatás"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Nyomtatás"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ű_rlap"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ű~rlap"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eszközök"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Eszközök"
@@ -21577,12 +21577,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Körvonal szerkesztése"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/id/cui/messages.po b/source/id/cui/messages.po
index ebed65ca2ea..626be841ab9 100644
--- a/source/id/cui/messages.po
+++ b/source/id/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-06 09:30+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/id/>\n"
@@ -20941,60 +20941,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/id/helpcontent2/source/text/sbasic/shared.po b/source/id/helpcontent2/source/text/sbasic/shared.po
index 46f7b5a7127..987f59900b2 100644
--- a/source/id/helpcontent2/source/text/sbasic/shared.po
+++ b/source/id/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-04-02 15:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/id/>\n"
@@ -12816,50 +12816,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">Pernyataan MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Membuat direktori baru pada media data."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
+msgid "Creates a new directory on a data medium."
+msgstr "Membuat direktori baru pada media data."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Teks As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Teks:</emph> Apapun ekspresi string yang menentukan nama dan jalur direktori yang akan dibuat. Anda juga bisa menggunakan <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>"
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12870,15 +12861,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Jika jalur tidak ditentukan, direktori dibuat di direktori saat ini."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Contoh:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13140,14 +13122,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Menghapus direktori dari media data."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13158,15 +13140,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Teks As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13185,15 +13158,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Jika jalur tidak ditentukan, <emph>Pernyataan RmDir</emph> mencari direktori yang ingin Anda hapus di jalur saat ini. Jika tidak ditemukan di sana, pesan kesalahan muncul."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Contoh:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24607,23 +24571,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Menghentikan eksekusi program Dasar."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Contoh:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24859,41 +24814,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">Pernyataan With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Menetapkan objek sebagai objek bawaan. Kecuali jika nama objek lain dideklarasikan, semua properti dan metode merujuk ke objek bawaan sampai pernyataan End With tercapai."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Gunakan <emph>With</emph> dan <emph>End With</emph> jika Anda memiliki beberapa properti atau metode untuk satu objek."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34105,23 +34069,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Memainkan nada melalui speaker komputer. Nada bergantung pada sistem dan Anda tidak dapat mengubah volume atau nada."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Contoh:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/id/helpcontent2/source/text/scalc/00.po b/source/id/helpcontent2/source/text/scalc/00.po
index 6de0dc41f30..65673917fc6 100644
--- a/source/id/helpcontent2/source/text/scalc/00.po
+++ b/source/id/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-04-18 12:21+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/id/>\n"
@@ -1189,14 +1189,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Pilih ><item type=\"menuitem\">Tampilan - Belah Jendela</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Pilih <item type=\"menuitem\">Tampilan - Bekukan Sel - Bekukan Baris dan Kolom</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/id/helpcontent2/source/text/scalc/guide.po b/source/id/helpcontent2/source/text/scalc/guide.po
index 6899b3f5467..9ee65721148 100644
--- a/source/id/helpcontent2/source/text/scalc/guide.po
+++ b/source/id/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-04-02 15:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/id/>\n"
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Untuk membekukan baik secara horizontal maupun vertikal, pilih <emph> Sel </emph> yang berada di bawah baris dan di sebelah kanan kolom yang ingin dibekukan."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Pilih <item type=\"menuitem\"> Tampil - Bekukan Sel - Bekukan Baris dan Kolom</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Untuk menonaktifkan, pilih <item type=\"menuitem\">Tampil - Bekukan Sel - Bekukan Baris dan Kolom</item> lagi."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Jika Anda ingin mencetak baris tertentu pada semua halaman dokumen, pilih <item type=\"menuitem\"> Format - Cetak jarak - Sunting</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Tampilan - Membekukan Sel - Membekukan Baris dan Kolom</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
diff --git a/source/id/helpcontent2/source/text/sdraw/01.po b/source/id/helpcontent2/source/text/sdraw/01.po
index 97d6c509635..5082357f6c9 100644
--- a/source/id/helpcontent2/source/text/sdraw/01.po
+++ b/source/id/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-03-29 19:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/id/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Atur orientasi halaman, margin halaman, latar belakang dan opsi tata letak lainnya.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Untuk merubah latar belakang seluruh halaman pada berkas aktif, pilih sebuah latar belakang, klik <emph>OK</emph> dan klik <emph>Ya</emph> pada dialog <emph>Pengaturan Halaman</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/id/helpcontent2/source/text/shared/01.po b/source/id/helpcontent2/source/text/shared/01.po
index a1518c93ff5..4e9a94ff9b5 100644
--- a/source/id/helpcontent2/source/text/shared/01.po
+++ b/source/id/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libo 4.3 help shared/01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-04-04 18:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/id/>\n"
@@ -8000,14 +8000,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "Karakter yang diwakili oleh kode Unicode heksadesimal delapan digit (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "Untuk fonta simbol tertentu kode Unicode untuk karakter khusus mungkin tergantung pada fonta yang digunakan. Kode Unicode dapat dilihat dengan memilih <menuitem>Sisipkan - Karakter Khusus</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
diff --git a/source/id/helpcontent2/source/text/shared/guide.po b/source/id/helpcontent2/source/text/shared/guide.po
index 3f410e7bdaf..f6fd5e1a5cb 100644
--- a/source/id/helpcontent2/source/text/shared/guide.po
+++ b/source/id/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-04-23 09:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/id/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Bekerja dengan %PRODUCTNAME\">Bekerja dengan <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "HTML Document"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10722,149 +10452,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Alat Laporan Kesalahan"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Alat Laporan Kesalahan</bookmark_value> <bookmark_value>laporan; laporan kesalahan</bookmark_value> <bookmark_value>rusak laporan</bookmark_value> <bookmark_value>mengaktifkan; Alat Laporan Kesalahan</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Alat Laporan Kesalahan</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Alat Laporan Kesalahan dimulai secara otomatis ketika terjadi kesalahan program."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Alat Laporan Kesalahan mengumpulkan semua informasi yang diperlukan yang dapat membantu pengembang program untuk meningkatkan kode, sehingga dalam versi selanjutnya kesalahan ini dapat dihindari. Tolong bantu kami untuk meningkatkan perangkat lunak dan mengirim laporan kesalahan yang dihasilkan."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Mulai Alat Laporan Kesalahan"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Dengan sebagian besar program macet, Alat Laporan Kesalahan akan mulai secara otomatis."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Menyelesaikan Laporan"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Pada dialog alat Laporan Kesalahan utama, anda dapat memasukkan beberapa informasi tambahan yang dapat membantu pengembang untuk melokalisasi kesalahan. Misalnya, jika kesalahan hanya muncul setelah perubahan di lingkungan perangkat keras atau perangkat lunak anda, atau jika anda mengklik tombol, harap sertakan informasi itu."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Mengirim Laporan Kesalahan"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Alat Laporan Kesalahan menggunakan protokol HTTP PUT / SOAP untuk mengirim data laporan. Anda dapat secara opsional memasukkan beberapa teks deskriptif yang akan membantu kami mengidentifikasi konteks bentrok program. Kemudian klik <emph>Kirim</emph>tombol."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Anda tidak akan mendapatkan sebuah jawaban untuk laporan kesalahan anda. Jika anda membutuhkan dukungan, mohon kunjungi <link href=\"text/shared/main0108.xhp\">forum dukungan</link> di internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Data apa yang dikirim?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Sebuah laporan kesalahan terdiri dari beberapa berkas. Berkas utama berisi informasi tentang jenis kesalahan, nama sistem operasi dan versi, penggunaan memori, dan keterangan yang anda masukkan. Anda dapat mengklik tombol <emph>Tunjukkan Laporan</emph> di dialog utama dari Perkakas Laporan Kesalahan untuk melihat apa yang akan dikirim dalam berkas utama."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Selain itu, isi memori yang relevan dan jejak tumpukan dikumpulkan oleh beberapa alat standar sistem (\"dbhhelp.dll\" pada sistem Windows, \"pstack\" pada sistem UNIX). Informasi ini akan dikirim juga."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22091,32 +21812,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Ingatlah untuk membuat satu pekerjaan cetak terpisah untuk setiap faks, jika tidak, penerima pertama akan menerima semua faks. dalam <emph>Perkakas - Gabungan mail</emph> pilih dialog <emph>Printer</emph> opsi dan pilihlah <emph>Pekerjaan cetak tunggal</emph>kotak di centang."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Mengubah Templat Default"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>memodifikasi, lihat perubahan</bookmark_value><bookmark_value>mengubah, lihat juga mengedit dan mengganti</bookmark_value><bookmark_value>bawaan templat;perubahan</bookmark_value><bookmark_value>bawaan;dokumen</bookmark_value><bookmark_value>ubahan templat</bookmark_value><bookmark_value>pemutakhiran;templat</bookmark_value><bookmark_value>mengubah;templat</bookmark_value><bookmark_value>templat;mengubah dan menyimpan</bookmark_value><bookmark_value>menyimpan;templat</bookmark_value><bookmark_value>mengatur ulang;templat</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Mengubah Templat Default</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22127,113 +21848,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Ketika anda membuka dokumen baru dengan <emph>Berkas - Baru</emph>, dokumen kosong muncul berdasarkan $[officename] templat. Anda dapat mengedit, memodifikasi, atau mengganti templat ini sehingga dokumen baru berisi gaya anda yang disesuaikan atau konten lainnya."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Memodifikasi Templat Default"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Pertama, buka salah satu yang sudah ada $[officename] templat dan modifikasi, atau buka dokumen baru dan edit seperlunya untuk membuat templat yang diinginkan."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Anda dapat menentukan templat dokumen untuk masing-masing $[officename] modul. Berikut ini menjelaskan cara melanjutkan untuk dokumen teks."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Simpan dokumen dengan memilih <emph>Berkas - Templat - Simpan Sebagai Templat</emph> dan menyimpan dokumen di <emph>Template saya</emph> kategori."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Memilih <emph>Berkas - Baru - Templat</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Klik-dua kali<emph> Templat Anda</emph> didalam daftar. Anda akan melihat templat yang ditentukan pengguna di direktori pengguna yang ditentukan di bawah <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferensi</emph></caseinline><defaultinline><emph>Perkakas - Opsi</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Bilah</emph>. Pilih templat yang anda mau simpan."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Memilih <emph> Aturan bawaan</emph>. Lain kali Anda membuka dokumen teks baru, dokumen baru akan didasarkan pada templat default baru."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Menggunakan Template Kustom"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "Ada beberapa cara untuk membuat pekerjaan Anda lebih mudah dengan menggunakan templat kustom Anda sendiri."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Templat di Folder Templat"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "Anda dapat menyimpan templat baru dengan <emph>Berkas - Templat - Simpan Sebagai Templat</emph> atau dengan memilih jenis berkas \"Templat\" dalam dialog Simpan apa pun. Simpan template di direktori pengguna yang ditentukan di bawah <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferensi</emph></caseinline><defaultinline><emph>Perkakas - Opsi</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Jalur</emph> untuk dapat mengakses templat dari dalam <emph>Berkas - Baru - Templat</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Untuk membuka templat untuk diedit, pilih <emph>Berkas - Baru - Templat</emph>, pilih templat dan klik <emph>Ubah</emph> tombol."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24269,14 +24116,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Lihat <link href=\"text/swriter/guide/templates_styles.xhp\">Templat dan Gaya</link> untuk informasi terkait."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Lihat <link href=\"text/swriter/guide/template_create.xhp\">Membuat Templat Dokumen</link> untuk informasi terkait."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/id/helpcontent2/source/text/shared/optionen.po b/source/id/helpcontent2/source/text/shared/optionen.po
index cb9f95df4ef..67614170097 100644
--- a/source/id/helpcontent2/source/text/shared/optionen.po
+++ b/source/id/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-04-04 18:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/id/>\n"
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "Tampilan"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>tampilan; bawaan</bookmark_value> <bookmark_value>bawaan; tampilan</bookmark_value> <bookmark_value>pengaturan; tampilan</bookmark_value> <bookmark_value>ikon; ukuran</bookmark_value> <bookmark_value>ikon; gaya</bookmark_value> <bookmark_value>WYSIWYG di daftar fon</bookmark_value> <bookmark_value>pratinjau; daftar fon</bookmark_value> <bookmark_value>daftar fon</bookmark_value> <bookmark_value>kotak nama fon</bookmark_value> <bookmark_value>tetikus; posisi</bookmark_value> <bookmark_value>papan klip; pilih papan klip</bookmark_value> <bookmark_value>pilih papan klip</bookmark_value> <bookmark_value>OpenGL;pengaturan</bookmark_value> <bookmark_value>OpenGL;daftar hitam</bookmark_value> <bookmark_value>OpenGL;daftar putih</bookmark_value> <bookmark_value>OpenGL;keluaran grafis</bookmark_value> <bookmark_value>bilah catatan buku;ukuran ikon</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "Menentukan opsi tampilan."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr " Antar muka Pengguna"
+msgid "Icon style"
+msgstr "Gaya ikon"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "ukuran ikon Bilah Alat"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Menentukan gaya ikon untuk ikon di bilah alat dan dialog.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Menentukan ukuran layar bilah alat ikon.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">Itu<emph>Otomatis</emph> pilihan menggunakan pengaturan ukuran font sistem operasi Anda untuk menu.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Ukuran ikon bilah sisi"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Menentukan ukuran tampilan ikon bilah sisi.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Ukuran ikon buku catatan"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of<link href=\"text/shared/01/notebook_bar.xhp\"> bilah buku catatan</link>ikon.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Gaya ikon"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Menentukan gaya ikon untuk ikon di bilah alat dan dialog.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Menentukan ukuran tampilan ikon bilah sisi.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "fon layar antigerigi"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Pilih untuk memperhalus tampilan layar teks.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Masukkan ukuran font terkecil untuk menerapkan antigerigi.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Menampilkan ikon di sebelah item menu yang sesuai. Pilih dari \"Otomatis\", \"Sembunyikan\" dan \"Tampilkan\". \"Otomatis\" menampilkan ikon sesuai dengan pengaturan sistem dan tema.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Tetikus"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Posisi tetikus"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Menentukan apakah dan bagaimana penunjuk tetikus akan diposisikan di dialog yang baru dibuka.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Tombol tengah tetikus"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "Pilihan yang terakhir ditandai adalah konten papan klip pilihan."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Keluaran grafis"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Tekan Shift + Ctrl + R untuk mengembalikan atau menyegarkan tampilan dokumen saat ini.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Tekan Shift + Ctrl + R untuk mengembalikan atau menyegarkan tampilan dokumen saat ini.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,68 +3805,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Ketika didukung, Anda dapat mengaktifkan dan menonaktifkan anti-aliasing grafis. Dengan anti-aliasing diaktifkan, tampilan sebagian besar objek grafis terlihat lebih halus dan dengan artefak yang lebih sedikit.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Pakai OpenGL untuk semua perenderan (saat start ulang)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Menggunakan kinerja tinggi pustaka grafik terbuka<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link> untuk membuat semua unsur-unsur tampilan dari aplikasi, termasuk windows, Menu, ikon, dan Bilah alat.</ahelp> OpenGL menggunakan perangkat komputer grafis untuk mempercepat membuat grafis. Jika perangkat masuk daftar hitam (lihat di bawah) opsi ini tidak akan efektif."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Paksakan OpenGL bahkan bila masuk daftar hitam (saat start ulang)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Memaksa penggunaan OpenGL meskipun perangkat grafis masuk daftar hitam.</ahelp> Sebuah perangkat masuk daftar hitam ketika itu permasalahan atau mungkin membuat grafik dengan kualitas yang buruk."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menu"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Ikon pada menu"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Menampilkan ikon di sebelah item menu yang sesuai. Pilih dari \"Otomatis\", \"Sembunyikan\" dan \"Tampilkan\". \"Otomatis\" menampilkan ikon sesuai dengan pengaturan sistem dan tema.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Menampilkan nama-nama fon yang dapat dipilih dalam fon yang sesuai, misalnya, fon di kotak Fon pada <emph>Pemformattan</emph> bilah.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "fon layar antigerigi"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Pilih untuk memperhalus tampilan layar teks.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Masukkan ukuran font terkecil untuk menerapkan antigerigi.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/swriter/guide.po b/source/id/helpcontent2/source/text/swriter/guide.po
index db164138d24..e5827d7adab 100644
--- a/source/id/helpcontent2/source/text/swriter/guide.po
+++ b/source/id/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-04-04 18:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/id/>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16910,14 +16892,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Setiap dokumen teks $[officename] baru didasarkan pada templat default, kecuali Anda menentukan sebaliknya."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] memiliki nomor <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">templat yang telah ditentukan</link> yang dapat Anda gunakan untuk membuat tipe yang berbeda atau dokumen teks, seperti surat bisnis."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17270,14 +17252,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Untuk mengatur tingkah laku kursor langsung, pilih <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferensi</emph></caseinline><defaultinline><emph>Alat - Pilihan</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Alat Bantu Pemformatan</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Pada bilah <item type=\"menuitem\">Alat</item> , klik pada ikon <item type=\"menuitem\">Kursor Langsung</item><image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Ikon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17288,32 +17270,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Klik ruang kosong pada dokumen teks. Pointer tetikus berubah untuk mencerminkan perataan yang akan diterapkan pada teks yang Anda ketikkan:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Ikon</alt></image> Rata kiri"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Ikon</alt></image> Tengahkan"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Ikon</alt></image> Rata kanan"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
index 9ad0cb64596..9ffed2c8746 100644
--- a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-01 16:35+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/id/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Semb~unyikan Salindia"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~ks..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Berkas"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Rataka~n"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Rataka~n"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Pilih ke Akhir Paragraf"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Pilih ke Kanan Kata"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/id/sc/messages.po b/source/id/sc/messages.po
index 834be89f841..460e19537e1 100644
--- a/source/id/sc/messages.po
+++ b/source/id/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/id/>\n"
@@ -24593,213 +24593,213 @@ msgid "~File"
msgstr "~File"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Tentukan batas dari sel yang dipilih."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "kata terkait"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Kurangi Indentasi"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Beranda"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Beranda"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Ruas"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "S_isip"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insert"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Ratakan Objek"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Tata _Letak"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Tata letak"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistik"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "P_ratinjau"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Tinjauan"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Ta_mpilan"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Tilik"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Cit_ra"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Citra"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Gambar"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Menggambar"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konversi"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objek"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Media"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Cetak"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Cetak"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_kstensi"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~kstensi"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_t"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ala~t"
@@ -29629,338 +29629,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Solver"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_psi..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Pecahkan"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Sel _target"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimalkan hasil jadi"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Dengan mengu_bah sel"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maksimal"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "Nilai _dari"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "A_cuan sel"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Nil_ai"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Acuan sel"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Acuan sel"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Acuan sel"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Acuan sel"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Integer"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Biner"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Integer"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Biner"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Integer"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Biner"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Integer"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Biner"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Nilai"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Nilai"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Nilai"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Nilai"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Buang"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Buang"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Buang"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Buang"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Kondisi Yang Membatasi"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/id/sd/messages.po b/source/id/sd/messages.po
index 36806dff7a7..9c703ea6dd4 100644
--- a/source/id/sd/messages.po
+++ b/source/id/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-14 12:34+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/id/>\n"
@@ -3823,116 +3823,116 @@ msgstr "~Tabel"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konversi"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Cit_ra"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Cit~ra"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Gambar"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Gambar"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obyek"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obyek"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulir"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Form~ulir"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Induk"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Induk"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_kstensi"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~kstensi"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_t"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Perkakas"
@@ -4336,12 +4336,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menu"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_kstensi"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6574,219 +6568,219 @@ msgid "~File"
msgstr "~Berkas"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Beranda"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Beranda"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Ruas"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "S_isip"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Sisip"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "Tata _Letak"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Tata ~Letak"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pertunjukan _Salindia"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Tampilkan Salindia"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Tinjau"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Tinjau"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Tilik"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Tampilan"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konversi"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Cit_ra"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Cit~ra"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Gambar"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Gambar"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obyek"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obyek"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulir"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulir"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Induk"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Induk"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Tilik"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Kerangk~a"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_kstensi"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~kstensi"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_t"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Perkakas"
@@ -7696,12 +7690,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Sunting Kontur"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_kstensi"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/id/starmath/messages.po b/source/id/starmath/messages.po
index 97ae0b02d50..98c726c98cd 100644
--- a/source/id/starmath/messages.po
+++ b/source/id/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-14 12:34+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/id/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/id/svx/messages.po b/source/id/svx/messages.po
index bd4d2886f54..8edae6e1ecd 100644
--- a/source/id/svx/messages.po
+++ b/source/id/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-01 16:35+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/id/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Paskan salindia ke jendela saat ini."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Tidak dapat memuat semua SmartArt. Menyimpan dalam Microsoft Office 2010 atau setelahnya akan menghindarkan isu ini."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13959,17 +13959,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Bilah Navigasi"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Laporan kerusakan sukses diunggah.\n"
-"Anda dapat segera menemukan laporan itu di:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13995,11 +13992,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Kirim Laporan Keru_sakan"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Ja_ngan Kirim"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/id/sw/messages.po b/source/id/sw/messages.po
index 1002c9a1c49..0d446055975 100644
--- a/source/id/sw/messages.po
+++ b/source/id/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-11-01 16:35+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/id/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20367,181 +20367,181 @@ msgid "~File"
msgstr "~Berkas"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Beranda"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Beranda"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "S_isip"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "S~isip"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Tata _Letak"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Tata ~Letak"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Rujuka_n"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referen~si"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Tinjau"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Tin~jauan"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Tilik"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Tampilan"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Cit_ra"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Citra"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Gambar"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Gambar"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objek"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Cetak"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Cetak"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Ek_stensi"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~kstensi"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_t"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Perkakas"
@@ -21579,12 +21579,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Sunting Kontur"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_kstensi"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/is/cui/messages.po b/source/is/cui/messages.po
index 08f3316ad2b..9852bd2dc38 100644
--- a/source/is/cui/messages.po
+++ b/source/is/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/is/>\n"
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/is/helpcontent2/source/text/sbasic/shared.po b/source/is/helpcontent2/source/text/sbasic/shared.po
index 90279284d5a..f66a571a2ca 100644
--- a/source/is/helpcontent2/source/text/sbasic/shared.po
+++ b/source/is/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,49 +12814,40 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
+msgid "Creates a new directory on a data medium."
+msgstr ""
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
#. PLopZ
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr ""
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr ""
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr ""
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr ""
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,40 +24811,49 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
msgstr ""
#. zLuzY
@@ -34103,23 +34067,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr ""
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/is/helpcontent2/source/text/scalc/00.po b/source/is/helpcontent2/source/text/scalc/00.po
index 3062b4780ff..44947c8024e 100644
--- a/source/is/helpcontent2/source/text/scalc/00.po
+++ b/source/is/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/is/helpcontent2/source/text/scalc/guide.po b/source/is/helpcontent2/source/text/scalc/guide.po
index 84453cfaddd..695b49e656d 100644
--- a/source/is/helpcontent2/source/text/scalc/guide.po
+++ b/source/is/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr ""
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr ""
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/is/helpcontent2/source/text/sdraw/01.po b/source/is/helpcontent2/source/text/sdraw/01.po
index 98e8c0ebbcb..102a6a82434 100644
--- a/source/is/helpcontent2/source/text/sdraw/01.po
+++ b/source/is/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-10 01:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/is/helpcontent2/source/text/shared/01.po b/source/is/helpcontent2/source/text/shared/01.po
index 5f3f607caaa..a74513933a5 100644
--- a/source/is/helpcontent2/source/text/shared/01.po
+++ b/source/is/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/is/helpcontent2/source/text/shared/guide.po b/source/is/helpcontent2/source/text/shared/guide.po
index 121083f029f..cd64f0a4191 100644
--- a/source/is/helpcontent2/source/text/shared/guide.po
+++ b/source/is/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Að vinna með %PRODUCTNAME\">Að vinna með <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,148 +10447,139 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Villutilkynningartól"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Villutilkynningartól\">Villutilkynningartól</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
+msgid "Starting the Crash Report Tool"
msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3154046\n"
+"hd_id3159399\n"
"help.text"
-msgid "Completing the Report"
+msgid "Sending the Crash Report"
msgstr ""
-#. vq6k8
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"par_id711605615413339\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
msgstr ""
-#. wuqDi
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id521605621252890\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Sendi villuskýrslu"
-
-#. B3TEP
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"par_id3150504\n"
-"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "Hvaða gögn eru send?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
msgstr ""
#. uD7Ga
@@ -22075,31 +21796,31 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr ""
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
msgstr ""
#. nWgSj
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr ""
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
+msgid "Creating a Default Template"
msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
msgstr ""
-#. GuEWL
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/is/helpcontent2/source/text/shared/optionen.po b/source/is/helpcontent2/source/text/shared/optionen.po
index 30900a07947..337fdf6c087 100644
--- a/source/is/helpcontent2/source/text/shared/optionen.po
+++ b/source/is/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "Skoða"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,49 +3517,67 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Afstalla letur á skjá"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
msgstr ""
#. QWZyh
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,22 +3751,22 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Grafískt úttak"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr ""
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
msgstr ""
#. WzMq5
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN107A3\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Menu"
-msgstr "Valmynd"
-
-#. WnNCQ
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"hd_id3156056\n"
-"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Afstalla letur á skjá"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr ""
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/swriter/guide.po b/source/is/helpcontent2/source/text/swriter/guide.po
index 3966310fe46..d4b7f52fa8a 100644
--- a/source/is/helpcontent2/source/text/swriter/guide.po
+++ b/source/is/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,13 +16891,13 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr ""
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
msgstr ""
#. VFfAP
@@ -17269,13 +17251,13 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
msgstr ""
#. AmitQ
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr ""
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Táknmynd</alt></image> Vinstrijafnað"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Táknmynd</alt></image> Miðjað"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Táknmynd</alt></image> Hægrijafnað"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/is/officecfg/registry/data/org/openoffice/Office/UI.po b/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
index 0495391d2ac..442466a14e6 100644
--- a/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-02-01 14:42+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/is/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Fela skyggnu"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Texti..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Skrá"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Jaf~na"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Jaf~na"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Velja að enda málsgreinar"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Velja að orði til hægri"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/is/sc/messages.po b/source/is/sc/messages.po
index ff6abde41a4..22d3d44c260 100644
--- a/source/is/sc/messages.po
+++ b/source/is/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-02-01 14:45+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/is/>\n"
@@ -24588,213 +24588,213 @@ msgid "~File"
msgstr "~Skrá"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Tilgreindu jaðra fyrir valda reiti."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Auka inndrátt"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Minnka inndrátt"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Gagnasvið"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Setja _inn"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Setja ~inn"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Jöfnun hlutar"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Framsetning"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Fra~msetning"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Tölfræði"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Gögn"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Gögn"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Yfi_rfara"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Yfirfa~ra"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "S_koða"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "S~koða"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "M_ynd"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "M~ynd"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Tei_kna"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Tei~kna"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Umbreyta"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Hlutur"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Hlutur"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Margmiðlun"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Margmiðlun"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Prenta"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Prenta"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Eyðu_blað"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Eyðu~blað"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Við_bót"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Við~bót"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Verkfæri"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Verkfæri"
@@ -29623,338 +29623,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Leysari"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_Valkostir..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Leysa"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Markreitur"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Besta niðurstöður á"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Með því að _breyta reitum"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "_Lágmark"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Hámark"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Gildi á"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Til_vísun reits"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Aðgerð"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "G_ildi"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Tilvísun reits"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Tilvísun reits"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Tilvísun reits"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Tilvísun reits"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Heiltala"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Tvíundaskrá"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Virki"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Heiltala"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Tvíundaskrá"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Virki"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Heiltala"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Tvíundaskrá"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Virki"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Heiltala"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Tvíundaskrá"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Virki"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Gildi"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Gildi"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Gildi"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Gildi"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Fjarlægja"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Fjarlægja"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Fjarlægja"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Fjarlægja"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Takmarkandi skilyrði"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/is/sd/messages.po b/source/is/sd/messages.po
index 7dd7c2d17f1..5018e6fb8d3 100644
--- a/source/is/sd/messages.po
+++ b/source/is/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-04-14 16:48+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/is/>\n"
@@ -3819,116 +3819,116 @@ msgstr "~Tafla"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Umbreyta"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "M_ynd"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "M~ynd"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Tei_kna"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Tei~kna"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Hlutur"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Hlutur"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Margmiðlun"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Margmiðlun"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Eyðu_blað"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Eyðu~blað"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "Þríví_dd"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "Þríví~dd"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Yfirsíða"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Yfirsíða"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Við_bót"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Við~bót"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Verkfæri"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Verkfæri"
@@ -4332,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "Val_mynd"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Við_bót"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6569,219 +6563,219 @@ msgid "~File"
msgstr "~Skrá"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Heim"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Gagnasvið"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Setja _inn"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Setja ~inn"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Framsetning"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Fra~msetning"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Skyggnusýning"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Sk~yggnusýning"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Yfi_rfara"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Yfirfa~ra"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "S_koða"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "S~koða"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tafla"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tafla"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Umbreyta"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "M_ynd"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "M~ynd"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Tei_kna"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Teikna"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Hlutur"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Hlutur"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Margmiðlun"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Margmiðlun"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Eyðu_blað"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Eyðu~blað"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Yfirsíða"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Yfirsíða"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "S_koða"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Efnisskipan"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "Þríví_dd"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "Þríví~dd"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Við_bót"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Við~bót"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Verkfæri"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Verkfæri"
@@ -7691,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Breyta útjaðri"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Við_bót"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/is/starmath/messages.po b/source/is/starmath/messages.po
index 74165a285dd..ef7a10d024f 100644
--- a/source/is/starmath/messages.po
+++ b/source/is/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2195,9 +2195,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/is/svx/messages.po b/source/is/svx/messages.po
index ff587675236..192fc5b2eb3 100644
--- a/source/is/svx/messages.po
+++ b/source/is/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-13 15:36+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/is/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Láta skyggnu passa í núverandi glugga."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Gat ekki hlaðið inn öllum SmartArts. Ef þetta væri vistað í Microsoft Office 2010 eða síðari útgáfum væri hægt að komast hjá þessu vandamáli."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Uppbyggingarstika"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Það tókst að senda villuskýrsluna inn.\n"
-"Bráðum geturðu fundið hana á slóðinni:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Senda hrunskýrslu"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Ekki senda"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/is/sw/messages.po b/source/is/sw/messages.po
index fddad7bd56f..ad73fb8183c 100644
--- a/source/is/sw/messages.po
+++ b/source/is/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/is/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20361,181 +20361,181 @@ msgid "~File"
msgstr "~Skrá"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Heim"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Setja _inn"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Setja ~inn"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Framsetning"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Fra~msetning"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Tilví_sanir"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Tilví~sanir"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Yfi_rfara"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Yfirfa~ra"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "S_koða"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Skoða"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tafla"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tafla"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "M_ynd"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "M~ynd"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Tei_kna"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Tei~kna"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Hlutur"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Hlutur"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Margmiðlun"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Margmiðlun"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Prenta"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Prenta"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Eyðu_blað"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Eyðu~blað"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Við_bót"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Við~bót"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Verkfæri"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Verkfæri"
@@ -21573,12 +21573,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Breyta útjaðri"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "Við_bót"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/it/chart2/messages.po b/source/it/chart2/messages.po
index 379fb5e8798..69becb25268 100644
--- a/source/it/chart2/messages.po
+++ b/source/it/chart2/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-09-05 07:35+0000\n"
-"Last-Translator: Erika R. <ericchiyukia@gmail.com>\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/chart2messages/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562267072.000000\n"
#. NCRDD
@@ -3054,7 +3054,7 @@ msgstr "Seleziona un colore utilizzando la finestra di dialogo Colore."
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:312
msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE"
msgid "_Light Source"
-msgstr ""
+msgstr "Sorgente _luce"
#. WssJA
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:358
@@ -3078,7 +3078,7 @@ msgstr "Seleziona un colore utilizzando la finestra di dialogo Colore."
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:395
msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT"
msgid "_Ambient Light"
-msgstr ""
+msgstr "Luce _ambientale"
#. snUGf
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:439
diff --git a/source/it/cui/messages.po b/source/it/cui/messages.po
index 021666f6a26..ce06d3489f9 100644
--- a/source/it/cui/messages.po
+++ b/source/it/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-07-22 11:13+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
+"Last-Translator: Marco Marega <marco.marega@libreitalia.it>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -2056,7 +2056,7 @@ msgstr "Seleziona il colore da eliminare"
#: cui/inc/strings.hrc:394
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
-msgstr ""
+msgstr "Installa"
#. 2GUFq
#: cui/inc/strings.hrc:395
@@ -2080,13 +2080,13 @@ msgstr ""
#: cui/inc/strings.hrc:398
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
-msgstr ""
+msgstr "Caricamento in corso..."
#. 88Ect
#: cui/inc/strings.hrc:399
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
-msgstr ""
+msgstr "Estensioni"
#. KTtQE
#: cui/inc/strings.hrc:401
@@ -3401,7 +3401,7 @@ msgstr "Non riesci a modificare o eliminare uno stile di cella personalizzato? C
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Hai bisogno di riempire una serie? Seleziona l'area di celle, poi Foglio ▸ Compila celle ▸ Serie e scegli tra Lineare, Crescita, Data e Riempimento automatico."
#. BiSJM
#. local help missing
@@ -4279,7 +4279,7 @@ msgstr "Sito web"
#: cui/uiconfig/ui/aboutdialog.ui:383
msgctxt "aboutdialog|releasenotes"
msgid "Release Notes"
-msgstr ""
+msgstr "Note di rilascio"
#. 5TUrF
#: cui/uiconfig/ui/aboutdialog.ui:411
@@ -4439,10 +4439,9 @@ msgstr "Inserisci automaticamente"
#. 5B9tX
#: cui/uiconfig/ui/acorexceptpage.ui:81
-#, fuzzy
msgctxt "acorexceptpage|extended_tip|autoabbrev"
msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog."
-msgstr "Aggiunge automaticamente le abbreviazioni o le parole che iniziano con due maiuscole all'elenco di eccezioni corrispondente. Questa funzione può essere utilizzata solo se nella colonna [D] della scheda Opzioni della finestra di dialogo sono selezionate le opzioni COrreggi la doppia MAiuscola ad inizio PArola o Inizia ogni frase con la lettera maiuscola."
+msgstr "Aggiunge automaticamente le abbreviazioni o le parole che iniziano con due maiuscole all'elenco di eccezioni corrispondente. Questa funzione può essere utilizzata solo se nella colonna [D] della scheda Opzioni della finestra di dialogo sono selezionate le opzioni COrreggi la DOppia MAiuscola ad INizio PArola o Inizia ogni frase con la lettera maiuscola."
#. tpV8t
#: cui/uiconfig/ui/acorexceptpage.ui:108
@@ -4617,7 +4616,7 @@ msgstr ""
#: cui/uiconfig/ui/additionsdialog.ui:25
msgctxt "bulletandposition|gallery"
msgid "Sort by"
-msgstr ""
+msgstr "Ordina per"
#. LhkwF
#: cui/uiconfig/ui/additionsdialog.ui:34
@@ -4629,13 +4628,13 @@ msgstr ""
#: cui/uiconfig/ui/additionsdialog.ui:43
msgctxt "menuassignpage|gear_textOnly"
msgid "Downloads"
-msgstr ""
+msgstr "Scaricamenti"
#. A4zUt
#: cui/uiconfig/ui/additionsdialog.ui:52
msgctxt "menuassignpage|gear_textOnly"
msgid "Comments"
-msgstr ""
+msgstr "Commenti"
#. ncCYE
#: cui/uiconfig/ui/additionsdialog.ui:71
@@ -4684,7 +4683,7 @@ msgstr ""
#: cui/uiconfig/ui/additionsdialog.ui:211
msgctxt "additionsdialog|buttonGear"
msgid "Gear Menu"
-msgstr ""
+msgstr "Menu Impostazioni"
#. CbCbR
#: cui/uiconfig/ui/additionsdialog.ui:212
@@ -4720,7 +4719,7 @@ msgstr ""
#: cui/uiconfig/ui/additionsfragment.ui:88
msgctxt "additionsEntry|labelLicense"
msgid "License:"
-msgstr ""
+msgstr "Licenza:"
#. buPFe
#: cui/uiconfig/ui/additionsfragment.ui:106
@@ -4732,25 +4731,25 @@ msgstr ""
#: cui/uiconfig/ui/additionsfragment.ui:124
msgctxt "additionsEntry|labelComments"
msgid "Comments:"
-msgstr ""
+msgstr "Commenti:"
#. TkztG
#: cui/uiconfig/ui/additionsfragment.ui:142
msgctxt "additionsEntry|labelComments"
msgid "Downloads:"
-msgstr ""
+msgstr "Scaricamenti:"
#. JRe5b
#: cui/uiconfig/ui/additionsfragment.ui:356
msgctxt "additionsEntry|buttonInstall"
msgid "Install"
-msgstr ""
+msgstr "Installa"
#. VEbVr
#: cui/uiconfig/ui/additionsfragment.ui:370
msgctxt "additionsEntry|buttonWebsite"
msgid "Website"
-msgstr ""
+msgstr "Sito web"
#. BuMBh
#: cui/uiconfig/ui/agingdialog.ui:15
@@ -5074,7 +5073,7 @@ msgstr "Tabella"
#: cui/uiconfig/ui/areatabpage.ui:39
msgctxt "areatabpage|extended_tip|tablelb"
msgid "Set the fill options for the selected drawing object or document element."
-msgstr ""
+msgstr "Imposta le opzioni di riempimento per l'oggetto di disegno o per l'elemento del documento."
#. 2kC9i
#: cui/uiconfig/ui/areatabpage.ui:51
@@ -5776,7 +5775,7 @@ msgstr "Sillabazione"
#: cui/uiconfig/ui/breaknumberoption.ui:95
msgctxt "beforebreak"
msgid "Sets the minimum number of characters of the word to be hyphenated that must remain at the end of the line."
-msgstr ""
+msgstr "Imposta il numero minimo di caratteri della parola da sillabare che dovranno rimanere alla fine della riga."
#. 8Fp43
#: cui/uiconfig/ui/breaknumberoption.ui:106
@@ -5788,7 +5787,7 @@ msgstr "Caratteri prima della sillabazione"
#: cui/uiconfig/ui/breaknumberoption.ui:139
msgctxt "afterbreak"
msgid "Specifies the minimum number of characters of a hyphenated word required at the next line."
-msgstr ""
+msgstr "Specifica il numero minimo di caratteri da lasciare nella seconda parte di una parola sillabata."
#. p6cfZ
#: cui/uiconfig/ui/breaknumberoption.ui:150
@@ -5800,7 +5799,7 @@ msgstr "Caratteri dopo la sillabazione"
#: cui/uiconfig/ui/breaknumberoption.ui:183
msgctxt "wordlength"
msgid "Specifies the minimum number of characters required for automatic hyphenation to be applied."
-msgstr ""
+msgstr "Specifica il numero minimo di caratteri richiesto perché venga applicata la sillabazione automatica."
#. sAo4B
#: cui/uiconfig/ui/breaknumberoption.ui:194
@@ -6512,9 +6511,10 @@ msgstr "Percorso del certificato"
#. pbBGM
#: cui/uiconfig/ui/certdialog.ui:284
+#, fuzzy
msgctxt "certdialog|extended_tip|CertDialog"
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures."
-msgstr ""
+msgstr "Seleziona o aggiungi la cartella dei certificati dei Servizi sicurezza di rete da usare per le firme digitali:"
#. xXVpD
#: cui/uiconfig/ui/charnamepage.ui:246
@@ -8200,7 +8200,7 @@ msgstr "_Lingua:"
#: cui/uiconfig/ui/editdictionarydialog.ui:183
msgctxt "replace"
msgid "This input field is only available if you are editing an exception dictionary or a language-dependent custom dictionary. In exception dictionaries, the field shows the alternative suggestion for the current word in the \"Word\" text box. In language-dependent custom dictionaries, the field contains a known root word, as a model of affixation of the new word or its usage in compound words. For example, in a German custom dictionary, the new word “Litschi” (lychee) with the model word “Gummi” (gum) will result recognition of “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) etc."
-msgstr ""
+msgstr "Questo campo di inserimento è disponibile solo stai modificando un dizionario delle eccezioni o un dizionario personalizzato specifico della lingua. Nei dizionari delle eccezioni, il campo mostra il suggerimento alternativo per la parola attiva nella casella \"Parola\". Nei dizionari personalizzati specifici della lingua, il campo contiene una parola radice conosciuta, come modello di affissazione della nuova parola o il suo uso nelle parole composte. Ad esempio, in un dizionario personalizzato tedesco, la nuova parola “Litschi” (litchi) col modello di parola “Gummi” (gomma) porterà al riconoscimento di “Litschis” (litchi, pl.), “Litschibaum” (albero del litchi), “Litschifrucht” (frutto del litchi), e via discorrendo."
#. 5EwBs
#: cui/uiconfig/ui/editdictionarydialog.ui:200
@@ -10655,7 +10655,7 @@ msgstr "Des_tinatario:"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:59
msgctxt "hyperlinkmailpage|addressbook|tooltip_text"
msgid "Data Sources..."
-msgstr ""
+msgstr "Sorgenti dati..."
#. mZ8Wv
#: cui/uiconfig/ui/hyperlinkmailpage.ui:64
@@ -12549,9 +12549,10 @@ msgstr "Aggiunge un commento al formato numerico selezionato."
#. XNdu6
#: cui/uiconfig/ui/numberingformatpage.ui:193
+#, fuzzy
msgctxt "numberingformatpage|formatf"
msgid "_Format Code"
-msgstr ""
+msgstr "Codice del formato"
#. 5GA9p
#: cui/uiconfig/ui/numberingformatpage.ui:240
@@ -15151,7 +15152,7 @@ msgstr ""
#: cui/uiconfig/ui/optlingupage.ui:226
msgctxt "optlingupage|lingumodulesft"
msgid "_Available Language Modules"
-msgstr ""
+msgstr "Moduli linguistici _disponibili"
#. efvBg
#: cui/uiconfig/ui/optlingupage.ui:309
@@ -15205,7 +15206,7 @@ msgstr ""
#: cui/uiconfig/ui/optlingupage.ui:420
msgctxt "optlingupage|lingudictsft"
msgid "_User-defined Dictionaries"
-msgstr ""
+msgstr "Dizionari _personalizzati"
#. sE9tc
#: cui/uiconfig/ui/optlingupage.ui:505
@@ -15247,7 +15248,7 @@ msgstr "_Opzioni"
#: cui/uiconfig/ui/optlingupage.ui:632
msgctxt "OptLinguPage"
msgid "Specifies the properties of the spelling, thesaurus and hyphenation."
-msgstr ""
+msgstr "Specifica le proprietà per l'ortografia, il dizionario dei sinonimi e la sillabazione."
#. ADZ8E
#: cui/uiconfig/ui/optnewdictionarydialog.ui:8
@@ -15301,7 +15302,7 @@ msgstr "Dizionario"
#: cui/uiconfig/ui/optnewdictionarydialog.ui:218
msgctxt "OptNewDictionaryDialog"
msgid "In the Dictionary section you can name a new user-defined dictionary or dictionary of exceptions and specify the language."
-msgstr ""
+msgstr "Nell'area Dizionario puoi inserire un nuovo dizionario personalizzato o assegnare un nome a un dizionario di eccezioni e definire la lingua."
#. n6vQH
#: cui/uiconfig/ui/optonlineupdatepage.ui:35
@@ -15685,7 +15686,7 @@ msgstr "Carica le impostazioni della stampante assieme al documento"
#: cui/uiconfig/ui/optsavepage.ui:47
msgctxt "load_docprinter"
msgid "If enabled, the printer settings will be loaded with the document. This can cause a document to be printed on a distant printer, if you do not change the printer manually in the Print dialog. If disabled, your standard printer will be used to print this document. The current printer settings will be stored with the document whether or not this option is checked."
-msgstr ""
+msgstr "Le impostazioni della stampante, se attivate, saranno caricate col documento. Ciò permette di stampare un documento con una stampante diversa, se essa non viene cambiata manualmente nella finestra Stampa. Se le impostazioni sono disattivate, sarà utilizzata la stampante predefinita. Le impostazioni correnti di attivazione o disattivazione della stampante saranno memorizzate assieme al documento."
#. VdFnA
#: cui/uiconfig/ui/optsavepage.ui:58
@@ -15805,7 +15806,7 @@ msgstr "Avvisa se il salvataggio non è nel formato ODF o nel formato predefinit
#: cui/uiconfig/ui/optsavepage.ui:326
msgctxt "warnalienformat"
msgid "You can choose to get a warning message when you save a document in a format that is not OpenDocument or which you did not set as default format in Load/Save - General in the Options dialog box."
-msgstr ""
+msgstr "Puoi decidere di ricevere un avviso quando salvi un documento in un formato diverso da OpenDocument o che non hai impostato come predefinito in Carica/salva - Generale all'interno della finestra di dialogo Opzioni."
#. 5ANvD
#. EN-US, the term 'extended' must not be translated.
@@ -15854,7 +15855,7 @@ msgstr "1.3 esteso (consigliato)"
#: cui/uiconfig/ui/optsavepage.ui:386
msgctxt "odfversion"
msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible."
-msgstr ""
+msgstr "Alcune aziende e organizzazioni potrebbero richiedere documenti ODF nel formato ODF 1.0/1.1 o in quello 1.2. Puoi selezionare il formato in cui salvare dall'elenco a discesa. I vecchi formati non sono in grado di supportare tutte le nuove funzionalità, è dunque consigliato l'uso del nuovo formato ODF 1.3 (esteso), laddove possibile."
#. cxPqV
#: cui/uiconfig/ui/optsavepage.ui:399
@@ -16778,7 +16779,7 @@ msgstr "Barra degli strumenti:"
#: cui/uiconfig/ui/optviewpage.ui:404
msgctxt "optviewpage|label1"
msgid "Icon Size"
-msgstr ""
+msgstr "Dimensione icone"
#. 8CiB5
#: cui/uiconfig/ui/optviewpage.ui:443
@@ -16844,7 +16845,7 @@ msgstr ""
#: cui/uiconfig/ui/optviewpage.ui:499
msgctxt "optviewpage|label1"
msgid "Icon Style"
-msgstr ""
+msgstr "Stile icone"
#. stYtM
#: cui/uiconfig/ui/optviewpage.ui:540
@@ -17355,7 +17356,7 @@ msgstr "S_otto il paragrafo:"
#: cui/uiconfig/ui/paraindentspacing.ui:331
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Do not add space between paragraphs of the same style"
-msgstr ""
+msgstr "Non aggiungere spazi tra i paragrafi dello stesso stile"
#. hWQWQ
#: cui/uiconfig/ui/paraindentspacing.ui:353
@@ -19075,7 +19076,7 @@ msgstr "mario.rossi@esempio.org"
#: cui/uiconfig/ui/signatureline.ui:152
msgctxt "signatureline|extended_tip|edit_email"
msgid "Enter the email of the signer. The email is not displayed in the signature line graphic box, but is used for the digital signature."
-msgstr ""
+msgstr "Inserisci l'indirizzo di posta elettronica del firmatario. L'indirizzo non viene visualizzato nella casella grafica della riga della firma ma serve per la firma digitale."
#. As8u6
#. Suggested Signer Name
@@ -20089,7 +20090,7 @@ msgstr "Inverte le impostazioni di allineamento orizzontale sulle pagine pari."
#: cui/uiconfig/ui/swpossizepage.ui:587
msgctxt "swpossizepage|followtextflow"
msgid "Keep inside te_xt boundaries"
-msgstr ""
+msgstr "Mantieni all'interno dei margini del _testo"
#. zfpt5
#: cui/uiconfig/ui/swpossizepage.ui:597
@@ -20901,59 +20902,71 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
+msgstr "Barra degli strumenti standard"
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
-msgstr ""
+msgstr "A schede"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
-msgstr ""
-
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
+msgstr "A schede, compatta"
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barra raggruppata"
+
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "Barra raggruppata compatta"
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
-msgstr ""
+msgstr "Singola contestuale"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
-msgstr ""
+msgstr "Gruppi contestuali"
+
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "Barra degli strumenti singola"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "Barra laterale"
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
@@ -20965,7 +20978,7 @@ msgstr ""
#: cui/uiconfig/ui/toolbarmodedialog.ui:366
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
-msgstr ""
+msgstr "Anteprima"
#. WChLB
#: cui/uiconfig/ui/transparencytabpage.ui:78
diff --git a/source/it/dbaccess/messages.po b/source/it/dbaccess/messages.po
index c8f4d713f40..d053387adf6 100644
--- a/source/it/dbaccess/messages.po
+++ b/source/it/dbaccess/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-07-27 08:34+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2020-11-30 10:36+0000\n"
+"Last-Translator: Marco Marega <marco.marega@libreitalia.it>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562265369.000000\n"
#. BiN6g
@@ -2524,7 +2524,7 @@ msgstr ""
#: dbaccess/inc/templwin.hrc:41
msgctxt "STRARY_SVT_DOCINFO"
msgid "Title"
-msgstr ""
+msgstr "Titolo"
#. zo57j
#: dbaccess/inc/templwin.hrc:42
@@ -2548,13 +2548,13 @@ msgstr ""
#: dbaccess/inc/templwin.hrc:45
msgctxt "STRARY_SVT_DOCINFO"
msgid "Description"
-msgstr ""
+msgstr "Descrizione"
#. Eg2eG
#: dbaccess/inc/templwin.hrc:46
msgctxt "STRARY_SVT_DOCINFO"
msgid "Type"
-msgstr ""
+msgstr "Tipo"
#. hokZy
#: dbaccess/inc/templwin.hrc:47
@@ -2584,13 +2584,13 @@ msgstr ""
#: dbaccess/inc/templwin.hrc:51
msgctxt "STRARY_SVT_DOCINFO"
msgid "Subject"
-msgstr ""
+msgstr "Oggetto"
#. HVYdE
#: dbaccess/inc/templwin.hrc:52
msgctxt "STRARY_SVT_DOCINFO"
msgid "Size"
-msgstr ""
+msgstr "Dimensione"
#. 4KVZn
#: dbaccess/uiconfig/ui/admindialog.ui:8
@@ -4781,7 +4781,7 @@ msgstr "Aggiungi tabella o ricerca"
#: dbaccess/uiconfig/ui/taskwindow.ui:109
msgctxt "taskwindow|STR_DESCRIPTION"
msgid "Description"
-msgstr ""
+msgstr "Descrizione"
#. 8b2nn
#: dbaccess/uiconfig/ui/textconnectionsettings.ui:8
@@ -5015,4 +5015,4 @@ msgstr "Set di _caratteri:"
#: dbaccess/uiconfig/ui/userdetailspage.ui:214
msgctxt "userdetailspage|charsetheader"
msgid "Data Conversion"
-msgstr ""
+msgstr "Conversione dei dati"
diff --git a/source/it/dictionaries/ko_KR.po b/source/it/dictionaries/ko_KR.po
index 21b95f5743b..110bbf31333 100644
--- a/source/it/dictionaries/ko_KR.po
+++ b/source/it/dictionaries/ko_KR.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
+"Last-Translator: Marco Marega <marco.marega@libreitalia.it>\n"
+"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/dictionariesko_kr/it/>\n"
+"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
#. DbXEb
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Korean spellcheck dictionary"
-msgstr ""
+msgstr "Dizionario ortografico coreano"
diff --git a/source/it/extensions/messages.po b/source/it/extensions/messages.po
index 18dfb9b99a6..005594d557c 100644
--- a/source/it/extensions/messages.po
+++ b/source/it/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-06-22 03:26+0000\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/extensionsmessages/it/>\n"
"Language: it\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.1.1\n"
"X-POOTLE-MTIME: 1564768483.000000\n"
#. cBx8W
@@ -3167,6 +3167,11 @@ msgid ""
"\n"
"Click the button below to open another dialog where you can enter the settings for your data source."
msgstr ""
+"Per utilizzare i dati della rubrica nei tuoi modelli è necessario che %PRODUCTNAME riconosca i campi contenenti dati concreti.\n"
+"\n"
+"Supponiamo che abbia salvato i tuoi indirizzi di posta elettronica in un campo chiamato \"E-Mail\", \"email\", \"EM\" o un qualsiasi altro nome.\n"
+"\n"
+"Premendo il pulsante in basso si aprirà un'altra finestra di dialogo in cui potrai impostare la sorgente dati."
#. RkyNf
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:38
@@ -3268,7 +3273,7 @@ msgstr "Campi disponibili"
#: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:401
msgctxt "gridfieldsselectionpage|label2"
msgid "Table Element"
-msgstr ""
+msgstr "Elemento tabella"
#. Xk7cV
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:54
@@ -3322,7 +3327,7 @@ msgstr "Quale _nome vuoi assegnare ai campi di opzione?"
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:309
msgctxt "groupradioselectionpage|label2"
msgid "Table Element"
-msgstr ""
+msgstr "Elemento tabella"
#. 3dtcD
#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:15
@@ -4146,7 +4151,7 @@ msgstr "_Basso:"
#: extensions/uiconfig/scanner/ui/sanedialog.ui:276
msgctxt "sanedialog|label1"
msgid "Scan Area"
-msgstr ""
+msgstr "Area di acquisizione"
#. FZ7Vw
#: extensions/uiconfig/scanner/ui/sanedialog.ui:335
diff --git a/source/it/filter/messages.po b/source/it/filter/messages.po
index be8f56a9cab..a9301479179 100644
--- a/source/it/filter/messages.po
+++ b/source/it/filter/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-07-06 10:34+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
+"Last-Translator: Marco Marega <marco.marega@libreitalia.it>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562540720.000000\n"
#. 5AQgJ
@@ -381,7 +381,7 @@ msgstr "Seleziona un modo di compressione delle immagini senza perdite, in cui v
#: filter/uiconfig/ui/pdfgeneralpage.ui:241
msgctxt "pdfgeneralpage|reduceresolution"
msgid "Reduce ima_ge resolution"
-msgstr ""
+msgstr "Riduci risoluzione imma_gine"
#. bAtCV
#: filter/uiconfig/ui/pdfgeneralpage.ui:254
@@ -519,7 +519,7 @@ msgstr "Impostare la scrittura di tag PDF. Questa impostazione può aumentare co
#: filter/uiconfig/ui/pdfgeneralpage.ui:556
msgctxt "pdfgeneralpage|forms"
msgid "Create PDF for_m"
-msgstr ""
+msgstr "Crea for_mulario PDF"
#. 3Vg8V
#: filter/uiconfig/ui/pdfgeneralpage.ui:560
@@ -603,13 +603,13 @@ msgstr "Converte in formato PDF/A-2b o PDF/A-1b. Questo è definito come un form
#: filter/uiconfig/ui/pdfgeneralpage.ui:735
msgctxt "pdfgeneralpage|pdfaversion"
msgid "PDF_/A version:"
-msgstr ""
+msgstr "Versione PDF_/A:"
#. VQGHi
#: filter/uiconfig/ui/pdfgeneralpage.ui:769
msgctxt "pdfgeneralpage|pdfua"
msgid "Universal Accessibilit_y (PDF/UA)"
-msgstr ""
+msgstr "Accesso facilitato _universale (PDF/UA)"
#. 4B3FD
#: filter/uiconfig/ui/pdfgeneralpage.ui:773
@@ -645,7 +645,7 @@ msgstr "Espo_rta segnaposti"
#: filter/uiconfig/ui/pdfgeneralpage.ui:859
msgctxt "pdfgeneralpage|comments"
msgid "Comm_ents as PDF annotations"
-msgstr ""
+msgstr "Comm_enti come annotazioni PDF"
#. SijbK
#: filter/uiconfig/ui/pdfgeneralpage.ui:868
@@ -1263,7 +1263,7 @@ msgstr "Transizioni"
#: filter/uiconfig/ui/pdfuserinterfacepage.ui:329
msgctxt "pdfuserinterfacepage|allbookmarks"
msgid "Show _All"
-msgstr ""
+msgstr "Mostra _tutto"
#. XLd4F
#: filter/uiconfig/ui/pdfuserinterfacepage.ui:339
@@ -1275,7 +1275,7 @@ msgstr "Selezionare questa opzione per visualizzare i segnalibri di tutti i live
#: filter/uiconfig/ui/pdfuserinterfacepage.ui:350
msgctxt "pdfuserinterfacepage|visiblebookmark"
msgid "_Visible levels:"
-msgstr ""
+msgstr "Livelli _visibili:"
#. FqQPa
#: filter/uiconfig/ui/pdfuserinterfacepage.ui:364
@@ -1311,7 +1311,7 @@ msgstr "Selezionare questa opzione per generare un file PDF che mostri solo il c
#: filter/uiconfig/ui/pdfviewpage.ui:73
msgctxt "pdfviewpage|outline"
msgid "Outl_ine and page"
-msgstr ""
+msgstr "Struttura e pagina"
#. JAAHm
#: filter/uiconfig/ui/pdfviewpage.ui:83
@@ -1449,7 +1449,7 @@ msgstr "Selezionare questa opzione per generare un file PDF che mostri una pagin
#: filter/uiconfig/ui/pdfviewpage.ui:425
msgctxt "pdfviewpage|contlayout"
msgid "C_ontinuous"
-msgstr ""
+msgstr "C_ontinuo"
#. BRxps
#: filter/uiconfig/ui/pdfviewpage.ui:435
@@ -1461,7 +1461,7 @@ msgstr "Selezionare questa opzione per generare un file PDF che mostri le pagine
#: filter/uiconfig/ui/pdfviewpage.ui:446
msgctxt "pdfviewpage|contfacinglayout"
msgid "Co_ntinuous facing"
-msgstr ""
+msgstr "Co_ntinuo, pagine affiancate"
#. YyCT7
#: filter/uiconfig/ui/pdfviewpage.ui:456
diff --git a/source/it/helpcontent2/source/text/sbasic/python.po b/source/it/helpcontent2/source/text/sbasic/python.po
index 9a1ab5529e8..b3c02c6729f 100644
--- a/source/it/helpcontent2/source/text/sbasic/python.po
+++ b/source/it/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-07-18 19:35+0000\n"
+"PO-Revision-Date: 2020-12-05 20:36+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicpython/it/>\n"
"Language: it\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.1.1\n"
"X-POOTLE-MTIME: 1563812253.000000\n"
#. naSFZ
@@ -1841,7 +1841,7 @@ msgctxt ""
"N0388\n"
"help.text"
msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behavior. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls."
-msgstr ""
+msgstr "Gli artefatti grafici, gli input di tastiera, i movimenti del mouse e altre interazioni uomo/macchina possono essere controllati mediante listener UNO che \"ascoltano\" il comportamento dell'utente. I listener sono alternative di codice di programmazione dinamica alle assegnazioni macro. Si possono creare tanti listener UNO quanti sono gli eventi da ascoltare. Un listener singolo può anche gestire più controlli di interfaccia utente."
#. UVzsE
#: python_listener.xhp
diff --git a/source/it/helpcontent2/source/text/sbasic/shared.po b/source/it/helpcontent2/source/text/sbasic/shared.po
index b35f93ebcf5..70c235dee3f 100644
--- a/source/it/helpcontent2/source/text/sbasic/shared.po
+++ b/source/it/helpcontent2/source/text/sbasic/shared.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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-08-21 02:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-07 07:36+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/it/>\n"
"Language: it\n"
@@ -3200,7 +3200,7 @@ msgctxt ""
"par_id3156441\n"
"help.text"
msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 kB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
-msgstr ""
+msgstr "Un modulo può contenere istruzioni SUB e FUNCTION insieme con dichiarazioni di variabili. Il programma da salvare in un modulo non può superare la lunghezza di 64 KB. Se è richiesto più spazio, potete dividere un progetto di $[officename] Basic in più moduli, quindi salvarli in un'unica libreria."
#. oo2bB
#: 01020500.xhp
@@ -4374,12 +4374,13 @@ msgstr "La macro assegnata viene eseguita..."
#. e4Pjb
#: 01040000.xhp
+#, fuzzy
msgctxt ""
"01040000.xhp\n"
"par_id3145809\n"
"help.text"
msgid "routine"
-msgstr ""
+msgstr "routine"
#. WtaR8
#: 01040000.xhp
@@ -4397,7 +4398,7 @@ msgctxt ""
"par_id3150715\n"
"help.text"
msgid "...after a $[officename] application is started."
-msgstr ""
+msgstr "...dopo l'avvio di un'applicazione di $[officename]."
#. zjA7c
#: 01040000.xhp
@@ -4424,7 +4425,7 @@ msgctxt ""
"par_id151599831705811\n"
"help.text"
msgid "Document created"
-msgstr ""
+msgstr "Documento creato"
#. KAZDF
#: 01040000.xhp
@@ -4442,7 +4443,7 @@ msgctxt ""
"par_id3145150\n"
"help.text"
msgid "New Document"
-msgstr ""
+msgstr "Nuovo documento"
#. fkuXY
#: 01040000.xhp
@@ -4460,7 +4461,7 @@ msgctxt ""
"par_id161599836960401\n"
"help.text"
msgid "Document loading finished"
-msgstr ""
+msgstr "Caricamento del documento terminato"
#. jCGwP
#: 01040000.xhp
@@ -4469,7 +4470,7 @@ msgctxt ""
"par_id721599836993145\n"
"help.text"
msgid "...before a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
-msgstr ""
+msgstr "...prima dell'apertura di un documento con il comando <emph>File - Apri</emph> o con l'icona <emph>Apri</emph>."
#. F352r
#: 01040000.xhp
@@ -4496,7 +4497,7 @@ msgctxt ""
"par_id3159171\n"
"help.text"
msgid "Document is going to be closed"
-msgstr ""
+msgstr "Il documento sta per essere chiuso"
#. CvPgm
#: 01040000.xhp
@@ -4541,7 +4542,7 @@ msgctxt ""
"par_id981599837681979\n"
"help.text"
msgid "View created"
-msgstr ""
+msgstr "Vista creata"
#. 77CWX
#: 01040000.xhp
@@ -4559,7 +4560,7 @@ msgctxt ""
"par_id511599837683562\n"
"help.text"
msgid "View is going to be closed"
-msgstr ""
+msgstr "La vista attiva sta per essere chiusa"
#. EtV6o
#: 01040000.xhp
@@ -4577,7 +4578,7 @@ msgctxt ""
"par_id951599837684882\n"
"help.text"
msgid "View closed"
-msgstr ""
+msgstr "Vista chiusa"
#. qGdPR
#: 01040000.xhp
@@ -4667,7 +4668,7 @@ msgctxt ""
"par_id161599838976700\n"
"help.text"
msgid "Saving of document failed"
-msgstr ""
+msgstr "Salvataggio del documento non riuscito"
#. FnDEp
#: 01040000.xhp
@@ -4721,7 +4722,7 @@ msgctxt ""
"par_id561599839702598\n"
"help.text"
msgid "'Save As' has failed"
-msgstr ""
+msgstr "'Salva con nome' non riuscito"
#. FGnZt
#: 01040000.xhp
@@ -4757,7 +4758,7 @@ msgctxt ""
"par_id501600150804809\n"
"help.text"
msgid "Storing or exporting copy of document"
-msgstr ""
+msgstr "Memorizza o esporta la copia del documento"
#. wP2PH
#: 01040000.xhp
@@ -4775,7 +4776,7 @@ msgctxt ""
"par_id502600180504809\n"
"help.text"
msgid "Document copy has been created"
-msgstr ""
+msgstr "La copia del documento è stata creata"
#. gF2u2
#: 01040000.xhp
@@ -4793,7 +4794,7 @@ msgctxt ""
"par_id501006180504809\n"
"help.text"
msgid "Creating of document copy failed"
-msgstr ""
+msgstr "La creazione della copia del documento non è riuscita"
#. dFCuE
#: 01040000.xhp
@@ -4811,7 +4812,7 @@ msgctxt ""
"par_id501600180504809\n"
"help.text"
msgid "Print document"
-msgstr ""
+msgstr "Stampa documento"
#. kDap2
#: 01040000.xhp
@@ -4820,7 +4821,7 @@ msgctxt ""
"par_id471600180505705\n"
"help.text"
msgid "...after the Print dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
-msgstr ""
+msgstr "...dopo la chiusura della finestra di dialogo Stampa ma prima che abbia inizio l'effettivo processo di stampa. Questo evento si verifica per ogni copia stampata."
#. KNASw
#: 01040000.xhp
@@ -4847,7 +4848,7 @@ msgctxt ""
"par_id921600180238854\n"
"help.text"
msgid "'Modified' status was changed"
-msgstr ""
+msgstr "Lo stato 'modificato' è cambiato"
#. vVXPg
#: 01040000.xhp
@@ -4865,7 +4866,7 @@ msgctxt ""
"par_id741600180121445\n"
"help.text"
msgid "Document title changed"
-msgstr ""
+msgstr "Il titolo del documento è cambiato"
#. KjqSB
#: 01040000.xhp
@@ -4883,7 +4884,7 @@ msgctxt ""
"par_id641600180121445\n"
"help.text"
msgid "Loaded a sub component"
-msgstr ""
+msgstr "Caricato un componente secondario"
#. Vq5NQ
#: 01040000.xhp
@@ -4901,7 +4902,7 @@ msgctxt ""
"par_id641700180131445\n"
"help.text"
msgid "Closed a sub component"
-msgstr ""
+msgstr "Chiuso un componente secondario"
#. Gzmes
#: 01040000.xhp
@@ -4919,7 +4920,7 @@ msgctxt ""
"par_id421600097736759\n"
"help.text"
msgid "Printing of form letters started"
-msgstr ""
+msgstr "La stampa dei moduli è iniziata"
#. AAYeB
#: 01040000.xhp
@@ -4937,7 +4938,7 @@ msgctxt ""
"par_id41600097737991\n"
"help.text"
msgid "Printing of form letters finished"
-msgstr ""
+msgstr "La stampa dei moduli è terminata"
#. Wp5ff
#: 01040000.xhp
@@ -5000,7 +5001,7 @@ msgctxt ""
"par_id3154627\n"
"help.text"
msgid "When the page count changes."
-msgstr ""
+msgstr "Quando cambia il numero delle pagine."
#. XQXbJ
#: 01040000.xhp
@@ -8537,7 +8538,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Print# Statement"
-msgstr ""
+msgstr "Istruzione Print#"
#. addUg
#: 03010103.xhp
@@ -10427,7 +10428,7 @@ msgctxt ""
"par_id3150011\n"
"help.text"
msgid "<emph>var</emph>: A numeric or string variable that you assign the values read from the opened file to."
-msgstr ""
+msgstr "<emph>var</emph>: variabile numerica o a stringa a cui vengono assegnati i valori letti dal file aperto."
#. 23Pzt
#: 03020202.xhp
@@ -10490,7 +10491,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Line Input# Statement"
-msgstr ""
+msgstr "Istruzione Line Input#"
#. CCEuD
#: 03020203.xhp
@@ -10535,7 +10536,7 @@ msgctxt ""
"par_id3161832\n"
"help.text"
msgid "<emph>fileNum</emph>: Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
-msgstr ""
+msgstr "<emph>fileNum (NumeroFile)</emph>: numero del file contenente i dati che si desidera leggere. Il file deve essere stato aperto in precedenza con l'istruzione Open usando la parola chiave INPUT."
#. qAR2M
#: 03020203.xhp
@@ -10544,7 +10545,7 @@ msgctxt ""
"par_id3151119\n"
"help.text"
msgid "<emph>variable</emph>: The name of the variable that stores the result."
-msgstr ""
+msgstr "<emph>variable</emph>: nome della variabile contenente il risultato."
#. foxtA
#: 03020203.xhp
@@ -10562,7 +10563,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Put# Statement"
-msgstr ""
+msgstr "Istruzione Put#"
#. psWQE
#: 03020204.xhp
@@ -10625,7 +10626,7 @@ msgctxt ""
"par_id3146120\n"
"help.text"
msgid "<emph>fileNum</emph>: Any integer expression that defines the file that you want to write to."
-msgstr ""
+msgstr "<emph>fileNum (NumeroFile)</emph>: espressione numerica che definisce il file da usare per la scrittura."
#. AiZUD
#: 03020204.xhp
@@ -10652,7 +10653,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<emph>variable</emph>: Name of the variable that you want to write to the file."
-msgstr ""
+msgstr "<emph>variable (Variabile)</emph>: nome della variabile da scrivere nel file."
#. yyf95
#: 03020204.xhp
@@ -11318,7 +11319,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Seek# Statement"
-msgstr ""
+msgstr "Istruzione Seek#"
#. vLW2K
#: 03020305.xhp
@@ -11390,7 +11391,7 @@ msgctxt ""
"hd_id3153379\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parametri:"
#. x86KJ
#: 03020305.xhp
@@ -11399,7 +11400,7 @@ msgctxt ""
"par_id3153952\n"
"help.text"
msgid "<emph>fileNum</emph>: The data channel number used in the Open statement."
-msgstr ""
+msgstr "<emph>fileNum (NumeroFile)</emph>: numero del canale dati usato nell'istruzione Open."
#. FrYvd
#: 03020305.xhp
@@ -12814,50 +12815,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Istruzione MkDir\">Istruzione MkDir</link>"
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Crea una nuova cartella in un supporto di dati."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintassi:"
+msgid "Creates a new directory on a data medium."
+msgstr "Crea una nuova cartella in un supporto di dati."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text (Testo):</emph> stringa che specifica il nome e il percorso della cartella da creare. In alternativa, potete usare una <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notazione URL\">notazione URL</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12860,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "Se il percorso non è determinato, la cartella viene creata nella cartella attiva."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "Esempio:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13121,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "Elimina una cartella esistente da un supporto dati."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintassi:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13139,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13157,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "Se il percorso non viene determinato, l'<emph>istruzione RmDir</emph> ricerca la cartella da eliminare nella cartella attiva. In caso di esito negativo, viene generato un messaggio di errore."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "Esempio:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -17928,12 +17893,13 @@ msgstr "<image src=\"media/helpimg/sbasic/On-Error_statement.svg\" id=\"img_id41
#. CKJJr
#: 03050500.xhp
+#, fuzzy
msgctxt ""
"03050500.xhp\n"
"par_id3145173\n"
"help.text"
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
-msgstr ""
+msgstr "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
#. EBAKU
#: 03050500.xhp
@@ -22199,7 +22165,7 @@ msgctxt ""
"hd_id81592320644826\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement\">If...Then...Else Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"Istruzione If...Then...Else\">Istruzione If...Then...Else</link>"
#. aPd9F
#: 03090101.xhp
@@ -22424,7 +22390,7 @@ msgctxt ""
"bas_id231592381903973\n"
"help.text"
msgid "Statement Block"
-msgstr ""
+msgstr "Blocco istruzioni"
#. 9KDPg
#: 03090102.xhp
@@ -23180,7 +23146,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "A <literal>Do...Loop</literal> is more flexible than a <literal>While...Wend.</literal>"
-msgstr ""
+msgstr "L'uso di <literal>Do...Loop</literal> è più flessibile di un'istruzione <literal>While...Wend.</literal>."
#. DB6ZD
#: 03090203.xhp
@@ -23198,7 +23164,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "sText =\"This is a short text\""
-msgstr ""
+msgstr "sTesto =\"Questo è un breve testo\""
#. ATdAF
#: 03090203.xhp
@@ -23459,7 +23425,7 @@ msgctxt ""
"par_id471588670859073\n"
"help.text"
msgid "<emph>label: </emph>A line identifier indicating where to continue execution. The scope of a label is that of the routine it belongs to."
-msgstr ""
+msgstr "<emph>label:</emph> un identificatore per la riga che indica il punto dal quale continuare l'esecuzione. La visibilità di una label è all'interno della routine alla quale appartiene."
#. ocGjF
#: 03090302.xhp
@@ -23468,7 +23434,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "Use the <literal>GoTo</literal> statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and end it with a colon (\":\")."
-msgstr ""
+msgstr "L'istruzione <literal>GoTo</literal> indica a $[officename] Basic di continuare l'esecuzione del programma in un altro punto all'interno della procedura. La posizione deve essere indicata da un'etichetta. Per definire un'etichetta, assegnatele un nome seguito da due punti (\":\")."
#. 8o2aP
#: 03090302.xhp
@@ -24604,23 +24570,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Arresta l'esecuzione del programma Basic."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintassi:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Esempio:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24813,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Istruzione With\">Istruzione With</link>"
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Imposta un oggetto come oggetto predefinito. A meno che non venga dichiarato il nome di un altro oggetto, tutte le proprietà e i metodi faranno riferimento all'oggetto predefinito finché non verrà raggiunta l'istruzione End With."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintassi:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Usate <emph>With</emph> e <emph>End With</emph> se avete definito più proprietà o metodi per un singolo oggetto."
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -26150,7 +26116,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "[Global|Private|Public] Const name = expression[, ...]"
-msgstr ""
+msgstr "[Global|Private|Public] Const name = expression[, ...]"
#. 8cNC9
#: 03100700.xhp
@@ -26186,7 +26152,7 @@ msgctxt ""
"hd_id51593690561479\n"
"help.text"
msgid "Scope"
-msgstr ""
+msgstr "Ambito"
#. QwPhy
#: 03100700.xhp
@@ -26654,7 +26620,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "' Prefix definitions for variable types:"
-msgstr ""
+msgstr "' Prefissi che definiscono i tipi di variabile:"
#. QC5gr
#: 03101100.xhp
@@ -26672,7 +26638,7 @@ msgctxt ""
"par_id3151381\n"
"help.text"
msgid "bOK=True ' bOK is an implicit boolean variable"
-msgstr ""
+msgstr "bOK=True ' bOK è una variabile booleana implicita"
#. zabpF
#: 03101110.xhp
@@ -26816,7 +26782,7 @@ msgctxt ""
"par_idN105D3\n"
"help.text"
msgid "wSng=Single ' wSng is an implicit single variable"
-msgstr ""
+msgstr "wSng=Single ' wSng è una variabile implicita singola"
#. B2kjC
#: 03101130.xhp
@@ -31640,7 +31606,7 @@ msgctxt ""
"par_id3143228\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of <emph>n</emph> is 2,147,483,648."
-msgstr ""
+msgstr "<emph>n:</emph> espressione numerica che definisce il numero di spazi nella stringa. Il valore massimo consentito di <emph>n</emph> è 2.147.483.648."
#. xfAcE
#: 03120201.xhp
@@ -31712,7 +31678,7 @@ msgctxt ""
"par_id3154347\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 2,147,483,648."
-msgstr ""
+msgstr "<emph>n:</emph> espressione numerica che indica il numero di caratteri da restituire nella stringa. Il valore massimo consentito di n è 2.147.483.648."
#. uARjD
#: 03120202.xhp
@@ -32288,7 +32254,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgstr "<emph>n:</emph> espressione numerica che specifica il numero di caratteri da restituire. Se <emph>n</emph> = 0, viene restituita una stringa di lunghezza zero. Il valore massimo consentito è 2.147.483.648."
#. FPXvk
#: 03120303.xhp
@@ -32576,7 +32542,7 @@ msgctxt ""
"par_id3148451\n"
"help.text"
msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgstr "<emph>Lunghezza:</emph> espressione numerica che restituisce il numero di caratteri da sostituire o restituire. Il valore massimo consentito è 2.147.483.648."
#. Cw9Ts
#: 03120306.xhp
@@ -32693,7 +32659,7 @@ msgctxt ""
"par_id3151211\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgstr "<emph>n:</emph> espressione numerica che definisce il numero di caratteri da restituire. Se <emph>n</emph> = 0, viene restituita una stringa di lunghezza zero. Il valore massimo consentito è 2.147.483.648."
#. ezXrq
#: 03120307.xhp
@@ -34099,23 +34065,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "Riproduce un suono attraverso l'altoparlante del computer. Il suono dipende dal sistema e non è possibile modificarne il volume o l'altezza."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintassi:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Esempio:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
@@ -38813,7 +38770,7 @@ msgctxt ""
"par_id291592407073335\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/property.xhp\" name=\"Property statement\">Property statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/property.xhp\" name=\"Istruzione Property\">Istruzione Property</link>"
#. ZbXw2
#: ErrVBA.xhp
@@ -38903,7 +38860,7 @@ msgctxt ""
"N0017\n"
"help.text"
msgid "The VBA <literal>Err</literal> object has the following properties and methods:"
-msgstr ""
+msgstr "L'oggetto VBA <literal>Err</literal> possiede le proprietà e i metodi seguenti:"
#. ivkYo
#: ErrVBA.xhp
@@ -38930,7 +38887,7 @@ msgctxt ""
"N0022\n"
"help.text"
msgid "The error code associated with the error. <literal>Err</literal> object default property is <emph>Number</emph>. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err\">Err</link> function."
-msgstr ""
+msgstr "Il codice di errore associato all'errore. La proprietà predefinita dell'oggetto <literal>Err</literal> è <emph>Number</emph>. L'alias di %PRODUCTNAME Basic è la funzione <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err\">Err</link>."
#. NJEmn
#: ErrVBA.xhp
@@ -38957,7 +38914,7 @@ msgctxt ""
"N0027\n"
"help.text"
msgid "Resets description, <link href=\"text/sbasic/shared/03050100.xhp\" name=\"error line\">Erl</link>, number and source properties of current error. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050500.xhp\" name=\"Resume statement\">Resume</link> statement."
-msgstr ""
+msgstr "Reimposta la descrizione e le proprietà <link href=\"text/sbasic/shared/03050100.xhp\" name=\"riga errore\">Erl</link>, il numero e la sorgente dell'errore attivo. L'alias di %PRODUCTNAME Basic è l'istruzione <link href=\"text/sbasic/shared/03050500.xhp\" name=\"Istruzione Resume\">Resume</link>."
#. jnyJG
#: ErrVBA.xhp
@@ -38966,7 +38923,7 @@ msgctxt ""
"N0029\n"
"help.text"
msgid "Throws user-defined errors or predefined errors. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Error statement\">Error</link> statement."
-msgstr ""
+msgstr "Lancia gli errori definiti dall'utente o quelli predefiniti. L'alias di %PRODUCTNAME Basic è l'istruzione <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Istruzione Error\">Error</link>."
#. EyCJv
#: ErrVBA.xhp
@@ -38984,7 +38941,7 @@ msgctxt ""
"N0031\n"
"help.text"
msgid "<emph>Number</emph>: A user-defined or predefined error code to be raised."
-msgstr ""
+msgstr "<emph>Number</emph>: un codice di errore da generare, predefinito o definito dall'utente."
#. DoFG8
#: ErrVBA.xhp
@@ -39002,7 +38959,7 @@ msgctxt ""
"N0033\n"
"help.text"
msgid "<emph>Source</emph>: The name of the routine raising the error. A name in the form of \"myLibrary.myModule.myProc\" is recommended."
-msgstr ""
+msgstr "<emph>Source</emph>: il nome della routine che genera l'errore. Si consiglia di usare un nome nel formato \"miaLibreria.mioModulo.miaProc\"."
#. wFqtB
#: ErrVBA.xhp
@@ -39011,7 +38968,7 @@ msgctxt ""
"N0034\n"
"help.text"
msgid "<emph>Description</emph>: A description of the problem leading to stop the running process, accompanied with the various reasons that may cause it. A detailed list of the possible course of actions that may help solve the problem is recommended."
-msgstr ""
+msgstr "<emph>Description</emph> Una descrizione del problema che causa il blocco del processo in esecuzione, seguita dalle varie ragioni che possono causarlo. Si consiglia di prevedere un elenco dettagliato delle procedure che potrebbero essere utili per risolvere il problema."
#. q9uAh
#: ErrVBA.xhp
@@ -39020,7 +38977,7 @@ msgctxt ""
"N0041\n"
"help.text"
msgid "Err.Raise 2020, Description:=\"This is an intended user-defined error …\""
-msgstr ""
+msgstr "Err.Raise 2020, Description:=\"Questo è un errore intenzionale definito dall'utente …\""
#. vuP6g
#: ErrVBA.xhp
@@ -39245,7 +39202,7 @@ msgctxt ""
"par_id331586090532804\n"
"help.text"
msgid "<emph>label</emph>: Resets error information and resumes execution at the specified label of the current subroutine."
-msgstr ""
+msgstr "<emph>label</emph>: reimposta le informazioni sull'errore e riprende l'esecuzione dall'etichetta (label) specificata della subroutine corrente."
#. 7NaeS
#: Resume.xhp
@@ -39362,7 +39319,7 @@ msgctxt ""
"par_id461586091018138\n"
"help.text"
msgid "Using <literal>Resume</literal> without parameters to re-execute the faulty instruction can fit certain situations. However that may cause a never ending loop."
-msgstr ""
+msgstr "L'uso di <literal>Resume</literal> senza parametri per eseguire nuovamente l'istruzione fallace, può risolvere determinate situazioni. Questo però può portare a dei cicli infiniti."
#. t97uD
#: calc_functions.xhp
@@ -40010,7 +39967,7 @@ msgctxt ""
"par_id871592355721957\n"
"help.text"
msgid "IMSIN"
-msgstr ""
+msgstr "COMP.SEN"
#. LnpEu
#: calc_functions.xhp
@@ -40604,7 +40561,7 @@ msgctxt ""
"N0125\n"
"help.text"
msgid "Changing behavior of Basic <literal>Dir</literal> command. The directory flag (16) for the <literal>Dir</literal> command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned."
-msgstr ""
+msgstr "Cambio del comportamento <literal>Dir</literal> di Basic. Il flag di directory (16) per il comando <literal>Dir</literal> indica che vengono restituite solo directory in %PRODUCTNAME Basic, mentre in VBA vengono restituiti normali file e directory."
#. piCTC
#: compatibilitymode.xhp
@@ -41855,7 +41812,7 @@ msgctxt ""
"N0183\n"
"help.text"
msgid "A property, also called field or attribute, characterizes a given object or piece of information. Properties can be used to control access to data. It is common use to include instructions at setting or reading time of properties. Code can vary from simple assignment to complex context dependent routines. Using <emph>Get</emph>, <emph>Let</emph> or <emph>Set</emph> accessors enforces properties' consistency when necessary."
-msgstr ""
+msgstr "Una proprietà, chiamata anche campo o attributo, caratterizza un determinato oggetto o un pezzo di informazione. Le proprietà possono essere usate per controllare l'accesso ai dati. È pratica comune quella di inserire istruzioni al momento dell'impostazione o della lettura delle proprietà. Il codice, a seconda delle routine, può variare da una semplice istruzione fino ad un contesto complesso. Nei casi in cui ciò è necessario, l'uso delle istruzioni <emph>Get</emph>, <emph>Let</emph> o <emph>Set</emph> assicura la congruenza delle proprietà."
#. hD9fA
#: property.xhp
diff --git a/source/it/helpcontent2/source/text/scalc/00.po b/source/it/helpcontent2/source/text/scalc/00.po
index 692c134c6dd..ec6b26a73ed 100644
--- a/source/it/helpcontent2/source/text/scalc/00.po
+++ b/source/it/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-07 21:07+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/it/>\n"
@@ -1186,14 +1186,14 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr "<variable id=\"fete\">Scegliete <item type=\"menuitem\">Visualizza - Dividi finestra</item>.</variable>"
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
-msgstr "<variable id=\"fefix\">Scegliete <item type=\"menuitem\">Visualizza - Blocca celle - Fissa righe e colonne</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
+msgstr ""
#. BkQfX
#: 00000412.xhp
diff --git a/source/it/helpcontent2/source/text/scalc/guide.po b/source/it/helpcontent2/source/text/scalc/guide.po
index 8fba9c3ff03..2efbf7b9451 100644
--- a/source/it/helpcontent2/source/text/scalc/guide.po
+++ b/source/it/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-07 21:07+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/it/>\n"
@@ -7549,23 +7549,23 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "Per fissare sia orizzontalmente, sia verticalmente, selezionate la <emph>cella</emph> che si trova sotto la riga e a destra della colonna da fissare."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr "Menu <item type=\"menuitem\">Visualizza - Blocca celle - Fissa righe e colonne</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr "Per disattivare il blocco, scegliete di nuovo <item type=\"menuitem\">Visualizza - Blocca celle - Fissa righe e colonne</item>."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
#. U7GBK
#: line_fix.xhp
@@ -7585,14 +7585,14 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Per stampare una riga particolare su tutte le pagine del documento attivate il comando <item type=\"menuitem\">Formato - Aree di stampa - Modifica</item>."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Visualizza - Blocca celle - Fissa righe e colonne\">Visualizza - Blocca celle - Fissa righe e colonne</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
#. RbKLt
#: line_fix.xhp
diff --git a/source/it/helpcontent2/source/text/sdatabase.po b/source/it/helpcontent2/source/text/sdatabase.po
index 85658155fc0..96bf88af099 100644
--- a/source/it/helpcontent2/source/text/sdatabase.po
+++ b/source/it/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-09-17 17:44+0000\n"
+"PO-Revision-Date: 2020-12-08 10:36+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/it/>\n"
"Language: it\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.1.1\n"
#. ugSgG
#: 02000000.xhp
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Queries"
-msgstr ""
+msgstr "Ricerche"
#. nuBLG
#: 02000000.xhp
@@ -31,7 +31,7 @@ msgctxt ""
"bm_id3150445\n"
"help.text"
msgid "<bookmark_value>queries;overview (Base)</bookmark_value><bookmark_value>tables in databases; printing queries (Base)</bookmark_value><bookmark_value>printing; queries (Base)</bookmark_value><bookmark_value>queries; printing (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Ricerca;panoramica (Base)</bookmark_value><bookmark_value>Tabella nei database; stampare ricerche (Base)</bookmark_value><bookmark_value>Stampa; ricerche (Base)</bookmark_value><bookmark_value>Ricerca; stampare (Base)</bookmark_value>"
#. g7gAN
#: 02000000.xhp
@@ -40,7 +40,7 @@ msgctxt ""
"hd_id3150445\n"
"help.text"
msgid "<link href=\"text/sdatabase/02000000.xhp\" name=\"Queries\">Queries</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/02000000.xhp\" name=\"Ricerche\">Ricerche</link>"
#. KaF9w
#: 02000000.xhp
@@ -49,7 +49,7 @@ msgctxt ""
"par_id3150499\n"
"help.text"
msgid "A \"query\" is a special view of a table. A query can display chosen records or chosen fields within records; it can also sort those records. A query can apply to one table or to multiple tables, if they are linked by common data fields."
-msgstr ""
+msgstr "Una \"ricerca\" è una vista speciale di una tabella. Le ricerche permettono di visualizzare determinati record o un sottoinsieme di campi di ogni record e, se necessario, di ordinare le voci visualizzate. Ogni ricerca può essere applicata a una sola tabella o a più tabelle collegate da campi di dati comuni."
#. FG8C9
#: 02000000.xhp
@@ -58,7 +58,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "Use queries to find records from data tables based on certain criteria. All queries created for a database are listed under the <emph>Queries</emph> entry. Since this entry contains the database queries, it is also called the \"query container\"."
-msgstr ""
+msgstr "Le ricerche servono per selezionare in base a determinati criteri i record di dati dalle tabelle. Tutte le ricerche create per un database vengono elencate alla voce database <emph>Ricerche</emph>. Poiché questa voce raccoglie tutte le ricerche del database, viene chiamata anche \"Contenitore ricerche\"."
#. AuJW3
#: 02000000.xhp
@@ -67,7 +67,7 @@ msgctxt ""
"hd_id3153750\n"
"help.text"
msgid "Printing Queries"
-msgstr ""
+msgstr "Stampare una ricerca"
#. BVVMe
#: 02000000.xhp
@@ -76,7 +76,7 @@ msgctxt ""
"par_id3149183\n"
"help.text"
msgid "To print a query or table:"
-msgstr ""
+msgstr "Per stampare una ricerca o una tabella:"
#. zDMbu
#: 02000000.xhp
@@ -85,7 +85,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "Open a text document (or a spreadsheet document if you prefer the specific printing functions of this type of document)."
-msgstr ""
+msgstr "Aprite un documento di testo (o un foglio elettronico, se preferite le funzioni di stampa specifiche dei fogli elettronici)."
#. KFWTE
#: 02000000.xhp
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3149827\n"
"help.text"
msgid "Open the database file and click the Table icon if you want to print a table, or click the Query icon if you want to print a query."
-msgstr ""
+msgstr "Aprite il file del database e fate clic sull'icona di tabella per stampare una tabella o sull'icona di ricerca per stampare una ricerca."
#. 9ZPFm
#: 02000000.xhp
@@ -103,7 +103,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "Drag the name of the table or query into the open text document or spreadsheet. The dialog <link href=\"text/shared/02/12070000.xhp\" name=\"Insert Database Columns\">Insert Database Columns</link> opens."
-msgstr ""
+msgstr "Trascinate il nome della tabella o della ricerca nel documento di testo o nel foglio elettronico aperto. Si apre il dialogo <link href=\"text/shared/02/12070000.xhp\" name=\"Insert Database Columns\">Inserisci colonne di database</link>."
#. m5TnG
#: 02000000.xhp
@@ -112,7 +112,7 @@ msgctxt ""
"par_id3150443\n"
"help.text"
msgid "Decide which columns = data fields you want to include. You can also click the <emph>AutoFormat</emph> button and select a corresponding formatting type. Close the dialog."
-msgstr ""
+msgstr "Selezionate le colonne o i campi di dati da includere. In alternativa, potete fare clic sul pulsante <emph>Formattazione automatica</emph> e selezionare un tipo di formattazione corrispondente. Chiudete la finestra di dialogo."
#. AAQ4y
#: 02000000.xhp
@@ -121,7 +121,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "The query or table will be inserted into your document."
-msgstr ""
+msgstr "La ricerca o la tabella verranno inserite nel documento."
#. XDLzM
#: 02000000.xhp
@@ -130,7 +130,7 @@ msgctxt ""
"par_id3150503\n"
"help.text"
msgid "Print the document by choosing <emph>File - Print</emph>."
-msgstr ""
+msgstr "Stampate il documento scegliendo <emph>File - Stampa</emph>."
#. Kh9NG
#: 02000000.xhp
@@ -139,7 +139,7 @@ msgctxt ""
"par_id3153146\n"
"help.text"
msgid "You can also open the data source view (Ctrl+Shift+F4), select the entire database table in the data source view (click on the top left corner of the table), and then drag the selection to a text document or spreadsheet."
-msgstr ""
+msgstr "Potete anche aprire la vista sorgente dati (Ctrl+Maiusc+F4), selezionare l'intera tabella di database nella vista sorgente dati (clic sull'angolo superiore sinistro della tabella) e trascinare la selezione in un documento di testo o in un foglio elettronico."
#. PJjKX
#: 02000000.xhp
@@ -148,7 +148,7 @@ msgctxt ""
"hd_id3148946\n"
"help.text"
msgid "<link href=\"text/shared/main0212.xhp\" name=\"Sorting and Filtering Data\">Sorting and Filtering Data</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Ordinare e filtrare i dati\">Ordinare e filtrare i dati</link>"
#. ERCGr
#: 02000000.xhp
@@ -157,7 +157,7 @@ msgctxt ""
"par_id3149655\n"
"help.text"
msgid "Allows you to sort and filter the data in a query table."
-msgstr ""
+msgstr "Potete ordinare e filtrare i dati visualizzati nelle ricerche."
#. XpUzN
#: 02000000.xhp
@@ -166,7 +166,7 @@ msgctxt ""
"hd_id3153379\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Struttura ricerca\">Struttura ricerca</link>"
#. 3JCfK
#: 02000000.xhp
@@ -175,7 +175,7 @@ msgctxt ""
"par_id3151211\n"
"help.text"
msgid "With the <emph>Query Design</emph>, you can create and edit a query or view."
-msgstr ""
+msgstr "Usando la <emph>Struttura ricerca</emph>, potete creare e modificare una ricerca o una vista."
#. q79aD
#: 02000000.xhp
@@ -184,7 +184,7 @@ msgctxt ""
"hd_id3153968\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Through Several Tables\">Query Through Several Tables</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Ricerca su più tabelle\">Ricerca su più tabelle</link>"
#. ASeVi
#: 02000000.xhp
@@ -193,7 +193,7 @@ msgctxt ""
"par_id3151043\n"
"help.text"
msgid "The query result can contain data from several tables if these are linked to each other by suitable data fields."
-msgstr ""
+msgstr "Il risultato della ricerca può contenere dati di più tabelle, se queste sono collegate tra di loro altre mediante campi di dati adeguati."
#. uBo2H
#: 02000000.xhp
@@ -202,7 +202,7 @@ msgctxt ""
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Formulating Query Criteria\">Formulating Query Criteria</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Formulare i criteri di ricerca\">Formulare i criteri di ricerca</link>"
#. JTXBF
#: 02000000.xhp
@@ -211,7 +211,7 @@ msgctxt ""
"par_id3154910\n"
"help.text"
msgid "You can find out which operators and commands can be used to formulate the filter conditions for a query."
-msgstr ""
+msgstr "Potete scoprire quali operatori e comandi potete utilizzare per formulare le condizioni di filtro per una ricerca."
#. uCGCF
#: 02000000.xhp
@@ -220,7 +220,7 @@ msgctxt ""
"hd_id3156212\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Executing Functions\">Executing Functions</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Eseguire le funzioni\">Eseguire le funzioni</link>"
#. FWCVa
#: 02000000.xhp
@@ -229,7 +229,7 @@ msgctxt ""
"par_id3144762\n"
"help.text"
msgid "You can perform calculations with the data of a table and store the results as a query result."
-msgstr ""
+msgstr "Potete eseguire calcoli con i dati di una tabella e memorizzare i risultati come risultato della ricerca."
#. BncmA
#: 02000002.xhp
@@ -238,7 +238,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Missing Element"
-msgstr ""
+msgstr "Elemento mancante"
#. noWgR
#: 02000002.xhp
@@ -247,7 +247,7 @@ msgctxt ""
"bm_id3150445\n"
"help.text"
msgid "<bookmark_value>queries; missing elements (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Ricerca; elementi mancanti (Base)</bookmark_value>"
#. EoEQz
#: 02000002.xhp
@@ -256,7 +256,7 @@ msgctxt ""
"hd_id3150445\n"
"help.text"
msgid "Missing Element"
-msgstr ""
+msgstr "Elemento mancante"
#. X2NF9
#: 02000002.xhp
@@ -265,7 +265,7 @@ msgctxt ""
"par_id3150247\n"
"help.text"
msgid "If a query in which tables or fields no longer exist is opened, the<emph> Missing Element </emph>dialog appears. This dialog names the missing table or the field which cannot be interpreted and allows you to decide how to continue with the procedure."
-msgstr ""
+msgstr "Se aprite una ricerca nella quale si fa riferimento a tabelle o campi che non esistono più, appare una finestra di dialogo che riporta l'<emph>elemento mancante</emph>. Questa finestra di dialogo visualizza il nome della tabella o del campo mancante che il sistema non può interpretare e consente di decidere come continuare la procedura."
#. fBc3m
#: 02000002.xhp
@@ -274,7 +274,7 @@ msgctxt ""
"hd_id3145072\n"
"help.text"
msgid "How to continue?"
-msgstr ""
+msgstr "Come intendete procedere?"
#. wV7Bh
#: 02000002.xhp
@@ -283,7 +283,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "There are three options available for answering this question:"
-msgstr ""
+msgstr "In risposta a questa domanda sono disponibili tre opzioni:"
#. nwD7D
#: 02000002.xhp
@@ -292,7 +292,7 @@ msgctxt ""
"hd_id3147576\n"
"help.text"
msgid "Do you really want to open the query in the graphic view?"
-msgstr ""
+msgstr "Aprire ugualmente la ricerca nella vista grafica"
#. 2DqMn
#: 02000002.xhp
@@ -301,7 +301,7 @@ msgctxt ""
"par_id3166461\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/sdatabase/02010100.xhp\" name=\"Design View\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
-msgstr ""
+msgstr "<ahelp hid=\".\">Permette di aprire la ricerca nella <link href=\"text/sdatabase/02010100.xhp\" name=\"Vista struttura\">vista Struttura</link>, nonostante gli elementi mancanti.</ahelp> Questa opzione vi consente inoltre di specificare se desiderate ignorare altri errori."
#. DX2vA
#: 02000002.xhp
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3153031\n"
"help.text"
msgid "The query is opened in the Design View (the graphical interface). Missing tables appear blank and invalid fields appear with their (invalid) names in the list of fields. This lets you work with exactly those fields that caused the error."
-msgstr ""
+msgstr "La ricerca viene aperta nella vista Struttura (l'interfaccia grafica). Le tabelle mancanti appaiono vuote e i campi non validi vengono visualizzati con i relativi nomi (non validi) nell'elenco dei campi. In questo modo potrete lavorare esattamente sui campi che hanno provocato l'errore."
#. 477G3
#: 02000002.xhp
@@ -319,7 +319,7 @@ msgctxt ""
"hd_id3149578\n"
"help.text"
msgid "Open the query in the SQL View"
-msgstr ""
+msgstr "Apri la ricerca nella vista SQL"
#. Axfxy
#: 02000002.xhp
@@ -328,7 +328,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to open the query design in the <link href=\"text/sdatabase/02010100.xhp\" name=\"SQL Mode\">SQL Mode</link> and to interpret the query as a <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">Native SQL</link>.</ahelp> You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)."
-msgstr ""
+msgstr "<ahelp hid=\".\">Permette di aprire la struttura ricerca in <link href=\"text/sdatabase/02010100.xhp\" name=\"Modo SQL\">modo SQL</link> e di interpretare la ricerca come <link href=\"text/shared/02/14030000.xhp\" name=\"SQL nativo\">SQL nativo</link>.</ahelp> Potete uscire dal modo SQL nativo solo quando l'istruzione di $[officename] è stata completamente interpretata (questo è possibile solo se le tabelle o i campi utilizzati nella ricerca esistono veramente)."
#. 2N4uG
#: 02000002.xhp
@@ -337,7 +337,7 @@ msgctxt ""
"hd_id3150984\n"
"help.text"
msgid "Do not open the query"
-msgstr ""
+msgstr "Non aprire la ricerca"
#. 9hCbd
#: 02000002.xhp
@@ -346,7 +346,7 @@ msgctxt ""
"par_id3156329\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to cancel the procedure and specify that the query should not be opened.</ahelp> This option corresponds to the function of the <emph>Cancel</emph> dialog button."
-msgstr ""
+msgstr "<ahelp hid=\".\">Permette di annullare la procedura e specificare che la ricerca non deve essere aperta.</ahelp> Questa opzione corrisponde alla funzione del pulsante <emph>Interrompi</emph> della finestra di dialogo."
#. 4QDUr
#: 02000002.xhp
@@ -355,7 +355,7 @@ msgctxt ""
"hd_id3148492\n"
"help.text"
msgid "Also ignore similar errors"
-msgstr ""
+msgstr "Ignora anche tutti gli altri errori simili"
#. tv3MZ
#: 02000002.xhp
@@ -364,7 +364,7 @@ msgctxt ""
"par_id3154285\n"
"help.text"
msgid "<ahelp hid=\".\">If you selected the first option, but you still want to open the query in the graphics view in spite of missing elements, you can specify whether other errors are ignored.</ahelp> Therefore, in the current opening process, no error message will be displayed if the query can not be correctly interpreted."
-msgstr ""
+msgstr "<ahelp hid=\".\">Se è stata selezionata la prima opzione, ma si vuole comunque aprire la ricerca nella vista disegno nonostante manchino degli elementi, è possibile indicare se devono essere ignorati anche altri errori.</ahelp> Pertanto, nell'attuale processo di apertura, non verranno visualizzati messaggi di errore se la ricerca non può essere interpretata correttamente."
#. E3MVS
#: 02010100.xhp
@@ -373,7 +373,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Query Design"
-msgstr ""
+msgstr "Struttura ricerca"
#. Ys2sC
#: 02010100.xhp
@@ -382,7 +382,7 @@ msgctxt ""
"bm_id3153323\n"
"help.text"
msgid "<bookmark_value>views; creating database views (Base)</bookmark_value> <bookmark_value>queries; creating in design view (Base)</bookmark_value> <bookmark_value>designing; queries (Base)</bookmark_value> <bookmark_value>design view; queries/views (Base)</bookmark_value> <bookmark_value>joining;tables (Base)</bookmark_value> <bookmark_value>tables in databases; joining for queries (Base)</bookmark_value> <bookmark_value>queries; joining tables (Base)</bookmark_value> <bookmark_value>tables in databases; relations (Base)</bookmark_value> <bookmark_value>relations; joining tables (Base)</bookmark_value> <bookmark_value>queries; deleting table links (Base)</bookmark_value> <bookmark_value>criteria of query design (Base)</bookmark_value> <bookmark_value>queries; formulating filter conditions (Base)</bookmark_value> <bookmark_value>filter conditions;in queries (Base)</bookmark_value> <bookmark_value>parameters; queries (Base)</bookmark_value> <bookmark_value>queries; parameter queries (Base)</bookmark_value> <bookmark_value>SQL; queries (Base)</bookmark_value> <bookmark_value>native SQL (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Vista; creare viste del database (Base)</bookmark_value><bookmark_value>Ricerca; creare nella vista struttura (Base)</bookmark_value><bookmark_value>Progettare; ricerche (Base)</bookmark_value><bookmark_value>Vista struttura; ricerche/viste (Base)</bookmark_value><bookmark_value>Collegare;tabelle (Base)</bookmark_value><bookmark_value>Tabella nei database; collegare per ricerche (Base)</bookmark_value><bookmark_value>Ricerca; collegare tabelle (Base)</bookmark_value><bookmark_value>Tabella nei database; relazioni (Base)</bookmark_value><bookmark_value>Relazione; collegare tabelle (Base)</bookmark_value><bookmark_value>Ricerca; eliminare i collegamenti della tabella (Base)</bookmark_value><bookmark_value>Criteri per struttura ricerca (Base)</bookmark_value><bookmark_value>Ricerca; formulare condizioni filtro (Base)</bookmark_value><bookmark_value>Condizione filtro;in ricerche (Base)</bookmark_value><bookmark_value>Parametro; ricerche (Base)</bookmark_value><bookmark_value>Ricerca; ricerche parametri (Base)</bookmark_value><bookmark_value>SQL; ricerche (Base)</bookmark_value><bookmark_value>SQL nativo (Base)</bookmark_value>"
#. fmcBY
#: 02010100.xhp
@@ -391,7 +391,7 @@ msgctxt ""
"hd_id3153394\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Struttura ricerca\">Struttura ricerca</link>"
#. GU8Jd
#: 02010100.xhp
@@ -400,7 +400,7 @@ msgctxt ""
"par_id3156411\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Query Design View </emph>allows you to create and edit a database query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">La <emph>vista Struttura ricerca</emph> permette di creare e modificare una ricerca in un database.</ahelp>"
#. vGBE5
#: 02010100.xhp
@@ -409,7 +409,7 @@ msgctxt ""
"par_id7024140\n"
"help.text"
msgid "Most databases use queries to filter or to sort database tables to display records on your computer. Views offer the same functionality as queries, but on the server side. If your database is on a server that supports views, you can use views to filter the records on the server to speed up the display time."
-msgstr ""
+msgstr "La maggior parte dei database usa ricerche (query) per filtrare o per ordinare le tabelle del database ai fini della visualizzazione dei record sul computer. Le viste offrono la stessa funzionalità delle ricerche, ma sul lato server. Se il vostro database si trova su un server che supporta le viste, potete utilizzare questa funzionalità per filtrare i record sul server e accelerare il tempo di visualizzazione."
#. WZcUE
#: 02010100.xhp
@@ -418,7 +418,7 @@ msgctxt ""
"par_id3159176\n"
"help.text"
msgid "Selecting the <emph>Create View</emph> command from the <emph>Tables</emph> tab page of a database document, you see the <emph>View Design</emph> window that resembles the <emph>Query Design</emph> window described here."
-msgstr ""
+msgstr "Selezionate il comando <emph>Crea vista</emph> dalla scheda <emph>Tabelle</emph> di un documento database, comparirà la finestra <emph>Struttura vista</emph> che somiglia alla finestra <emph>Struttura ricerca</emph> descritta qui."
#. JMyC7
#: 02010100.xhp
@@ -427,7 +427,7 @@ msgctxt ""
"par_id8307138\n"
"help.text"
msgid "The Query Design window layout is stored with a created query, but cannot be stored with a created view."
-msgstr ""
+msgstr "La disposizione della finestra Struttura ricerca è memorizzata assieme alla ricerca creata, ma non può essere memorizzata assieme a una vista creata."
#. TEBj6
#: 02010100.xhp
@@ -436,7 +436,7 @@ msgctxt ""
"hd_id3149233\n"
"help.text"
msgid "The Design View"
-msgstr ""
+msgstr "La vista Struttura"
#. zkTQc
#: 02010100.xhp
@@ -445,7 +445,7 @@ msgctxt ""
"par_id3145673\n"
"help.text"
msgid "To create a query, click the <emph>Queries</emph> icon in a database document, then click <emph>Create Query in Design View</emph>."
-msgstr ""
+msgstr "Per creare una ricerca, fate clic sull'icona <emph>Ricerche</emph> in un documento database, quindi scegliete <emph>Crea ricerca in vista struttura</emph>."
#. EN5uU
#: 02010100.xhp
@@ -454,7 +454,7 @@ msgctxt ""
"par_id3150255\n"
"help.text"
msgid "The lower pane of the Design View is where you <link href=\"text/sdatabase/020010100.xhp\" name=\"define\">define</link> the query. To define a query, specify the database <link href=\"text/sdatabase/020010100.xhp\" name=\"field names\">field names</link> to include and the <link href=\"text/sdatabase/020010100.xhp\" name=\"criteria\">criteria</link> for displaying the fields. To rearrange the columns in the lower pane of the Design View, drag a column header to a new location, or select the column and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+arrow key."
-msgstr ""
+msgstr "La parte inferiore della vista struttura è l'area in cui potete <link href=\"text/sdatabase/020010100.xhp\" name=\"definire\">definire</link> la ricerca. A tale scopo, specificate i <link href=\"text/sdatabase/020010100.xhp\" name=\"nomi dei campi\">nomi dei campi</link> del database da includere e i <link href=\"text/sdatabase/020010100.xhp\" name=\"criteri\">criteri</link> per la loro visualizzazione. Per ridisporre le colonne nella parte inferiore della vista struttura, trascinate l'intestazione di una colonna nella posizione desiderata, oppure selezionate la colonna e premete <switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+tasto freccia."
#. GMVkG
#: 02010100.xhp
@@ -463,7 +463,7 @@ msgctxt ""
"par_id3152474\n"
"help.text"
msgid "In the top of the query Design View window, the <link href=\"text/shared/main0214.xhp\" name=\"icons\">icons</link> of the <emph>Query Design</emph> Bar and the <emph>Design</emph> bar are displayed."
-msgstr ""
+msgstr "La parte superiore della finestra vista Struttura ricerca mostra le <link href=\"text/shared/main0214.xhp\" name=\"icone\">icone</link> della barra <emph>Struttura ricerca</emph> e della barra <emph>Struttura</emph>."
#. hYsxY
#: 02010100.xhp
@@ -472,7 +472,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "If you want to test a query, double-click the query name in the database document. The query result is displayed in a table similar to the Data Source View. Note: the table displayed is only temporary."
-msgstr ""
+msgstr "Per provare una ricerca, fate doppio clic sul nome della ricerca nel documento di database. Il risultato della ricerca viene visualizzato in una tabella simile alla vista della sorgente dati. Nota: la tabella visualizzata è solo temporanea."
#. B4HEH
#: 02010100.xhp
@@ -481,7 +481,7 @@ msgctxt ""
"hd_id8226264\n"
"help.text"
msgid "Keys in Query Design View"
-msgstr ""
+msgstr "Tasti nella vista Struttura ricerca"
#. Cvd4o
#: 02010100.xhp
@@ -490,7 +490,7 @@ msgctxt ""
"par_id2341074\n"
"help.text"
msgid "Key"
-msgstr ""
+msgstr "Tasto"
#. mCy9S
#: 02010100.xhp
@@ -499,7 +499,7 @@ msgctxt ""
"par_id4384289\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Funzione"
#. yybiC
#: 02010100.xhp
@@ -508,7 +508,7 @@ msgctxt ""
"par_id5839106\n"
"help.text"
msgid "F4"
-msgstr ""
+msgstr "F4"
#. FMTZD
#: 02010100.xhp
@@ -517,7 +517,7 @@ msgctxt ""
"par_id8554338\n"
"help.text"
msgid "Preview"
-msgstr ""
+msgstr "Anteprima"
#. YQhGF
#: 02010100.xhp
@@ -526,7 +526,7 @@ msgctxt ""
"par_id1254921\n"
"help.text"
msgid "F5"
-msgstr ""
+msgstr "F5"
#. C9yhE
#: 02010100.xhp
@@ -535,7 +535,7 @@ msgctxt ""
"par_id7636646\n"
"help.text"
msgid "Run Query"
-msgstr ""
+msgstr "Esegui ricerca"
#. jdEeJ
#: 02010100.xhp
@@ -544,7 +544,7 @@ msgctxt ""
"par_id8579363\n"
"help.text"
msgid "F7"
-msgstr ""
+msgstr "F7"
#. 6Y6Uw
#: 02010100.xhp
@@ -553,7 +553,7 @@ msgctxt ""
"par_id3227942\n"
"help.text"
msgid "Add Table or Query"
-msgstr ""
+msgstr "Aggiungi tabella o ricerca"
#. WN7wR
#: 02010100.xhp
@@ -562,7 +562,7 @@ msgctxt ""
"hd_id3154939\n"
"help.text"
msgid "Browse"
-msgstr ""
+msgstr "Sfoglia"
#. 5y4VZ
#: 02010100.xhp
@@ -571,7 +571,7 @@ msgctxt ""
"par_id3148799\n"
"help.text"
msgid "When you open the query design for the first time, you see a dialog in which you must first select the table or query that will be the basis for your new query."
-msgstr ""
+msgstr "Alla prima apertura della struttura ricerca, si apre una finestra di dialogo in cui dovete per prima cosa selezionare la tabella o la ricerca da utilizzare come base per la vostra nuova ricerca."
#. FBQA9
#: 02010100.xhp
@@ -580,7 +580,7 @@ msgctxt ""
"par_id3144762\n"
"help.text"
msgid "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Double-click fields to add them to the query. Drag-and-drop to define relations.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Fare doppio clic sui comandi di campo per aggiungerli alla ricerca. Usare il metodo Drag&Drop per definire le relazioni.</ahelp>"
#. eG8FD
#: 02010100.xhp
@@ -589,7 +589,7 @@ msgctxt ""
"par_id3157894\n"
"help.text"
msgid "While designing a query, you cannot modify the selected tables."
-msgstr ""
+msgstr "Durante la strutturazione della ricerca non potete modificare le tabelle selezionate."
#. NLywF
#: 02010100.xhp
@@ -598,7 +598,7 @@ msgctxt ""
"hd_id3149562\n"
"help.text"
msgid "Remove tables"
-msgstr ""
+msgstr "Rimuovi tabelle"
#. TbQzA
#: 02010100.xhp
diff --git a/source/it/helpcontent2/source/text/sdraw/01.po b/source/it/helpcontent2/source/text/sdraw/01.po
index 119f06de6a2..d81f6665a0f 100644
--- a/source/it/helpcontent2/source/text/sdraw/01.po
+++ b/source/it/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-06-29 11:28+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/it/>\n"
@@ -916,14 +916,14 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Permette di impostare l'orientazione della pagina, i margini, lo sfondo e altri aspetti del layout.</ahelp></variable>"
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr "Per modificare lo sfondo di tutte le pagine del file attivo, selezionate uno sfondo, fate clic su <emph>OK</emph> e quindi su <emph>Sì</emph> nella finestra di dialogo <emph>Impostazione pagina</emph>."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
+msgstr ""
#. DA7cH
#: rename_page.xhp
diff --git a/source/it/helpcontent2/source/text/shared/01.po b/source/it/helpcontent2/source/text/shared/01.po
index 7cfece49db9..25b9f68460a 100644
--- a/source/it/helpcontent2/source/text/shared/01.po
+++ b/source/it/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-22 12:35+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/it/>\n"
@@ -7999,14 +7999,14 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr "Il carattere rappresentato dal codice esadecimale Unicode a otto cifre (XXXXXXXX)."
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "Per determinati caratteri simbolo il codice Unicode per i caratteri speciali dipende dal tipo di carattere in uso. È possibile visualizzare i codici Unicode scegliendo <menuitem>Inserisci - Carattere speciale</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
+msgstr ""
#. 6Swuu
#: 02100001.xhp
diff --git a/source/it/helpcontent2/source/text/shared/guide.po b/source/it/helpcontent2/source/text/shared/guide.po
index 71933cd4bb9..959c0c360f5 100644
--- a/source/it/helpcontent2/source/text/shared/guide.po
+++ b/source/it/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-05 15:35+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/it/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Lavorare con %PRODUCTNAME\">Lavorare con <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr "FictionBook 2.0"
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Documento HTML"
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr "Testo OpenDocument (XML semplice)"
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 - Documento di testo"
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 - Documento di testo"
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 - Documento di testo"
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr "PDF - Portable Document Format"
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr "Documento T602"
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr "Testo"
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr "Testo"
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr "Filtri per Graphicfilter"
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD Interchange Format"
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr "EMF - Enhanced Meta File"
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr "EMF - Enhanced Meta File"
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Encapsulated PostScript"
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr "EPS - Encapsulated PostScript"
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr "GIF - Graphics Interchange"
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr "GIF - Graphics Interchange"
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr "testo/html"
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr "testo/html"
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr "JPEG - Joint Photographic Experts Group"
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr "JPEG - Joint Photographic Experts Group"
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr "MET - OS/2 Metafile"
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr "MOV - Formato QuickTime"
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr "PCD - Photo CD Base4"
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr "PCT - Mac Pict"
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr "PCX - Zsoft Paintbrush"
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr "PGM - Portable Graymap"
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "PGM - Portable Graymap"
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Portable Network Graphic"
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - Portable Network Graphic"
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Portable Pixelmap"
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr "PSD - Adobe Photoshop"
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr "RAS - Sun Raster Image"
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Image"
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr "SVG - Disegno Scalable Vector Graphics"
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr "SVM - StarView Meta File"
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr "TGA - Truevision Targa"
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr "TIFF - Tagged Image File Format"
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr "WMF - Windows Metafile"
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr "XBM - X Bitmap"
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "Programma di notifica errori"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>Errore; programma di notifica</bookmark_value> <bookmark_value>Notifica; errori</bookmark_value> <bookmark_value>Errore di programma; notifiche</bookmark_value> <bookmark_value>Attivare; programma di notifica errori</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Programma di notifica errori\">Programma di notifica errori</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "Lo strumento di notifica errori si avvia automaticamente quando si verifica un errore del programma."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "Il programma di notifica errori raccoglie tutte le informazioni necessarie per consentire ai programmatori di migliorare il codice, in modo da evitare che lo stesso problema si ripresenti nelle versioni successive. Aiutateci a migliorare il software inviandoci il rapporto di errori che è stato generato."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "Avviare il Programma di notifica errori"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "Lo strumento di notifica errori si avvierà automaticamente per la maggior parte degli errori del programma."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "Completare il rapporto"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "Nella finestra di dialogo principale del Programma di notifica errori potete aggiungere anche alcuni dati supplementari che potrebbero aiutare i programmatori ad individuare l'errore. Ad esempio, se l'errore appare solo dopo una modifica del vostro ambiente hardware o software, oppure se avete fatto clic su un pulsante, vi preghiamo di includere tali informazioni."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "Inviare il rapporto degli errori"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "Il programma di notifica errori usa il protocollo HTTP PUT / SOAP per inviare i dati del rapporto. Volendo, potete inserire un testo descrittivo che ci aiuti a identificare il contesto dell'errore del programma. Fate quindi clic sul pulsante <emph>Invia</emph>."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "Non riceverete alcuna risposta al rapporto errori inviato. Se avete bisogno di supporto, visitate il <link href=\"text/shared/main0108.xhp\">forum di supporto</link> in Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "I dati inviati"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "Il rapporto degli errori è formato da diversi file. Il file principale contiene informazioni sul tipo di errore, il nome e la versione del sistema operativo, informazioni sull'utilizzo della memoria e la descrizione inserita dall'utente. Per sapere quali informazioni verranno incluse nel file principale, fate clic sul pulsante <emph>Mostra notifica</emph> nella finestra di dialogo principale del programma di notifica errori."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "Oltre a questo, alcuni programmi standard del sistema (\"dbhhelp.dll\" sui sistemi Windows, \"pstack\" sui sistemi UNIX) raccolgono informazioni rilevanti sul contenuto della memoria e sugli stack. Anche queste informazioni vengono inviate insieme al rapporto."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "Vi invitiamo a fare attenzione e generare per ogni fax un'operazione di stampa distinta, in modo da evitare che il primo destinatario riceva tutti i fax. Nella finestra di dialogo<emph> Strumenti - Stampa in serie</emph> selezionate l'opzione <emph>Stampante</emph>, quindi <emph>Crea singoli ordini di stampa</emph>."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "Cambiare i modelli predefiniti"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>Modificare, visualizzare cambiamenti</bookmark_value><bookmark_value>Cambiare, vedere anche modificare e sostituire</bookmark_value><bookmark_value>Modelli predefinito; modificare</bookmark_value><bookmark_value>Predefinito; documenti</bookmark_value><bookmark_value>Modelli personalizzato</bookmark_value><bookmark_value>Aggiornare; modelli</bookmark_value><bookmark_value>Modificare; modelli</bookmark_value><bookmark_value>Modello; modificare e salvare</bookmark_value><bookmark_value>Salvare; modelli</bookmark_value><bookmark_value>Reimpostare; modelli</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Cambiare i modelli predefiniti\">Cambiare i modelli predefiniti</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,113 +21832,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "Se aprite un nuovo documento dal menu <emph>File - Nuovo</emph>, viene visualizzato un nuovo documento basato su un modello standard di $[officename]. Potete elaborare e modificare questo documento oppure sostituirlo con un documento già esistente, cosicché all'apertura di un nuovo documento sia visualizzato quello da voi personalizzato nello stile e nel contenuto."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "Modificare i modelli predefiniti"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "Aprite innanzitutto un modello $[officename] già esistente e modificatelo oppure aprite un nuovo documento e strutturatelo in modo tale che corrisponda alle vostre idee di modello."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "Potete definire un modello per ogni modulo di $[officename]. Qui di seguito descriviamo la procedura per i documenti di testo."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "Salvate quindi il documento scegliendo <emph>File - Modelli - Salva come modello</emph> e selezionando la categoria <emph>Personalizzati</emph>."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "Selezionate <emph>File - Nuovo - Modelli</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
-msgstr "Fate doppio clic su <emph>Personalizzati</emph> all'interno dell'elenco. I modelli personalizzati saranno mostrati nella cartella utente specificata in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Percorsi</emph>. Selezionate il modello che avete appena salvato."
+msgid "Use <emph>Filter</emph> to select the type of document."
+msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "Scegliete <emph>Imposta come predefinito</emph>. Quando si aprirà un nuovo documento di testo, questo si baserà sul nuovo modello di documento predefinito."
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
-#. GuEWL
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "Utilizzare i modelli personalizzati"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "I modelli personalizzati vi consentono di facilitare il lavoro."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "Modelli nella cartella modelli"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "È possibile salvare un nuovo modello con il comando <emph>File - Modelli - Salva come modello</emph> o selezionando il tipo di file \"Modello\" in qualsiasi finestra di salvataggio. Salvate il modello nella cartella utente definita in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Percorsi</emph>, in modo da poter accedere al modello dalla finestra di dialogo <emph>File - Nuovo - Modelli</emph>."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
+msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "Se volete modificare personalmente il modello, potete aprire il file dal comando di menu <emph>File - Nuovo - Modelli</emph> e premere sul pulsante <emph>Modifica</emph>."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24253,14 +24100,14 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr "Consultate <link href=\"text/swriter/guide/templates_styles.xhp\">Modelli e stili</link> per le relative informazioni."
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr "Consultate <link href=\"text/swriter/guide/template_create.xhp\">Creare un modello di documento</link> per le relative informazioni."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
+msgstr ""
#. AGfmF
#: template_manager.xhp
diff --git a/source/it/helpcontent2/source/text/shared/optionen.po b/source/it/helpcontent2/source/text/shared/optionen.po
index 9953e11c77e..0b0a0babc3a 100644
--- a/source/it/helpcontent2/source/text/shared/optionen.po
+++ b/source/it/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-11-19 19:35+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/it/>\n"
@@ -3427,14 +3427,14 @@ msgctxt ""
msgid "View"
msgstr "Vista"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>Vista; predefinite</bookmark_value><bookmark_value>Predefinita; vista</bookmark_value><bookmark_value>Impostare; viste</bookmark_value><bookmark_value>Icona; dimensioni</bookmark_value> <bookmark_value>Icona; stili</bookmark_value> <bookmark_value>WYSIWYG nell'elenco dei caratteri</bookmark_value><bookmark_value>Anteprima; elenchi di caratteri</bookmark_value><bookmark_value>Tipo di carattere; elenchi</bookmark_value><bookmark_value>Tipo di carattere; casella del nome</bookmark_value><bookmark_value>Mouse; posizionare</bookmark_value><bookmark_value>Appunti; selezione dagli appunti</bookmark_value><bookmark_value>Selezione; dagli appunti</bookmark_value> <bookmark_value>OpenGL;impostazioni</bookmark_value> <bookmark_value>OpenGL;lista nera</bookmark_value> <bookmark_value>OpenGL;lista bianca</bookmark_value> <bookmark_value>OpenGL;risultato immagine</bookmark_value><bookmark_value>Notebook, barra; dimensione icone</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgstr ""
#. cGjPM
#: 01010800.xhp
@@ -3454,59 +3454,59 @@ msgctxt ""
msgid "Specifies view options."
msgstr "In questa finestra potete specificare le opzioni relative alla visualizzazione."
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
-msgstr "Interfaccia utente"
+msgid "Icon style"
+msgstr "Stile icone"
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
-msgstr "Dimensione icone barra degli strumenti"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifica lo stile delle icone per le icone presenti nelle barre degli strumenti e nelle finestre.</ahelp>"
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifica la dimensione con cui vengono visualizzate le icone delle barre degli strumenti.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> L'opzione <emph>Automatico</emph> utilizza per i menu la dimensione del carattere impostata a livello del sistema operativo.</caseinline></switchinline>"
+msgid "Icon Size"
+msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
-msgstr "Dimensioni icone barra laterale"
+msgid "Toolbar"
+msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifica la dimensione di visualizzazione delle icone della barra laterale.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
+msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
-msgstr "Dimensioni icone barra notebook"
+msgid "Notebookbar"
+msgstr ""
#. 29iV7
#: 01010800.xhp
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifica la dimensione di visualizzazione delle icone della <link href=\"text/shared/01/notebook_bar.xhp\">barra notebook</link>.</ahelp>"
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
-msgstr "Stile icone"
+msgid "Sidebar"
+msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifica lo stile delle icone per le icone presenti nelle barre degli strumenti e nelle finestre.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifica la dimensione di visualizzazione delle icone della barra laterale.</ahelp>"
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "Antialiasing dei caratteri a schermo"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Selezionarlo per rendere più uniforme l'aspetto del testo sullo schermo.</ahelp>"
+msgid "Menu icons"
+msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Digitare la dimensione del carattere più piccola a cui applicare l'antialiasing.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Mostra delle icone in prossimità delle corrispondenti voci di menu. Selezionate tra \"Automatico\", \"Nascondi\" e \"Mostra\". \"Automatico\" mostrerà le icone in base alle impostazioni di sistema e al tema in uso.</ahelp>"
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,14 +3589,14 @@ msgctxt ""
msgid "Mouse"
msgstr "Mouse"
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
-msgstr "Posizionamento del mouse"
+msgid "Positioning"
+msgstr ""
#. aYKpK
#: 01010800.xhp
@@ -3589,14 +3607,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifica se e come il puntatore del mouse debba essere posizionato all'apertura delle finestre di dialogo.</ahelp>"
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
-msgstr "Pulsante centrale del mouse"
+msgid "Middle button"
+msgstr ""
#. 6Qe9V
#: 01010800.xhp
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr "L'operazione viene eseguita sull'ultima selezione."
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "Risultato immagine"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Premere Maiusc+Ctrl+R per ripristinare o aggiornare la vista del documento attivo.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Premere Maiusc+Ctrl+R per ripristinare o aggiornare la vista del documento attivo.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,68 +3805,59 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/useaa\">Se supportato, è possibile abilitare o disabilitare l'antialiasing nelle immagini. Con l'antialiasing abilitato, la maggior parte degli oggetti grafici appare più smorzata nei contorni.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
-msgstr "Usa OpenGL per tutti i rendering (al riavvio)"
+msgid "Use Skia for all rendering (on restart)"
+msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Usare le alte prestazioni della Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) per rappresentare tutti gli elementi visuali dell'applicazione, incluso le finestre, i menu, le barre degli strumenti e le icone.</ahelp> OpenGL usa la scheda grafica del computer per accelerare la resa grafica. Se il dispositivo è in lista nera (vedere sotto), questa opzione non funzionerà."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
+msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr "Forza OpenGL anche se in lista nera (al riavvio)"
+msgid "Force Skia software rendering (on restart)"
+msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
-msgstr "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forza l'uso di OpenGL anche se la scheda grafica è in lista nera.</ahelp> Un dispositivo è in lista nera quando difetta o rappresenta la grafica con qualità scarsa."
-
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "Menu"
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
+msgstr ""
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
-msgstr "Icone nei menu"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
+msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Mostra delle icone in prossimità delle corrispondenti voci di menu. Selezionate tra \"Automatico\", \"Nascondi\" e \"Mostra\". \"Automatico\" mostrerà le icone in base alle impostazioni di sistema e al tema in uso.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
+msgstr ""
#. wPnrb
#: 01010800.xhp
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Mostra i nomi e l'aspetto dei tipi di carattere selezionabili, ad esempio quelli della casella Tipo di carattere nella barra <emph>Formattazione</emph>.</ahelp>"
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "Antialiasing dei caratteri a schermo"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aafont\">Selezionarlo per rendere più uniforme l'aspetto del testo sullo schermo.</ahelp>"
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Digitare la dimensione del carattere più piccola a cui applicare l'antialiasing.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/guide.po b/source/it/helpcontent2/source/text/swriter/guide.po
index 5f51d5b14a4..aff008cf857 100644
--- a/source/it/helpcontent2/source/text/swriter/guide.po
+++ b/source/it/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-07 21:07+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/it/>\n"
@@ -12518,13 +12518,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12563,13 +12563,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12590,58 +12590,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12671,13 +12653,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16910,14 +16892,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "Se non specificato diversamente, tutti i nuovi documenti di testo di $[officename] sono basati sul modello predefinito."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] dispone di vari <link href=\"text/swriter/01/05130000.xhp\" name=\"modelli predefiniti\">modelli predefiniti</link> che permettono di creare diversi tipi di documento di testo, ad esempio le lettere commerciali."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17270,14 +17252,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "Per impostare il comportamento del cursore diretto, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formattazione</emph>."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "Nella <item type=\"menuitem\">barra degli strumenti</item>, fate clic sull'icona <item type=\"menuitem\">Cursore diretto</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icona</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17288,32 +17270,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "Fate clic in uno spazio libero nel documento. Il puntatore del mouse cambia forma e indica l'allineamento che verrà applicato al testo digitato:"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icona</alt></image> Allinea a sinistra"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icona</alt></image> Centrato"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icona</alt></image> Allinea a destra"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po b/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
index 5056e511ba0..8e5dc4b9124 100644
--- a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-14 12:34+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/it/>\n"
"Language: it\n"
@@ -584,7 +584,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze First Column"
-msgstr ""
+msgstr "Blocca prima colonna"
#. WDbnU
#: CalcCommands.xcu
@@ -594,7 +594,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze First Row"
-msgstr ""
+msgstr "Blocca prima riga"
#. Qz2C5
#: CalcCommands.xcu
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Nascondi diapositiva"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Testo..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -8434,7 +8434,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset line skew"
-msgstr ""
+msgstr "Ripristina scorrimento linea"
#. avSPK
#: DrawImpressCommands.xcu
@@ -10624,7 +10624,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Table"
-msgstr ""
+msgstr "Elimina tabella"
#. Lbfd9
#: DrawImpressCommands.xcu
@@ -25056,7 +25056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "User ~Interface..."
-msgstr ""
+msgstr "~Interfaccia utente..."
#. i8oSn
#: GenericCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~File"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Alli~nea"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Alli~nea"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -26426,7 +26426,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Distribution"
-msgstr ""
+msgstr "~Distribuzione"
#. 2HWrF
#: GenericCommands.xcu
@@ -28326,7 +28326,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style Inspector"
-msgstr ""
+msgstr "Ispettore degli stili"
#. GEHrf
#: Sidebar.xcu
@@ -28476,7 +28476,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style Inspector"
-msgstr ""
+msgstr "Ispettore degli stili"
#. aCGNS
#: Sidebar.xcu
@@ -28546,7 +28546,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Effect"
-msgstr ""
+msgstr "Effetto"
#. GBNW2
#: Sidebar.xcu
@@ -29880,13 +29880,14 @@ msgstr "Mostra le revisioni"
#. Et46z
#: WriterCommands.xcu
+#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:ViewTrackChanges\n"
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Mostra le revisioni"
#. sMgCx
#: WriterCommands.xcu
@@ -31098,15 +31099,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Seleziona fino alla fine del paragrafo"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Seleziona fino alla parola destra"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
@@ -31430,13 +31431,14 @@ msgstr ""
#. SvFa2
#: WriterCommands.xcu
+#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapOn\n"
"Label\n"
"value.text"
msgid "~Parallel"
-msgstr ""
+msgstr "Parallelo"
#. YFEFD
#: WriterCommands.xcu
@@ -31460,13 +31462,14 @@ msgstr "Anteprima a pagina singola"
#. APPcq
#: WriterCommands.xcu
+#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapThrough\n"
"Label\n"
"value.text"
msgid "~Through"
-msgstr ""
+msgstr "Attraverso"
#. SocUA
#: WriterCommands.xcu
@@ -32696,7 +32699,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Previous Page"
-msgstr ""
+msgstr "Alla pagina precedente"
#. w4B39
#: WriterCommands.xcu
@@ -32706,7 +32709,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "To Previous Page"
-msgstr ""
+msgstr "Alla pagina precedente"
#. qEpQx
#: WriterCommands.xcu
@@ -32716,7 +32719,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Next Page"
-msgstr ""
+msgstr "Alla pagina successiva"
#. Nx5Ux
#: WriterCommands.xcu
@@ -32726,7 +32729,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "To Next Page"
-msgstr ""
+msgstr "Alla pagina successiva"
#. adnz3
#: WriterCommands.xcu
@@ -33010,13 +33013,14 @@ msgstr "All'inizio della colonna successiva"
#. AMFjV
#: WriterCommands.xcu
+#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapIdeal\n"
"Label\n"
"value.text"
msgid "~Optimal"
-msgstr ""
+msgstr "Ottimale"
#. EFP2w
#: WriterCommands.xcu
@@ -33226,7 +33230,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Before"
-msgstr ""
+msgstr "Prima"
#. LADWG
#: WriterCommands.xcu
@@ -33246,7 +33250,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "After"
-msgstr ""
+msgstr "Dopo"
#. b5mCd
#: WriterCommands.xcu
diff --git a/source/it/readlicense_oo/docs.po b/source/it/readlicense_oo/docs.po
index 83c9684079d..eaec0f8ce2f 100644
--- a/source/it/readlicense_oo/docs.po
+++ b/source/it/readlicense_oo/docs.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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-06-27 18:41+0000\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/it/>\n"
"Language: it\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.1.1\n"
"X-POOTLE-MTIME: 1543142212.000000\n"
#. q6Gg3
@@ -230,7 +230,7 @@ msgctxt ""
"s256we\n"
"readmeitem.text"
msgid "GTK version 3.20 or higher;"
-msgstr ""
+msgstr "GTK versione 3.20 o superiore;"
#. nA9h9
#: readme.xrm
@@ -392,7 +392,7 @@ msgctxt ""
"rpminstall5\n"
"readmeitem.text"
msgid "For Fedora-based systems: sudo dnf install *.rpm"
-msgstr ""
+msgstr "Per i sistemi basati su Fedora: sudo dnf install *.rpm"
#. BwvxR
#: readme.xrm
@@ -527,7 +527,7 @@ msgctxt ""
"linuxlangpack7\n"
"readmeitem.text"
msgid "For Fedora-based systems: su -c 'dnf install *.rpm'"
-msgstr ""
+msgstr "Per i sistemi basati su Fedora: su -c 'dnf install *.rpm'"
#. nrFRB
#: readme.xrm
@@ -716,16 +716,17 @@ msgctxt ""
"gfh6w1\n"
"readmeitem.text"
msgid "Problems When Sending Documents as Emails From ${PRODUCTNAME}"
-msgstr ""
+msgstr "Problemi durante la spedizione di documenti come e-mail da ${PRODUCTNAME}"
#. 2yRMH
#: readme.xrm
+#, fuzzy
msgctxt ""
"readme.xrm\n"
"pji76w1\n"
"readmeitem.text"
msgid "When sending a document via 'File - Send - Document as Email' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a> to search the Microsoft Knowledge Base for \"mapi dll\"."
-msgstr ""
+msgstr "Si possono verificare dei problemi (il programma va in crash o si blocca) inviando un documento da 'File - Invia - Documento come e-mail' o 'Documento come allegato PDF'. La causa è rintracciabile nel file di sistema di MS Windows \"Mapi\" (Messaging Application Programming Interface) che in alcune versioni non funziona correttamente; purtroppo è impossibile identificare con precisione quali siano queste versioni. Per ulteriori informazioni cerca \"mapi dll\" nella Microsoft Knowledge Base all'indirizzo <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a>"
#. a426D
#: readme.xrm
diff --git a/source/it/sc/messages.po b/source/it/sc/messages.po
index a8bcf6ef313..a13db8ba8d6 100644
--- a/source/it/sc/messages.po
+++ b/source/it/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-07-08 12:11+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/it/>\n"
"Language: it\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.1.1\n"
"X-POOTLE-MTIME: 1564768644.000000\n"
#. kBovX
@@ -1469,109 +1469,109 @@ msgstr "Importa Dif"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Predefinito"
#. TG9pD
#: sc/inc/globstr.hrc:273
msgctxt "STR_STYLENAME_HEADING"
msgid "Heading"
-msgstr ""
+msgstr "Titolo"
#. NM7R3
#: sc/inc/globstr.hrc:274
msgctxt "STR_STYLENAME_HEADING_1"
msgid "Heading 1"
-msgstr ""
+msgstr "Titolo 1"
#. 8XF63
#: sc/inc/globstr.hrc:275
msgctxt "STR_STYLENAME_HEADING_2"
msgid "Heading 2"
-msgstr ""
+msgstr "Titolo 2"
#. WBuWS
#: sc/inc/globstr.hrc:276
msgctxt "STR_STYLENAME_TEXT"
msgid "Text"
-msgstr ""
+msgstr "Testo"
#. tMJaD
#: sc/inc/globstr.hrc:277
msgctxt "STR_STYLENAME_NOTE"
msgid "Note"
-msgstr ""
+msgstr "Nota"
#. Df8xB
#: sc/inc/globstr.hrc:278
msgctxt "STR_STYLENAME_FOOTNOTE"
msgid "Footnote"
-msgstr ""
+msgstr "Nota a piè di pagina"
#. 2hk6H
#: sc/inc/globstr.hrc:279
msgctxt "STR_STYLENAME_HYPERLINK"
msgid "Hyperlink"
-msgstr ""
+msgstr "Collegamento ipertestuale"
#. aeksB
#: sc/inc/globstr.hrc:280
msgctxt "STR_STYLENAME_STATUS"
msgid "Status"
-msgstr ""
+msgstr "Stato"
#. pxAhk
#: sc/inc/globstr.hrc:281
msgctxt "STR_STYLENAME_GOOD"
msgid "Good"
-msgstr ""
+msgstr "Buono"
#. Ebk8F
#: sc/inc/globstr.hrc:282
msgctxt "STR_STYLENAME_NEUTRAL"
msgid "Neutral"
-msgstr ""
+msgstr "Neutro"
#. FdWhD
#: sc/inc/globstr.hrc:283
msgctxt "STR_STYLENAME_BAD"
msgid "Bad"
-msgstr ""
+msgstr "Non buono"
#. t6f8W
#: sc/inc/globstr.hrc:284
msgctxt "STR_STYLENAME_WARNING"
msgid "Warning"
-msgstr ""
+msgstr "Avviso"
#. 99BgJ
#: sc/inc/globstr.hrc:285
msgctxt "STR_STYLENAME_ERROR"
msgid "Error"
-msgstr ""
+msgstr "Errore"
#. yGAVF
#: sc/inc/globstr.hrc:286
msgctxt "STR_STYLENAME_ACCENT"
msgid "Accent"
-msgstr ""
+msgstr "Enfasi"
#. fw24e
#: sc/inc/globstr.hrc:287
msgctxt "STR_STYLENAME_ACCENT_1"
msgid "Accent 1"
-msgstr ""
+msgstr "Enfasi 1"
#. nHhDx
#: sc/inc/globstr.hrc:288
msgctxt "STR_STYLENAME_ACCENT_2"
msgid "Accent 2"
-msgstr ""
+msgstr "Enfasi 2"
#. NsLP7
#: sc/inc/globstr.hrc:289
msgctxt "STR_STYLENAME_ACCENT_3"
msgid "Accent 3"
-msgstr ""
+msgstr "Enfasi 3"
#. GATGM
#: sc/inc/globstr.hrc:290
@@ -20873,7 +20873,7 @@ msgstr "Selezionare l'elemento del campo base il cui valore viene usato come bas
#: sc/uiconfig/scalc/ui/datafielddialog.ui:371
msgctxt "datafielddialog|label3"
msgid "Displayed Value"
-msgstr ""
+msgstr "Valore visualizzato"
#. mk9vJ
#: sc/uiconfig/scalc/ui/datafielddialog.ui:376
@@ -21983,49 +21983,49 @@ msgstr "Mostra"
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:15
msgctxt "erroralerttabpage-mobile|tsbshow"
msgid "Show error _message when invalid values are entered"
-msgstr ""
+msgstr "Mostra _messaggio di errore se si digitano dei valori non validi"
#. yMbrW
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:44
msgctxt "erroralerttabpage-mobile|action_label"
msgid "_Action:"
-msgstr ""
+msgstr "_Azione:"
#. 2sruM
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:58
msgctxt "erroralerttabpage-mobile|title_label"
msgid "_Title:"
-msgstr ""
+msgstr "_Titolo:"
#. DALxA
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:105
msgctxt "erroralerttabpage-mobile|errormsg_label"
msgid "_Error message:"
-msgstr ""
+msgstr "Messaggio di _errore:"
#. ZzEdw
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:118
msgctxt "erroralerttabpage-mobile|browseBtn"
msgid "_Browse..."
-msgstr ""
+msgstr "_Sfoglia..."
#. hsbzw
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:134
msgctxt "erroralerttabpage-mobile|actionCB"
msgid "Stop"
-msgstr ""
+msgstr "Ferma"
#. fcLJh
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:135
msgctxt "erroralerttabpage-mobile|actionCB"
msgid "Warning"
-msgstr ""
+msgstr "Avviso"
#. trGJe
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:136
msgctxt "erroralerttabpage-mobile|actionCB"
msgid "Information"
-msgstr ""
+msgstr "Informazione"
#. PL8Bz
#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:15
@@ -22455,10 +22455,9 @@ msgstr "Indica il valore finale della serie."
#. LMokQ
#: sc/uiconfig/scalc/ui/filldlg.ui:561
-#, fuzzy
msgctxt "filldlg|extended_tip|increment"
msgid "Determines the value by which the series of the selected type increases by each step."
-msgstr " Il valore specificato in questo campo determina la variazione incrementale applicata alla serie del tipo selezionato ad ogni passaggio."
+msgstr "Determina la variazione incrementale applicata alla serie del tipo selezionato ad ogni passaggio."
#. AvMwH
#: sc/uiconfig/scalc/ui/filldlg.ui:599
@@ -22471,7 +22470,7 @@ msgstr "Con le opzioni di questa finestra di dialogo è possibile generare una s
#: sc/uiconfig/scalc/ui/filterdropdown.ui:123
msgctxt "filterdropdown|STR_EDIT_SEARCH_ITEMS"
msgid "Search items..."
-msgstr ""
+msgstr "Cerca elementi..."
#. zKwWE
#: sc/uiconfig/scalc/ui/filterdropdown.ui:157
@@ -22483,13 +22482,13 @@ msgstr ""
#: sc/uiconfig/scalc/ui/filterdropdown.ui:177
msgctxt "filterdropdown|STR_BTN_SELECT_CURRENT"
msgid "Show only the current item."
-msgstr ""
+msgstr "Mostra solo l'elemento attivo."
#. vBQYB
#: sc/uiconfig/scalc/ui/filterdropdown.ui:192
msgctxt "filterdropdown|STR_BTN_UNSELECT_CURRENT"
msgid "Hide only the current item."
-msgstr ""
+msgstr "Nascondi solo l'elemento attivo."
#. AfnFz
#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
@@ -22811,10 +22810,9 @@ msgstr "Opzioni"
#. CAw2k
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:422
-#, fuzzy
msgctxt "fourieranalysisdialog|extended_tip|FourierAnalysisDialog"
msgid "Produces the Fourier analysis of a data set by computing the Discrete Fourier Transform (DFT) of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms."
-msgstr "Produce l'analisi di Fourier di un insieme di dati calcolando la trasformata di Fourier discreta (DFT, Discrete Fourier Transform) di una matrice di numeri complessi che utilizza una coppia di algoritmi Trasformata di Fourier veloce (FFT, Fast Fourier Transform)."
+msgstr "Produce l'analisi di Fourier di un insieme di dati calcolando la trasformata di Fourier discreta (DFT, Discrete Fourier Transform) di una matrice di numeri complessi che utilizza una coppia di algoritmi trasformata di Fourier veloce (FFT, Fast Fourier Transform)."
#. FEwZR
#: sc/uiconfig/scalc/ui/functionpanel.ui:63
@@ -24593,213 +24591,213 @@ msgid "~File"
msgstr "~File"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Specifica i bordi delle celle selezionate."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Aumenta il rientro"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Riduci il rientro"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inizio"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inizio"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Cam_po"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserisci"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserisci"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Allineamento degli oggetti"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistiche"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dati"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dati"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisione"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisione"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualizza"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualizza"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Imma_gine"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imma~gine"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Disegno"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Disegno"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converti"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oggetto"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Oggetto"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Stampa"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Stampa"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_stensione"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~stensione"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "S_trumenti"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Strumenti"
@@ -25216,13 +25214,13 @@ msgstr "Accento 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "Titolo 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "Titolo 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -25948,7 +25946,7 @@ msgstr "Abilita il calcolo in multithreading dei gruppi di formule"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:70
msgctxt "optcalculatepage|label4"
msgid "CPU Threading Settings"
-msgstr ""
+msgstr "Impostazioni di thread della CPU"
#. XyA9j
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:103
@@ -26188,7 +26186,7 @@ msgstr "Specifica che saranno utilizzate solo le stringhe letterali durante le r
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:609
msgctxt "optcalculatepage|label5"
msgid "Formulas Wildcards"
-msgstr ""
+msgstr "Caratteri jolly delle formule"
#. Umdv5
#: sc/uiconfig/scalc/ui/optchangespage.ui:37
@@ -28162,13 +28160,13 @@ msgstr "_Ridigita"
#: sc/uiconfig/scalc/ui/retypepassdialog.ui:158
msgctxt "retypepassdialog|label2"
msgid "Document Protection"
-msgstr ""
+msgstr "Protezione del documento"
#. TriyK
#: sc/uiconfig/scalc/ui/retypepassdialog.ui:221
msgctxt "retypepassdialog|label3"
msgid "Sheet Protection"
-msgstr ""
+msgstr "Protezione del foglio"
#. eGMrC
#: sc/uiconfig/scalc/ui/retypepassworddialog.ui:8
@@ -28388,10 +28386,9 @@ msgstr "Copia _intero foglio"
#. awzT2
#: sc/uiconfig/scalc/ui/scenariodialog.ui:248
-#, fuzzy
msgctxt "scenariodialog|extended_tip|copysheet"
msgid "Copies the entire sheet into an additional scenario sheet."
-msgstr "Copia l'intero foglio in un foglio di scenario aggiuntivo. "
+msgstr "Copia l'intero foglio in un foglio di scenario aggiuntivo."
#. DxHKD
#: sc/uiconfig/scalc/ui/scenariodialog.ui:259
@@ -29629,338 +29626,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Risolutore"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "O_pzioni..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr "Apre la finestra di dialogo Opzioni del risolutore."
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Risolvi"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Cella di _destinazione"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Ottimizza risultato a"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Tramite _modifica delle celle"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "M_inimo"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Specifica l'intervallo di celle che si possono variare."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Massimo"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Specifica l'intervallo di celle che si possono variare."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Specifica l'intervallo di celle che si possono variare."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Inserisce o seleziona la cella di riferimento della cella di destinazione. Questo campo contiene l'indirizzo della cella il cui valore deve essere ottimizzato."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Valore di"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Specifica l'intervallo di celle che si possono variare."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Specifica l'intervallo di celle che si possono variare."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Riferimento _cella"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operatore"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_alore"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Riferimento cella"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Riferimento cella"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Riferimento cella"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Riferimento cella"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Numero intero"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binario"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operatore"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Numero intero"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binario"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operatore"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Numero intero"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binario"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operatore"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Numero intero"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binario"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operatore"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valore"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valore"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valore"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valore"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Rimuovi"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Rimuovi"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Rimuovi"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Rimuovi"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Condizioni limitative"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Apre la finestra di dialogo del risolutore. Un risolutore consente di risolvere problemi matematici con più variabili sconosciute e un insieme di vincoli sulle variabili tramite metodi di ricerca del valore di destinazione."
@@ -30129,7 +30132,6 @@ msgstr "Maiuscole/minuscole"
#. F9BE3
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:41
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|case"
msgid "Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies."
msgstr "Ordina prima i dati in maiuscolo, quindi quelli in minuscolo. Le lingue asiatiche vengono gestite in modo speciale."
@@ -30142,7 +30144,6 @@ msgstr "L'intervallo contiene..."
#. nNTEu
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:61
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|header"
msgid "Omits the first row or the first column in the selection from the sort."
msgstr "Esclude dall'ordinamento la prima riga o la prima colonna nella selezione."
@@ -30155,10 +30156,9 @@ msgstr "Includi i formati"
#. KbJnq
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:81
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|formats"
msgid "Preserves the current cell formatting."
-msgstr " Mantiene la formattazione attuale delle celle."
+msgstr "Mantiene la formattazione attuale delle celle."
#. Gtck5
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:92
@@ -30192,10 +30192,9 @@ msgstr "Copia risultati ordinamento in:"
#. gis9V
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:154
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|copyresult"
msgid "Copies the sorted list to the cell range that you specify."
-msgstr " Copia l'elenco ordinato nell'area di celle specificata."
+msgstr "Copia l'elenco ordinato nell'area di celle specificata."
#. WKWmE
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:174
@@ -30205,10 +30204,9 @@ msgstr "Copia risultati ordinamento in:"
#. ABAdF
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:175
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|outarealb"
msgid "Select a named cell range where you want to display the sorted list, or enter a cell range in the input box."
-msgstr " È possibile selezionare un'area di celle definita in precedenza in cui visualizzare l'elenco ordinato, oppure specificare l'area di celle nella casella a fianco."
+msgstr "Seleziona un'area di celle definita in precedenza in cui visualizzare l'elenco ordinato oppure specifica l'area di celle nella casella di immissione."
#. ABGSS
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:195
@@ -30218,10 +30216,9 @@ msgstr "Copia risultati ordinamento in:"
#. kpVh9
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:196
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|outareaed"
msgid "Enter the cell range where you want to display the sorted list, or select a named range from the list."
-msgstr " Inserire qui l'area di celle in cui visualizzare l'elenco ordinato, oppure selezionare un'area precedentemente definita dall'elenco."
+msgstr "Inserisci qui l'area di celle in cui visualizzare l'elenco ordinato oppure seleziona un'area precedentemente definita dall'elenco."
#. GwzEB
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:207
@@ -30231,10 +30228,9 @@ msgstr "Ordinamento personalizzato"
#. aDYdR
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:219
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|sortuser"
msgid "Click here and then select the custom sort order that you want."
-msgstr " Attivare questa casella di controllo, quindi selezionare la sequenza personalizzata da applicare."
+msgstr "Fai clic qui, quindi seleziona la sequenza personalizzata da applicare."
#. iWcGs
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:238
@@ -30244,10 +30240,9 @@ msgstr "Ordinamento personalizzato"
#. QagY7
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:239
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|sortuserlb"
msgid "Select the custom sort order that you want to apply. To define a custom sort order, choose Tools - Options - %PRODUCTNAME Calc - Sort Lists ."
-msgstr " Selezionare la sequenza personalizzata che da applicare. Per definire una sequenza personalizzata, scegliere Strumenti - Opzioni - %PRODUCTNAME Calc - Ordina elenchi."
+msgstr "Seleziona la sequenza personalizzata da applicare. Per definire una sequenza personalizzata scegli Strumenti - Opzioni - %PRODUCTNAME Calc - Ordina elenchi."
#. KJrPL
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:254
@@ -30263,17 +30258,15 @@ msgstr "Opzioni"
#. ArfWB
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:283
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|algorithmlb"
msgid "Select a sorting option for the language."
-msgstr " Selezionare un'opzione di ordinamento per la lingua prescelta."
+msgstr "Seleziona un'opzione di ordinamento per la lingua."
#. u52Ei
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:304
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|language"
msgid "Select the language for the sorting rules."
-msgstr " Selezionare la lingua per le regole di ordinamento."
+msgstr "Seleziona la lingua per le regole di ordinamento."
#. aDahD
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:345
@@ -30289,10 +30282,9 @@ msgstr "Dall'alto al basso (ordina per righe)"
#. bSvKu
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:387
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|topdown"
msgid "Sorts rows by the values in the active columns of the selected range."
-msgstr " Ordina le righe in base ai valori nelle colonne attive dell'area selezionata."
+msgstr "Ordina le righe in base ai valori nelle colonne attive dell'area selezionata."
#. aU8Mg
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:398
@@ -30302,10 +30294,9 @@ msgstr "Da sinistra a destra (ordina per colonne)"
#. APEaE
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:408
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|leftright"
msgid "Sorts columns by the values in the active rows of the selected range."
-msgstr " Ordina le colonne in base ai valori nelle righe attive dell'area selezionata."
+msgstr "Ordina le colonne in base ai valori nelle righe attive dell'area selezionata."
#. nbPgX
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:425
@@ -30315,10 +30306,9 @@ msgstr "Direzione"
#. 7AH6P
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:440
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|SortOptionsPage"
msgid "Sets additional sorting options."
-msgstr "Consente di impostare opzioni di ordinamento aggiuntive."
+msgstr "Definisce opzioni di ordinamento aggiuntive."
#. qAEt6
#: sc/uiconfig/scalc/ui/sorttransformationentry.ui:22
@@ -30894,25 +30884,25 @@ msgstr "Valore 4"
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:623
msgctxt "standardfilterdialog|remove1|tooltip_text"
msgid "Remove"
-msgstr ""
+msgstr "Rimuovi"
#. snJCB
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:637
msgctxt "standardfilterdialog|remove2|tooltip_text"
msgid "Remove"
-msgstr ""
+msgstr "Rimuovi"
#. 8ti5o
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:651
msgctxt "standardfilterdialog|remove3|tooltip_text"
msgid "Remove"
-msgstr ""
+msgstr "Rimuovi"
#. y4aPN
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:665
msgctxt "standardfilterdialog|remove4|tooltip_text"
msgid "Remove"
-msgstr ""
+msgstr "Rimuovi"
#. ekQLB
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:695
@@ -32260,21 +32250,22 @@ msgstr "Messaggio di errore"
#. tRXEs
#: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:15
+#, fuzzy
msgctxt "validationhelptabpage-mobile|tsbhelp"
msgid "_Show input help when cell is selected"
-msgstr ""
+msgstr "_Offri aiuto per la digitazione nella cella"
#. ZJEXj
#: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:56
msgctxt "validationhelptabpage-mobile|title_label"
msgid "_Title:"
-msgstr ""
+msgstr "_Titolo:"
#. yDRCK
#: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:70
msgctxt "validationhelptabpage-mobile|inputhelp_label"
msgid "_Input help:"
-msgstr ""
+msgstr "_Aiuto per la digitazione:"
#. 4etq8
#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:15
diff --git a/source/it/sd/messages.po b/source/it/sd/messages.po
index 00ee1d5a44e..de94900b9ad 100644
--- a/source/it/sd/messages.po
+++ b/source/it/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-08 12:11+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/it/>\n"
"Language: it\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.1.1\n"
"X-POOTLE-MTIME: 1564768685.000000\n"
#. WDjkB
@@ -3105,10 +3105,9 @@ msgstr "Indicare la distanza verticale tra il centro dell'oggetto selezionato e
#. uyLiW
#: sd/uiconfig/sdraw/ui/copydlg.ui:306
-#, fuzzy
msgctxt "copydlg|extended_tip|angle"
msgid "Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counterclockwise direction."
-msgstr "Indicare l'angolo di rotazione (tra 0 e 359 gradi) della copia dell'oggetto. I valori positivi ruotano la copia in senso orario mentre i valori negativi la ruotano in senso antiorario. "
+msgstr "Indica l'angolo di rotazione (tra 0 e 359 gradi) della copia dell'oggetto. I valori positivi ruotano la copia in senso orario mentre i valori negativi la ruotano in senso antiorario."
#. Mb9Gs
#: sd/uiconfig/sdraw/ui/copydlg.ui:323
@@ -3166,10 +3165,9 @@ msgstr "Scegliere un colore per l'oggetto selezionato."
#. AAoBa
#: sd/uiconfig/sdraw/ui/copydlg.ui:530
-#, fuzzy
msgctxt "copydlg|extended_tip|end"
msgid "Choose a color for the duplicate object. If you are making more than one copy, this color is applied to the last copy."
-msgstr "Scegliere un colore per la copia dell'oggetto. Se si sta per eseguire più di una copia, questo colore viene applicato all'ultima copia."
+msgstr "Scegli un colore per la copia dell'oggetto. Se stai per eseguire più di una copia, questo colore viene applicato all'ultima copia."
#. F3A93
#: sd/uiconfig/sdraw/ui/copydlg.ui:547
@@ -3179,10 +3177,9 @@ msgstr "Colori"
#. W2wTC
#: sd/uiconfig/sdraw/ui/copydlg.ui:580
-#, fuzzy
msgctxt "copydlg|extended_tip|DuplicateDialog"
msgid "Makes one or more copies of a selected object."
-msgstr "Crea una o più copie dell'oggetto selezionato. "
+msgstr "Crea una o più copie dell'oggetto selezionato."
#. Y4vXd
#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:15
@@ -3672,7 +3669,6 @@ msgstr "Impedisce la modifica degli elementi presenti nel livello."
#. ogtGC
#: sd/uiconfig/sdraw/ui/insertlayer.ui:313
-#, fuzzy
msgctxt "insertlayer|extended_tip|InsertLayerDialog"
msgid "Inserts a new layer in the document. Layers are only available in Draw, not in Impress."
msgstr "Inserisce un nuovo livello nel documento. I livelli sono disponibili solo in Draw e non in Impress."
@@ -3823,116 +3819,116 @@ msgstr "~Tabella"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converti"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imma_gine"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imma~gine"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Disegno"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Disegno"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oggetto"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oggetto"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Schema"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Sche~ma"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_stensione"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~stensione"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "S_trumenti"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "S~trumenti"
@@ -4336,12 +4332,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Menu"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_stensione"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -4870,10 +4860,9 @@ msgstr "Testo animato"
#. FcztB
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
-#, fuzzy
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
-msgstr "L'elenco di animazione visualizza tutte le animazioni impostate per la diapositiva selezionata. "
+msgstr "L'elenco delle animazioni visualizza tutte le animazioni impostate per la diapositiva attiva."
#. KFRTW
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
@@ -5707,7 +5696,7 @@ msgstr "Allinea le immagini nell'animazione."
#: sd/uiconfig/simpress/ui/dockinganimation.ui:410
msgctxt "dockinganimation|label1"
msgid "Animation Group"
-msgstr ""
+msgstr "Gruppo animazione"
#. Bu3De
#: sd/uiconfig/simpress/ui/dockinganimation.ui:454
@@ -6574,219 +6563,219 @@ msgid "~File"
msgstr "~File"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inizio"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inizio"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Campo"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserisci"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserisci"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pre_sentazione"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Pre~sentazione"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisione"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisione"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualizza"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualizza"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabella"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabella"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converti"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imma_gine"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imma~gine"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Disegno"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Disegno"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oggetto"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oggetto"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Sche_ma"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Sche~ma"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Visualizza"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Struttura"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_stensione"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~stensione"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "S_trumenti"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "S~trumenti"
@@ -7696,12 +7685,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Modifica contorno"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_stensione"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/it/sfx2/messages.po b/source/it/sfx2/messages.po
index 9a560a23fb3..bcd9aaf0f07 100644
--- a/source/it/sfx2/messages.po
+++ b/source/it/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-09-26 19:35+0000\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/it/>\n"
"Language: it\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.1.1\n"
"X-POOTLE-MTIME: 1564768694.000000\n"
#. bHbFE
@@ -2279,13 +2279,13 @@ msgstr "Social Security Number (US)"
#: sfx2/uiconfig/ui/addtargetdialog.ui:232
msgctxt "addtargetdialog|checkboxCaseSensitive"
msgid "Match case"
-msgstr ""
+msgstr "Maiuscole/minuscole"
#. G2u3B
#: sfx2/uiconfig/ui/addtargetdialog.ui:247
msgctxt "addtargetdialog|checkboxWholeWords"
msgid "Whole words only"
-msgstr ""
+msgstr "Solo parole intere"
#. JV66c
#: sfx2/uiconfig/ui/alienwarndialog.ui:7
@@ -2351,13 +2351,13 @@ msgstr "Contenuto"
#: sfx2/uiconfig/ui/autoredactdialog.ui:161
msgctxt "autoredactdialog|target"
msgid "Match case"
-msgstr ""
+msgstr "Maiuscole/minuscole"
#. obHtC
#: sfx2/uiconfig/ui/autoredactdialog.ui:174
msgctxt "autoredactdialog|target"
msgid "Whole words"
-msgstr ""
+msgstr "Parole intere"
#. 4MVdG
#: sfx2/uiconfig/ui/autoredactdialog.ui:202
@@ -2615,7 +2615,7 @@ msgstr "Inc_orpora solo i tipi di carattere in uso nei documenti"
#: sfx2/uiconfig/ui/documentfontspage.ui:74
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
-msgstr ""
+msgstr "Incorporamento caratteri"
#. Gip6V
#: sfx2/uiconfig/ui/documentfontspage.ui:105
@@ -2969,7 +2969,7 @@ msgstr "_Mostra"
#: sfx2/uiconfig/ui/helpindexpage.ui:121
msgctxt "helpindexpage|label1"
msgid "_Search Term"
-msgstr ""
+msgstr "_Termine cercato"
#. wKLbH
#: sfx2/uiconfig/ui/helpmanual.ui:7
@@ -4133,25 +4133,25 @@ msgstr "Elimina..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "Aggancia"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
msgctxt "tabbar|unlocktaskpanel"
msgid "Undock"
-msgstr ""
+msgstr "Sgancia"
#. jXux4
#: sfx2/uiconfig/ui/tabbarcontents.ui:42
msgctxt "tabbar|hidesidebar"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Chiudi la barra laterale"
#. hEmHk
#: sfx2/uiconfig/ui/tabbarcontents.ui:50
msgctxt "tabbar|customization"
msgid "Customization"
-msgstr ""
+msgstr "Personalizzazione"
#. 9Hfx6
#: sfx2/uiconfig/ui/tabbarcontents.ui:66
@@ -4163,7 +4163,7 @@ msgstr ""
#: sfx2/uiconfig/ui/tabbarcontents.ui:93
msgctxt "tabbar|menubutton|tool_tip"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Impostazioni della barra laterale"
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
@@ -4283,7 +4283,7 @@ msgstr "Impostazioni"
#: sfx2/uiconfig/ui/templatedlg.ui:367
msgctxt "templatedlg|extensions_btn"
msgid "_Extensions"
-msgstr ""
+msgstr "_Estensioni"
#. uC7Rk
#: sfx2/uiconfig/ui/templatedlg.ui:371
diff --git a/source/it/starmath/messages.po b/source/it/starmath/messages.po
index db991dd319f..8f4aac22d13 100644
--- a/source/it/starmath/messages.po
+++ b/source/it/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-07-08 12:11+0000\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/it/>\n"
"Language: it\n"
@@ -717,7 +717,7 @@ msgstr "Differenza"
#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Insieme quoziente"
#. ToVZV
#: starmath/inc/strings.hrc:82
@@ -1473,7 +1473,7 @@ msgstr "Colore RGB"
#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Colore RGBA"
#. UxFDW
#: starmath/inc/strings.hrc:208
@@ -1857,7 +1857,7 @@ msgstr ""
#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
-msgstr ""
+msgstr "Trasformata di Fourier"
#. aQpTD
#: starmath/inc/strings.hrc:272
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
@@ -2373,7 +2373,7 @@ msgstr ""
#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
-msgstr ""
+msgstr "neve"
#. QDTEU
#: starmath/inc/strings.hrc:360
@@ -2403,7 +2403,7 @@ msgstr "rgb"
#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
#: starmath/inc/strings.hrc:365
diff --git a/source/it/svtools/messages.po b/source/it/svtools/messages.po
index 0f758947e75..9b0352568f7 100644
--- a/source/it/svtools/messages.po
+++ b/source/it/svtools/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-07-17 16:35+0000\n"
-"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
+"PO-Revision-Date: 2020-11-29 09:04+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564773529.000000\n"
#. fLdeV
@@ -1281,19 +1281,19 @@ msgstr "$service$ di $user$"
#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
-msgstr ""
+msgstr "Per eseguire questa operazione è necessario l'ambiente di runtime Java (JRE). Installa una versione di JRE e riavvia %PRODUCTNAME. %FAQLINK"
#. SBgjA
#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
-msgstr ""
+msgstr "Per eseguire questa operazione è necessario l'ambiente di runtime Java (JRE) a %BITNESS bit. Installa una versione di JRE e riavvia %PRODUCTNAME. %FAQLINK"
#. FY49S
#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
-msgstr ""
+msgstr "Per eseguire questa operazione è necessario il Java Development Kit (JDK) di Oracle su macOS 10.10 o superiore. Installalo e riavvia %PRODUCTNAME. %FAQLINK"
#. 76BEm
#: include/svtools/strings.hrc:266
diff --git a/source/it/svx/messages.po b/source/it/svx/messages.po
index 012e00a1813..76dbeb7b02d 100644
--- a/source/it/svx/messages.po
+++ b/source/it/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-08-10 17:35+0000\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/it/>\n"
"Language: it\n"
@@ -584,13 +584,14 @@ msgstr "EMF"
#: include/svx/strings.hrc:119
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#. tc3Jb
#: include/svx/strings.hrc:120
+#, fuzzy
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
-msgstr ""
+msgstr "PDF"
#. b3os5
#: include/svx/strings.hrc:121
@@ -2955,21 +2956,18 @@ msgstr "Ritaglia"
#. kVnke
#: include/svx/strings.hrc:517
-#, fuzzy
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr "Raggio bagliore"
#. 3hvai
#: include/svx/strings.hrc:518
-#, fuzzy
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr "Colore bagliore"
#. eCSE2
#: include/svx/strings.hrc:519
-#, fuzzy
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr "Trasparenza bagliore"
@@ -4799,7 +4797,6 @@ msgstr "Spazio"
#. FzVch
#: include/svx/strings.hrc:843
-#, fuzzy
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr "Ghiaccio chiaro"
@@ -5184,10 +5181,9 @@ msgstr "Diagonale ascendente tratteggiata punteggiata"
#. pFZkq
#: include/svx/strings.hrc:907
-#, fuzzy
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
-msgstr "Punteggiata opaca"
+msgstr "Punteggiata piena"
#. NA5sT
#: include/svx/strings.hrc:908
@@ -6485,7 +6481,7 @@ msgstr "Formulario"
#: include/svx/strings.hrc:1169
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
-msgstr ""
+msgstr "Nascosto"
#. DnoDH
#: include/svx/strings.hrc:1170
@@ -7236,11 +7232,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Adatta la diapositiva alla finestra attiva."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Impossibile caricare tutte le SmartArts. Il salvataggio in Microsoft Office versione 2010 o successiva dovrebbe evitare questo problema."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Impossibile caricare tutti gli oggetti SmartArt. Il salvataggio in Microsoft Office versione 2010 o successiva dovrebbe evitare questo problema."
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -10421,115 +10417,130 @@ msgstr "Casella di ~testo"
#: svx/inc/formnavi.hrc:30
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
msgid "~Button"
-msgstr ""
+msgstr "~Pulsante"
#. qjKaG
#: svx/inc/formnavi.hrc:31
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
msgid "La~bel field"
-msgstr ""
+msgstr "Campo _didascalia"
#. sq3AT
#: svx/inc/formnavi.hrc:32
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
msgid "L~ist Box"
-msgstr ""
+msgstr "Casella di r_iepilogo"
#. agpbk
#: svx/inc/formnavi.hrc:33
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
msgid "~Check Box"
-msgstr ""
+msgstr "Casella di _controllo"
#. 9WA4B
#: svx/inc/formnavi.hrc:34
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
msgid "~Radio Button"
-msgstr ""
+msgstr "Pulsante di _scelta"
#. PpgmW
#: svx/inc/formnavi.hrc:35
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
msgid "G~roup Box"
-msgstr ""
+msgstr "Casella di g_ruppo"
#. A8Dbz
#: svx/inc/formnavi.hrc:36
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
-msgstr ""
+msgstr "Casella com_binata"
#. HRAoH
#: svx/inc/formnavi.hrc:37
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
msgid "I~mage Button"
-msgstr ""
+msgstr "Pulsante i_mmagine"
#. gZZqq
#: svx/inc/formnavi.hrc:38
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
msgid "~File Selection"
-msgstr ""
+msgstr "Scelta _file"
#. EEADE
#: svx/inc/formnavi.hrc:39
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
msgid "~Date Field"
-msgstr ""
+msgstr "Campo _data"
#. gDr8N
#: svx/inc/formnavi.hrc:40
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
msgid "Tim~e Field"
-msgstr ""
+msgstr "Campo _orario"
#. jAbfP
#: svx/inc/formnavi.hrc:41
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
msgid "~Numerical Field"
-msgstr ""
+msgstr "Campo _numerico"
#. ryXjj
#: svx/inc/formnavi.hrc:42
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
msgid "C~urrency Field"
-msgstr ""
+msgstr "Campo _valuta"
#. GXHFr
#: svx/inc/formnavi.hrc:43
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
msgid "~Pattern Field"
-msgstr ""
+msgstr "Campo a masc_hera"
#. a7jCc
#: svx/inc/formnavi.hrc:44
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
msgid "Ima~ge Control"
-msgstr ""
+msgstr "Campo di controllo imma_gine"
#. WDsBh
#: svx/inc/formnavi.hrc:45
+#, fuzzy
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
msgid "Fo~rmatted Field"
-msgstr ""
+msgstr "Campo fo_rmattato"
#. aEXn5
#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
-msgstr ""
+msgstr "Barra di scorrimento"
#. cGxjA
#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
-msgstr ""
+msgstr "Pulsante di selezione"
#. HYbc6
#: svx/inc/formnavi.hrc:48
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
-msgstr ""
+msgstr "Barra di navigazione"
#. d7vkX
#: svx/inc/frmsel.hrc:29
@@ -12417,7 +12428,6 @@ msgstr "Rifiuta tutte le modifiche e rimuove l'evidenziazione dal documento."
#. phEJs
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:110
-#, fuzzy
msgctxt "acceptrejectchangesdialog|extended_tip|undo"
msgid "Reverse the last Accept or Reject command."
msgstr "Annulla l'ultimo comando Accetta o Rifiuta."
@@ -13964,17 +13974,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barra di navigazione"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Il rapporto di errore è stato caricato correttamente.\n"
-"Puoi ritrovarlo a breve all'indirizzo:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -14000,11 +14007,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "_Invia rapporto di errore"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "_Non inviare"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -15814,235 +15821,235 @@ msgstr "_Non è vuoto"
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:8
msgctxt "findreplacedialog-mobile|FindReplaceDialog"
msgid "Find & Replace"
-msgstr ""
+msgstr "Trova e sostituisci"
#. eByBj
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:142
msgctxt "findreplacedialog-mobile|label4"
msgid "_Find:"
-msgstr ""
+msgstr "_Trova:"
#. oNJkY
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:196
msgctxt "findreplacedialog-mobile|matchcase"
msgid "Ma_tch case"
-msgstr ""
+msgstr "Maius_c/minusc"
#. uiV7G
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:212
msgctxt "findreplacedialog-mobile|searchformatted"
msgid "For_matted display"
-msgstr ""
+msgstr "Visualizzazione for_mattata"
#. 3KibH
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:232
msgctxt "findreplacedialog-mobile|wholewords"
msgid "Whole wor_ds only"
-msgstr ""
+msgstr "Solo _parole intere"
#. BRbAi
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:250
msgctxt "findreplacedialog-mobile|entirecells"
msgid "_Entire cells"
-msgstr ""
+msgstr "C_elle intere"
#. xFvzF
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:268
msgctxt "findreplacedialog-mobile|allsheets"
msgid "All _sheets"
-msgstr ""
+msgstr "Tutti i fog_li"
#. 8a3TB
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:307
msgctxt "findreplacedialog-mobile|label1"
msgid "_Search For"
-msgstr ""
+msgstr "_Cerca"
#. aHAoN
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:394
msgctxt "findreplacedialog-mobile|label5"
msgid "Re_place:"
-msgstr ""
+msgstr "_Sostituisci:"
#. PhyMv
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:434
msgctxt "findreplacedialog-mobile|label2"
msgid "Re_place With"
-msgstr ""
+msgstr "So_stituisci con"
#. gi3jL
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:460
msgctxt "findreplacedialog-mobile|searchall"
msgid "Find _All"
-msgstr ""
+msgstr "Trov_a tutto"
#. xizGS
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:474
msgctxt "findreplacedialog-mobile|backsearch"
msgid "Find Pre_vious"
-msgstr ""
+msgstr "Tro_va precedente"
#. Fnoy9
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:488
msgctxt "findreplacedialog-mobile|search"
msgid "Find Ne_xt"
-msgstr ""
+msgstr "_Trova successivo"
#. 4xbpA
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:504
msgctxt "findreplacedialog-mobile|replace"
msgid "_Replace"
-msgstr ""
+msgstr "_Sostituisci"
#. LXUGG
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:518
msgctxt "findreplacedialog-mobile|replaceall"
msgid "Replace A_ll"
-msgstr ""
+msgstr "Sostituisci t_utto"
#. 8pjvL
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:677
msgctxt "findreplacedialog-mobile|selection"
msgid "C_urrent selection only"
-msgstr ""
+msgstr "Solo nella sele_zione"
#. kXCyp
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:692
msgctxt "findreplacedialog-mobile|regexp"
msgid "Re_gular expressions"
-msgstr ""
+msgstr "Espressioni re_golari"
#. PHsrD
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:714
msgctxt "findreplacedialog-mobile|attributes"
msgid "Attribut_es..."
-msgstr ""
+msgstr "Attri_buti..."
#. GRaeC
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:728
msgctxt "findreplacedialog-mobile|format"
msgid "For_mat..."
-msgstr ""
+msgstr "For_mato..."
#. cx7u7
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:742
msgctxt "findreplacedialog-mobile|noformat"
msgid "_No Format"
-msgstr ""
+msgstr "Se_nza formato"
#. TnTGs
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:763
msgctxt "findreplacedialog-mobile|layout"
msgid "Search for st_yles"
-msgstr ""
+msgstr "Cerca st_ili"
#. QZvqy
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:778
msgctxt "findreplacedialog-mobile|includediacritics"
msgid "Diac_ritic-sensitive"
-msgstr ""
+msgstr "Distingui diac_ritiche"
#. jgEBu
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:793
msgctxt "findreplacedialog-mobile|includekashida"
msgid "_Kashida-sensitive"
-msgstr ""
+msgstr "Distingui _kashida"
#. HEtSQ
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:808
msgctxt "findreplacedialog-mobile|matchcharwidth"
msgid "Match character _width"
-msgstr ""
+msgstr "Considera la larg_hezza dei caratteri"
#. PeENq
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:828
msgctxt "findreplacedialog-mobile|similarity"
msgid "S_imilarity search"
-msgstr ""
+msgstr "Ricerca per s_imili"
#. BxPGW
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:844
msgctxt "findreplacedialog-mobile|similaritybtn"
msgid "Similarities..."
-msgstr ""
+msgstr "Simili..."
#. z8Uiz
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:871
msgctxt "findreplacedialog-mobile|soundslike"
msgid "Sounds like (_Japanese)"
-msgstr ""
+msgstr "Ortografia simile (_giapponese)"
#. e7EkJ
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:887
msgctxt "findreplacedialog-mobile|soundslikebtn"
msgid "Sounds..."
-msgstr ""
+msgstr "Simile..."
#. ZvWKZ
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:913
msgctxt "findreplacedialog-mobile|wildcard"
msgid "Wil_dcards"
-msgstr ""
+msgstr "Caratteri _jolly"
#. jCtqG
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:929
msgctxt "findreplacedialog-mobile|notes"
msgid "_Comments"
-msgstr ""
+msgstr "_Commenti"
#. CABZs
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:951
msgctxt "findreplacedialog-mobile|replace_backwards"
msgid "Replace _backwards"
-msgstr ""
+msgstr "Sostituisci all'in_dietro"
#. EjXBb
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:988
msgctxt "findreplacedialog-mobile|searchinlabel"
msgid "Search i_n:"
-msgstr ""
+msgstr "Cerca i_n:"
#. vHG2V
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1003
msgctxt "findreplacedialog-mobile|calcsearchin"
msgid "Formulas"
-msgstr ""
+msgstr "Formule"
#. BC8U6
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1004
msgctxt "findreplacedialog-mobile|calcsearchin"
msgid "Values"
-msgstr ""
+msgstr "Valori"
#. BkByZ
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1005
msgctxt "findreplacedialog-mobile|calcsearchin"
msgid "Notes"
-msgstr ""
+msgstr "Note"
#. a8BE2
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1030
msgctxt "findreplacedialog-mobile|searchdir"
msgid "Direction:"
-msgstr ""
+msgstr "Direzione:"
#. GPC8q
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1047
msgctxt "findreplacedialog-mobile|rows"
msgid "Ro_ws"
-msgstr ""
+msgstr "_Righe"
#. xCeTz
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1067
msgctxt "findreplacedialog-mobile|cols"
msgid "Colum_ns"
-msgstr ""
+msgstr "Colon_ne"
#. fPE4f
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1114
msgctxt "findreplacedialog-mobile|label3"
msgid "Other _options"
-msgstr ""
+msgstr "Altre _opzioni"
#. 2B7FQ
#: svx/uiconfig/ui/findreplacedialog.ui:8
@@ -16120,7 +16127,7 @@ msgstr "Tutti i fog_li"
#: svx/uiconfig/ui/findreplacedialog.ui:330
msgctxt "findreplacedialog|label1"
msgid "Search For"
-msgstr ""
+msgstr "Cerca"
#. YCdJW
#: svx/uiconfig/ui/findreplacedialog.ui:389
@@ -16264,7 +16271,7 @@ msgstr "Cerca il testo formattato con lo stile di formato specificato. Seleziona
#: svx/uiconfig/ui/findreplacedialog.ui:847
msgctxt "findreplacedialog|includediacritics"
msgid "Diacritic-_sensitive"
-msgstr ""
+msgstr "Di_stingui diacritiche"
#. J8Zou
#: svx/uiconfig/ui/findreplacedialog.ui:862
@@ -16342,7 +16349,7 @@ msgstr "Caratteri _jolly"
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
msgid "Comme_nts"
-msgstr ""
+msgstr "Comme_nti"
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
@@ -17440,13 +17447,13 @@ msgstr "_Elimina"
#: svx/uiconfig/ui/inspectortextpanel.ui:62
msgctxt "inspectortextpanel|property"
msgid "Properties"
-msgstr ""
+msgstr "Proprietà"
#. RyWCg
#: svx/uiconfig/ui/inspectortextpanel.ui:78
msgctxt "inspectortextpanel|value"
msgid "Values"
-msgstr ""
+msgstr "Valori"
#. kCqGA
#: svx/uiconfig/ui/lightingwindow.ui:58
@@ -17590,13 +17597,13 @@ msgstr ""
#: svx/uiconfig/ui/navigationbar.ui:149
msgctxt "navigationbar|prev"
msgid "Previous"
-msgstr ""
+msgstr "Precedente"
#. ggpok
#: svx/uiconfig/ui/navigationbar.ui:170
msgctxt "navigationbar|next"
msgid "Next"
-msgstr ""
+msgstr "Successivo"
#. E3c7E
#: svx/uiconfig/ui/navigationbar.ui:190
@@ -17608,7 +17615,7 @@ msgstr ""
#: svx/uiconfig/ui/navigationbar.ui:210
msgctxt "navigationbar|new"
msgid "New"
-msgstr ""
+msgstr "Nuovo"
#. Z8rca
#: svx/uiconfig/ui/optgridpage.ui:75
@@ -19000,7 +19007,7 @@ msgstr "Trasparenza:"
#: svx/uiconfig/ui/sidebareffect.ui:144
msgctxt "sidebarglow|glow"
msgid "Glow"
-msgstr ""
+msgstr "Bagliore"
#. SABEF
#: svx/uiconfig/ui/sidebareffect.ui:180
@@ -19012,7 +19019,7 @@ msgstr "Raggio:"
#: svx/uiconfig/ui/sidebareffect.ui:210
msgctxt "sidebarsoftedge|softedge"
msgid "Soft Edge"
-msgstr ""
+msgstr "Bordo morbido"
#. BEqw7
#: svx/uiconfig/ui/sidebarempty.ui:26
@@ -19048,7 +19055,7 @@ msgstr "Vista dettagli"
#: svx/uiconfig/ui/sidebargallery.ui:354
msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME"
msgid "New..."
-msgstr ""
+msgstr "Nuovo..."
#. RfChe
#: svx/uiconfig/ui/sidebargallery.ui:373
@@ -19480,7 +19487,7 @@ msgstr "Altezza"
#: svx/uiconfig/ui/sidebarpossize.ui:182
msgctxt "sidebarpossize|transparencylabel"
msgid "Transparency:"
-msgstr ""
+msgstr "Trasparenza:"
#. nLGDu
#: svx/uiconfig/ui/sidebarpossize.ui:192
diff --git a/source/it/sw/messages.po b/source/it/sw/messages.po
index 84f2d9d1ef9..ca65815b0f9 100644
--- a/source/it/sw/messages.po
+++ b/source/it/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-07-25 16:58+0000\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/it/>\n"
"Language: it\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -627,7 +627,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:35
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Color"
-msgstr ""
+msgstr "Colore"
#. 5Btdu
#: sw/inc/inspectorproperties.hrc:36
@@ -645,19 +645,19 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:38
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Distance"
-msgstr ""
+msgstr "Distanza linee"
#. jS4tt
#: sw/inc/inspectorproperties.hrc:39
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Style"
-msgstr ""
+msgstr "Stile linea"
#. noNDX
#: sw/inc/inspectorproperties.hrc:40
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Width"
-msgstr ""
+msgstr "Spessore linea"
#. MVL7X
#: sw/inc/inspectorproperties.hrc:41
@@ -669,7 +669,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:42
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Bottom Border"
-msgstr ""
+msgstr "Bordo inferiore"
#. EWncC
#: sw/inc/inspectorproperties.hrc:43
@@ -687,13 +687,13 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:45
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Category"
-msgstr ""
+msgstr "Categoria"
#. cd79Y
#: sw/inc/inspectorproperties.hrc:46
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Cell"
-msgstr ""
+msgstr "Cella"
#. JzYHd
#: sw/inc/inspectorproperties.hrc:47
@@ -1191,7 +1191,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:129
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Display Name"
-msgstr ""
+msgstr "Nome visualizzato"
#. JXrsY
#: sw/inc/inspectorproperties.hrc:130
@@ -1227,7 +1227,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:135
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Endnote"
-msgstr ""
+msgstr "Nota di chiusura"
#. YmvFY
#: sw/inc/inspectorproperties.hrc:136
@@ -1323,13 +1323,13 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:151
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color"
-msgstr ""
+msgstr "Colore di riempimento"
#. neFA2
#: sw/inc/inspectorproperties.hrc:152
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color2"
-msgstr ""
+msgstr "Colore di riempimento 2"
#. 72i4Q
#: sw/inc/inspectorproperties.hrc:153
@@ -1365,7 +1365,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:158
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Style"
-msgstr ""
+msgstr "Stile riempimento"
#. tFYmZ
#: sw/inc/inspectorproperties.hrc:159
@@ -1395,13 +1395,13 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:163
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Footnote"
-msgstr ""
+msgstr "Nota a piè di pagina"
#. NuA4J
#: sw/inc/inspectorproperties.hrc:164
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hidden"
-msgstr ""
+msgstr "Nascosto"
#. TwGWU
#: sw/inc/inspectorproperties.hrc:165
@@ -1443,7 +1443,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:171
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Left Border"
-msgstr ""
+msgstr "Bordo sinistro"
#. tAqBG
#: sw/inc/inspectorproperties.hrc:172
@@ -1485,7 +1485,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:178
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Level"
-msgstr ""
+msgstr "Livello di numerazione"
#. CEkBY
#: sw/inc/inspectorproperties.hrc:179
@@ -1839,7 +1839,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:237
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Right Border"
-msgstr ""
+msgstr "Bordo destro"
#. 6rs9g
#: sw/inc/inspectorproperties.hrc:238
@@ -1881,13 +1881,13 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:244
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Text"
-msgstr ""
+msgstr "Testo Ruby"
#. tJEtt
#: sw/inc/inspectorproperties.hrc:245
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Snap to Grid"
-msgstr ""
+msgstr "Cattura alla griglia"
#. oDk6s
#: sw/inc/inspectorproperties.hrc:246
@@ -1905,7 +1905,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:248
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text Frame"
-msgstr ""
+msgstr "Cornice di testo"
#. CNyuR
#: sw/inc/inspectorproperties.hrc:249
@@ -1923,7 +1923,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:251
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text Table"
-msgstr ""
+msgstr "Tabella di testo"
#. hDjMA
#: sw/inc/inspectorproperties.hrc:252
@@ -1935,7 +1935,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:253
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Top Border"
-msgstr ""
+msgstr "Bordo superiore"
#. 6qBJD
#: sw/inc/inspectorproperties.hrc:254
@@ -2895,13 +2895,13 @@ msgstr "Figura"
#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
-msgstr ""
+msgstr "Destinatario"
#. PvoVz
#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
-msgstr ""
+msgstr "Mittente"
#. AChE4
#: sw/inc/strings.hrc:146
@@ -5780,19 +5780,19 @@ msgstr ""
#: sw/inc/strings.hrc:651
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
-msgstr ""
+msgstr "Attiva/Disattiva"
#. 7UQPv
#: sw/inc/strings.hrc:652
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
-msgstr ""
+msgstr "Mostra tutto"
#. ZUuCQ
#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
-msgstr ""
+msgstr "Nascondi tutto"
#. 9Fipd
#: sw/inc/strings.hrc:655
@@ -8012,13 +8012,13 @@ msgstr "Senza intestazione"
#: sw/inc/strings.hrc:1084
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
-msgstr ""
+msgstr "Ottimale"
#. HEuGy
#: sw/inc/strings.hrc:1085
msgctxt "STR_SURROUND_NONE"
msgid "None"
-msgstr ""
+msgstr "Nessuno"
#. 4tA4q
#: sw/inc/strings.hrc:1086
@@ -8030,19 +8030,19 @@ msgstr "Attraverso"
#: sw/inc/strings.hrc:1087
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
-msgstr ""
+msgstr "Parallelo"
#. hyEQ5
#: sw/inc/strings.hrc:1088
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
-msgstr ""
+msgstr "Prima"
#. bGBtQ
#: sw/inc/strings.hrc:1089
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
-msgstr ""
+msgstr "Dopo"
#. SrG3D
#: sw/inc/strings.hrc:1090
@@ -10274,7 +10274,7 @@ msgstr "Il server della posta in uscita (SMTP) richiede un'au_tenticazione"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:101
msgctxt "extended_tip|authentication"
msgid "Enables the authentication that is required to send email by SMTP."
-msgstr ""
+msgstr "Abilita l'autenticazione richiesta per l'invio della posta elettronica via SMTP."
#. 5F7CW
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:113
@@ -11444,13 +11444,13 @@ msgstr "Nota: separa gli indirizzi di posta elettronica con un punto e virgola (
#: sw/uiconfig/swriter/ui/ccdialog.ui:149
msgctxt "ccdialog|extended_tip|cc"
msgid "Enter the recipients of email copies, separated by a semicolon (;)."
-msgstr ""
+msgstr "Specifica i destinatari delle copie dei messaggi di posta elettronica, separati da un punto e virgola (;)."
#. BCsoU
#: sw/uiconfig/swriter/ui/ccdialog.ui:166
msgctxt "ccdialog|extended_tip|bcc"
msgid "Enter the recipients of email blind copies, separated by a semicolon (;)."
-msgstr ""
+msgstr "Specifica i destinatari delle copie nascoste dei messaggi di posta elettronica, separati da un punto e virgola (;)."
#. P3CcW
#: sw/uiconfig/swriter/ui/ccdialog.ui:183
@@ -12594,10 +12594,9 @@ msgstr "_Distanza dal testo:"
#. hsw2F
#: sw/uiconfig/swriter/ui/dropcapspage.ui:153
-#, fuzzy
msgctxt "dropcapspage|extended_tip|spinFLD_DROPCAPS"
msgid "Enter the number of characters to convert to drop caps."
-msgstr "Inserire il numero di caratteri da convertire in capolettere."
+msgstr "Inserisci il numero di caratteri da convertire in capolettere."
#. mTJvq
#: sw/uiconfig/swriter/ui/dropcapspage.ui:171
@@ -13775,7 +13774,6 @@ msgstr "Trova s_olo in"
#. vXdjr
#: sw/uiconfig/swriter/ui/findentrydialog.ui:150
-#, fuzzy
msgctxt "findentrydialog|extended_tip|findin"
msgid "Restricts the search to one data field."
msgstr "Restringe la ricerca a un unico campo dati."
@@ -13838,7 +13836,7 @@ msgstr "Selezionare la tabella del database o la ricerca nel database a cui dovr
#: sw/uiconfig/swriter/ui/flddbpage.ui:300
msgctxt "flddbpage|label2"
msgid "Database S_election"
-msgstr ""
+msgstr "Sc_elta database"
#. JeBVb
#: sw/uiconfig/swriter/ui/flddbpage.ui:326
@@ -13922,7 +13920,7 @@ msgstr "Elenca i comandi di campo disponibili che appartengono al tipo seleziona
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:169
msgctxt "flddocinfopage|label2"
msgid "_Select"
-msgstr ""
+msgstr "_Seleziona"
#. oGvBL
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:237
@@ -13934,7 +13932,7 @@ msgstr "Fai clic sul formato da applicare al comando di campo selezionato, oppur
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:251
msgctxt "flddocinfopage|fixed"
msgid "Fi_xed content"
-msgstr ""
+msgstr "Contenuto _fisso"
#. BojDo
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:260
@@ -13946,7 +13944,7 @@ msgstr "Inserisce il comando di campo come contenuto statico, cioè non aggiorna
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:278
msgctxt "flddocinfopage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Formato"
#. BmH6G
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:103
@@ -13970,7 +13968,7 @@ msgstr "Elenca i comandi di campo disponibili che appartengono al tipo seleziona
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:190
msgctxt "flddocumentpage|label2"
msgid "_Select"
-msgstr ""
+msgstr "_Seleziona"
#. xtXnr
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:267
@@ -13982,13 +13980,13 @@ msgstr "Fai clic sul formato da applicare al comando di campo selezionato, oppur
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:327
msgctxt "flddocumentpage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Formato"
#. k7KnK
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:343
msgctxt "flddocumentpage|fixed"
msgid "Fi_xed content"
-msgstr ""
+msgstr "Contenuto _fisso"
#. TjKiH
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:352
@@ -14000,7 +13998,7 @@ msgstr "Inserisce il comando di campo come contenuto statico, cioè non aggiorna
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:371
msgctxt "flddocumentpage|levelft"
msgid "_Level"
-msgstr ""
+msgstr "_Livello"
#. VX38D
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:388
@@ -14054,7 +14052,7 @@ msgstr "_Tipo"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:167
msgctxt "fldfuncpage|label4"
msgid "_Select"
-msgstr ""
+msgstr "_Seleziona"
#. b3UqC
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:229
@@ -14066,7 +14064,7 @@ msgstr "Fai clic sul formato da applicare al comando di campo selezionato, oppur
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:242
msgctxt "fldfuncpage|label2"
msgid "_Format"
-msgstr ""
+msgstr "_Formato"
#. CGoTS
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:267
@@ -14300,7 +14298,7 @@ msgstr "Elenca i comandi di campo disponibili che appartengono al tipo seleziona
#: sw/uiconfig/swriter/ui/fldvarpage.ui:214
msgctxt "fldvarpage|label2"
msgid "_Select"
-msgstr ""
+msgstr "_Seleziona"
#. ZuuQf
#: sw/uiconfig/swriter/ui/fldvarpage.ui:306
@@ -14318,7 +14316,7 @@ msgstr "Nell'elenco Formato, definire se il valore debba essere inserito come te
#: sw/uiconfig/swriter/ui/fldvarpage.ui:371
msgctxt "fldvarpage|label3"
msgid "_Format"
-msgstr ""
+msgstr "_Formato"
#. qPpKb
#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
@@ -14342,7 +14340,7 @@ msgstr "Li_vello"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
msgctxt "fldvarpage|separatorft"
msgid "Se_parator"
-msgstr ""
+msgstr "Se_paratore"
#. wrAG3
#: sw/uiconfig/swriter/ui/fldvarpage.ui:460
@@ -14856,10 +14854,9 @@ msgstr "Inserire il testo da visualizzare nella pagina in cui continua la nota a
#. PM3nD
#: sw/uiconfig/swriter/ui/footnotepage.ui:337
-#, fuzzy
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". %PRODUCTNAME Writer automatically inserts the number of the following page."
-msgstr "Inserire il testo da visualizzare quando la nota a piè di pagina continua alla pagina successiva, ad esempio \"continua a pagina\". %PRODUCTNAME Writer inserisce automaticamente il numero della pagina successiva. "
+msgstr "Inserisci il testo da visualizzare quando la nota a piè di pagina continua alla pagina successiva, ad esempio \"continua a pagina \". %PRODUCTNAME Writer inserisce automaticamente il numero della pagina successiva."
#. ZEhG2
#: sw/uiconfig/swriter/ui/footnotepage.ui:354
@@ -16471,15 +16468,16 @@ msgstr "Calcola il valore più grande di un elenco o di un'area."
#. PRJyk
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:294
+#, fuzzy
msgctxt "inputwinmenu|count"
msgid "Count"
-msgstr ""
+msgstr "Conteggio"
#. 3VBfQ
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:302
msgctxt "inputwinmenu|product"
msgid "Product"
-msgstr ""
+msgstr "Prodotto"
#. DRxEW
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:310
@@ -16575,7 +16573,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:421
msgctxt "inputwinmenu|sign"
msgid "Sign"
-msgstr ""
+msgstr "Segno"
#. ytZBB
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:429
@@ -16603,10 +16601,9 @@ msgstr "Segnalibro"
#. fofuv
#: sw/uiconfig/swriter/ui/insertbookmark.ui:107
-#, fuzzy
msgctxt "insertbookmark|extended_tip|name"
msgid "Type the name of the bookmark that you want to create. Then press Insert."
-msgstr "Digitare il nome del segnalibro da creare, quindi premere Inserisci."
+msgstr "Digita il nome del segnalibro da creare, quindi premi Inserisci."
#. zocpL
#: sw/uiconfig/swriter/ui/insertbookmark.ui:118
@@ -16886,10 +16883,9 @@ msgstr "Categoria:"
#. LySa4
#: sw/uiconfig/swriter/ui/insertcaption.ui:326
-#, fuzzy
msgctxt "insertcaption|extended_tip|category"
msgid "Select the caption category, or type a name to create a new category. The category text appears before the caption number in the caption label. Each predefined caption category is formatted with a paragraph style of the same name."
-msgstr "Selezionare la categoria della didascalia, oppure digitare un nome a scelta per creare una nuova categoria. Il testo della categoria compare davanti al numero nella didascalia. Tutte le categorie predefinite sono formattate con uno stile di paragrafo con lo stesso nome."
+msgstr "Seleziona la categoria della didascalia oppure digita un nome a scelta per creare una nuova categoria. Il testo della categoria compare davanti al numero nella didascalia. Tutte le categorie predefinite sono formattate con uno stile di paragrafo con lo stesso nome."
#. rJDNR
#: sw/uiconfig/swriter/ui/insertcaption.ui:343
@@ -17206,7 +17202,6 @@ msgstr "Scegli…"
#. XDgLr
#: sw/uiconfig/swriter/ui/insertfootnote.ui:242
-#, fuzzy
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "Inserisce un carattere speciale come richiamo per la nota a piè di pagina o di chiusura."
@@ -18061,7 +18056,7 @@ msgstr "Invia le risposte a un indirizzo e-mail _diverso"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:131
msgctxt "extended_tip|replytocb"
msgid "Uses the email address that you enter in the Reply address text box as the reply-to email address."
-msgstr ""
+msgstr "Utilizza l'indirizzo di posta elettronica specificato nella casella di testo \"Indirizzo di risposta\" per compilare il campo \"Rispondi a:\" del messaggio inviato."
#. AESca
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:145
@@ -18121,7 +18116,7 @@ msgstr "_Usa collegamento sicuro (SSL)"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:308
msgctxt "extended_tip|secure"
msgid "When available, uses a secure connection to send emails."
-msgstr ""
+msgstr "Se disponibile, usa una connessione sicura per l'invio della posta elettronica."
#. U82eq
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:327
@@ -18145,7 +18140,7 @@ msgstr "Impostazioni del server della posta in uscita (SMTP)"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:379
msgctxt "extended_tip|MailConfigPage"
msgid "Specifies the user information and server settings for when you send form letters as email messages."
-msgstr ""
+msgstr "Specifica le informazioni utente e le impostazioni del server da utilizzare per l'invio delle stampe in serie come messaggi di posta elettronica."
#. RyDB6
#: sw/uiconfig/swriter/ui/mailmerge.ui:16
@@ -19123,7 +19118,7 @@ msgstr "Messaggio di posta _elettronica"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:113
msgctxt "mmoutputtypepage|extended_tip|email"
msgid "Creates mail merge documents that you can send as an email message or an email attachment."
-msgstr ""
+msgstr "Crea documenti per la stampa in serie che puoi inviare come messaggio di posta elettronica o come allegato."
#. roGWt
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:148
@@ -19165,7 +19160,7 @@ msgstr "_A"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:140
msgctxt "mmresultemaildialog|extended_tip|mailto"
msgid "Select the database field that contains the email address of the recipient."
-msgstr ""
+msgstr "Seleziona il campo del database che contiene l'indirizzo di posta elettronica del destinatario."
#. H6VrM
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:151
@@ -19249,13 +19244,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:258
msgctxt "mmresultemaildialog|passwordft"
msgid "Password"
-msgstr ""
+msgstr "Password"
#. AEF8w
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:281
msgctxt "mmresultemaildialog|passwordcb"
msgid "Save with password"
-msgstr ""
+msgstr "Salva con password"
#. vHPkv
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:327
@@ -19273,7 +19268,7 @@ msgstr "Nome dell'allega_to"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:358
msgctxt "mmresultemaildialog|label2"
msgid "Email Options"
-msgstr ""
+msgstr "Opzioni di posta elettronica"
#. kCBDz
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:390
@@ -19321,13 +19316,13 @@ msgstr "Inserire il numero dell'ultimo record da includere nella stampa in serie
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:507
msgctxt "mmresultemaildialog|label1"
msgid "Send Records"
-msgstr ""
+msgstr "Invia registri"
#. 6VhcE
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:532
msgctxt "mmresultemaildialog|extended_tip|MMResultEmailDialog"
msgid "Sends the mail merge output as email messages to all or some recipients."
-msgstr ""
+msgstr "Invia il risultato della stampa in serie come messaggi di posta elettronica a tutti o ad alcuni destinatari."
#. rD68U
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:20
@@ -19375,7 +19370,7 @@ msgstr "Permette di modificare le proprietà della stampante."
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:170
msgctxt "mmresultprintdialog|label2"
msgid "Printer Options"
-msgstr ""
+msgstr "Opzioni stampante"
#. VemES
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:206
@@ -19423,7 +19418,7 @@ msgstr "Inserire il numero dell'ultimo record da includere nella stampa in serie
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:326
msgctxt "mmresultprintdialog|label1"
msgid "Print Records"
-msgstr ""
+msgstr "Stampa registri"
#. ZZ5p9
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:351
@@ -19507,7 +19502,7 @@ msgstr "Inserire il numero dell'ultimo record da includere nella stampa in serie
#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:254
msgctxt "mmresultsavedialog|label2"
msgid "Save As Options"
-msgstr ""
+msgstr "Salva come opzioni"
#. 2BCiE
#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:279
@@ -19819,7 +19814,7 @@ msgstr "Il collegamento al server della posta in uscita è stato stabilito"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:113
msgctxt "mmsendmails|label1"
msgid "Connection Status"
-msgstr ""
+msgstr "Stato della connessione"
#. s8CDU
#: sw/uiconfig/swriter/ui/mmsendmails.ui:162
@@ -19861,7 +19856,7 @@ msgstr "Dettagli"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:307
msgctxt "mmsendmails|label2"
msgid "Transfer Status"
-msgstr ""
+msgstr "Stato del trasferimento"
#. c2i5B
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
@@ -20059,7 +20054,7 @@ msgstr "Commuta tra la vista schema e la vista normale in un documento master ap
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
-msgstr ""
+msgstr "Vai alla pagina"
#. avLGA
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
@@ -20368,181 +20363,181 @@ msgid "~File"
msgstr "~File"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inizio"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inizio"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserisci"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserisci"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Riferimen_ti"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Riferimen~ti"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisione"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisione"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualizza"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualizza"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabella"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabella"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Imma_gine"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imma~gine"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Disegno"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Disegno"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oggetto"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oggetto"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Stampa"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Stampa"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "E_stensione"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "E~stensione"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "S_trumenti"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "S~trumenti"
@@ -21580,12 +21575,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Modifica contorno"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "E_stensione"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
@@ -22098,7 +22087,7 @@ msgstr "Riorganizza il menu Formulario per essere compatibile con MS"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:139
msgctxt "optcompatpage|label2"
msgid "Global Compatibility Options"
-msgstr ""
+msgstr "Opzioni di compatibilità globali"
#. KC3YE
#: sw/uiconfig/swriter/ui/optcompatpage.ui:235
@@ -22444,7 +22433,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optformataidspage.ui:273
msgctxt "optformataidspage|displayfl"
msgid "Display Formatting"
-msgstr ""
+msgstr "Mostra la formattazione"
#. ufN3R
#: sw/uiconfig/swriter/ui/optformataidspage.ui:305
@@ -23696,7 +23685,7 @@ msgstr "Contenuto uguale:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Margini:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23786,7 +23775,7 @@ msgstr "Contenuto uguale:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Margini:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
@@ -24590,7 +24579,7 @@ msgstr "Commenti"
#: sw/uiconfig/swriter/ui/printoptionspage.ui:476
msgctxt "printoptionspage|label5"
msgid "_Fax:"
-msgstr ""
+msgstr "_Fax:"
#. CFCk9
#: sw/uiconfig/swriter/ui/printoptionspage.ui:481
@@ -24794,7 +24783,7 @@ msgstr "Cognome"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:339
msgctxt "extended tips | firstname2"
msgid "Type your first name"
-msgstr ""
+msgstr "Inserisci il tuo nome"
#. rDNHk
#: sw/uiconfig/swriter/ui/privateuserpage.ui:356
@@ -24818,7 +24807,7 @@ msgstr "Iniziali"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:375
msgctxt "extended tips | shortname2"
msgid "Type your initials"
-msgstr ""
+msgstr "Inserisci le tue iniziali"
#. LGHpW
#: sw/uiconfig/swriter/ui/privateuserpage.ui:394
@@ -25920,31 +25909,31 @@ msgstr ""
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:88
msgctxt "sidebarwrap|wrapon|tooltip_text"
msgid "Parallel"
-msgstr ""
+msgstr "Parallelo"
#. 6LvB4
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:101
msgctxt "sidebarwrap|wrapideal|tooltip_text"
msgid "Optimal"
-msgstr ""
+msgstr "Ottimale"
#. 2TrbF
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:114
msgctxt "sidebarwrap|wrapbefore|tooltip_text"
msgid "Before"
-msgstr ""
+msgstr "Prima"
#. oKykv
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:127
msgctxt "sidebarwrap|wrapafter|tooltip_text"
msgid "After"
-msgstr ""
+msgstr "Dopo"
#. Sw6vj
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:140
msgctxt "sidebarwrap|wrapthrough|tooltip_text"
msgid "Through"
-msgstr ""
+msgstr "Attraverso"
#. PqGRt
#: sw/uiconfig/swriter/ui/sortdialog.ui:29
@@ -28788,7 +28777,7 @@ msgstr "Se è stato inserito un testo come Paragrafo nascosto, rende visibile il
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:286
msgctxt "viewoptionspage|fieldslabel"
msgid "Display Fields"
-msgstr ""
+msgstr "Mostra i campi"
#. EiyCk
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:320
@@ -29160,7 +29149,7 @@ msgstr "Specifica il modo in cui il testo dovrà scorrere attorno agli oggetti."
#: sw/uiconfig/swriter/ui/wrappage.ui:59
msgctxt "wrappage|none"
msgid "_Wrap Off"
-msgstr ""
+msgstr "_Separato"
#. KSWRg
#: sw/uiconfig/swriter/ui/wrappage.ui:75
@@ -29224,10 +29213,9 @@ msgstr "_Ottimale"
#. 4pAFL
#: sw/uiconfig/swriter/ui/wrappage.ui:210
-#, fuzzy
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
-msgstr "Fa scorrere automaticamente il testo sulla sinistra, sulla destra o sui quattro lati della cornice dell'oggetto. Lo scorrimento è possibile solo se la distanza tra l'oggetto e il margine della pagina è di almeno 2 cm. "
+msgstr "Fa scorrere automaticamente il testo sulla sinistra, sulla destra o sui quattro lati della cornice dell'oggetto. Lo scorrimento è possibile solo se la distanza tra l'oggetto e il margine della pagina è di almeno 2 cm."
#. FezRV
#: sw/uiconfig/swriter/ui/wrappage.ui:227
diff --git a/source/it/wizards/source/resources.po b/source/it/wizards/source/resources.po
index 7102e1987ac..1c58e2c2283 100644
--- a/source/it/wizards/source/resources.po
+++ b/source/it/wizards/source/resources.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-01-17 18:06+0000\n"
+"PO-Revision-Date: 2020-11-28 00:36+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/it/>\n"
"Language: it\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.1.1\n"
"X-POOTLE-MTIME: 1561726750.000000\n"
#. 8UKfi
@@ -4289,7 +4289,7 @@ msgctxt ""
"CorrespondenceFields_17\n"
"property.text"
msgid "Email"
-msgstr ""
+msgstr "E-mail"
#. w7uK5
#: resources_en_US.properties
diff --git a/source/ja/cui/messages.po b/source/ja/cui/messages.po
index 1935b50dbd8..cd91eec4aa7 100644
--- a/source/ja/cui/messages.po
+++ b/source/ja/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-09-24 16:35+0000\n"
-"Last-Translator: Souichirou Ishikawa <souichirho@gmail.com>\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
+"PO-Revision-Date: 2020-12-08 12:11+0000\n"
+"Last-Translator: Jun NOGATA <nogajun@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -2098,13 +2098,13 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME offers a variety of user interface options to make you feel at home"
-msgstr ""
+msgstr "%PRODUCTNAME には自分のなじみの場所になるような、さまざまなユーザーインターフェースが用意されています"
#. m8rYd
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
-msgstr "読み取り専用Writerドキュメントの一部を変更可能にするには、枠またはセクションを挿入し、編集可能に設定してください。"
+msgstr "Writerで読み取り専用文書の一部に変更許可を与えたいですか? その場合は、編集を許可した枠やセクションを挿入しましょう。"
#. BDEBo
#. local help missing
@@ -3492,7 +3492,7 @@ msgstr "詳細情報"
#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
-msgstr ""
+msgstr "今すぐUIを変更する"
#. P6JME
#: cui/inc/tipoftheday.hrc:277
@@ -3529,43 +3529,43 @@ msgstr "⌥ Opt"
#: cui/inc/toolbarmode.hrc:22
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended to user who are familiar with the classic interface."
-msgstr ""
+msgstr "メニューやツールバー、折りたためるサイドバーを備えた標準的なユーザーインターフェイスです。従来のインターフェースに慣れているユーザーを対象としています。"
#. S5tR2
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface but with only one toolbar. Intended for use on small screens."
-msgstr ""
+msgstr "標準的なユーザーインターフェースですが、ツールバーは1行だけです。小さな画面での使用を想定しています。"
#. wKg2Q
#: cui/inc/toolbarmode.hrc:24
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
-msgstr ""
+msgstr "拡張されたサイドバーを備えた標準的なユーザーインターフェースです。多くの異なるプロパティを素早く変更したい熟練のユーザーは、このUIを使用することをお勧めします。"
#. MEQAE
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed user interface is the most similar to the Ribbons used by Microsoft. It organize functions in tabs and makes the main menu obsolete."
-msgstr ""
+msgstr "タブ ユーザーUIは、Microsoftが使用しているリボンUIによく似ています。タブで機能を整理し、メインメニューは無効になります。"
#. hXNUY
#: cui/inc/toolbarmode.hrc:26
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with Microsoft's interface having at the same time a short interface for small screen sizes."
-msgstr ""
+msgstr "タブUI派生のタブ コンパクトは、小さな画面サイズ向けの縦が短いインターフェースですが、Microsoftのインターフェースと同様の利用ができることを目的としています。"
#. GFycb
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar Compact variant provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The compact variant favors vertical size."
-msgstr ""
+msgstr "グループバーUI派生のグループバー コンパクトは、機能をグループ化して、よく使われる機能はアイコンから。あまり使われない機能はドロップダウンメニューからアクセスできるようになります。コンパクト派生型は画面の縦サイズが短いものに向いています。"
#. Exopn
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar interface provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The full variant favors functions and is slightly larger than other variants."
-msgstr ""
+msgstr "グループバーは、機能をグループ化して、よく使われる機能はアイコンから。あまり使われない機能はドロップダウンメニューからアクセスできるようになります。完全なタイプは機能を優先しているので他のUIよりも若干大きくなっています。"
#. LNaMA
#: cui/inc/toolbarmode.hrc:29
@@ -20899,73 +20899,85 @@ msgstr "リンク"
#: cui/uiconfig/ui/toolbarmodedialog.ui:13
msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
+msgstr "希望するユーザーインターフェースを選択します"
+
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
+msgstr ""
+
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
#. odHug
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
-msgstr ""
-
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
+msgstr "標準ツールバー"
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
-msgstr ""
+msgstr "タブ"
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
-msgstr ""
-
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
+msgstr "タブコンパクト"
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
-msgstr ""
+msgstr "グループバー"
+
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr "グループバーコンパクト"
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
-msgstr ""
+msgstr "コンテキスト シングル"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
-msgstr ""
+msgstr "コンテキスト グループ"
+
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr "シングルツールバー"
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr "サイドバー"
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
-msgstr ""
+msgstr "UIの種類"
#. H7m7J
#: cui/uiconfig/ui/toolbarmodedialog.ui:366
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
-msgstr ""
+msgstr "プレビュー"
#. WChLB
#: cui/uiconfig/ui/transparencytabpage.ui:78
diff --git a/source/ja/dictionaries/ko_KR.po b/source/ja/dictionaries/ko_KR.po
index 21b95f5743b..28d6f59fc19 100644
--- a/source/ja/dictionaries/ko_KR.po
+++ b/source/ja/dictionaries/ko_KR.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
+"Last-Translator: Jun NOGATA <nogajun@gmail.com>\n"
+"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/dictionariesko_kr/ja/>\n"
+"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
#. DbXEb
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Korean spellcheck dictionary"
-msgstr ""
+msgstr "韓国語スペルチェック辞書"
diff --git a/source/ja/filter/source/config/fragments/filters.po b/source/ja/filter/source/config/fragments/filters.po
index 51f6fa3b4aa..c80e866cdd9 100644
--- a/source/ja/filter/source/config/fragments/filters.po
+++ b/source/ja/filter/source/config/fragments/filters.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-04-27 15:54+0200\n"
-"PO-Revision-Date: 2020-09-01 16:20+0000\n"
-"Last-Translator: Jun NOGATA <nogajun@gmail.com>\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
+"Last-Translator: fu7mu4 <fu7mu4@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -804,7 +804,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Text Template (Transitional)"
-msgstr "Office Open XML Text Template (Transitional)"
+msgstr "Office Open XML テンプレート(Transitional)"
#. B4Xqe
#: PBM___Portable_Bitmap.xcu
diff --git a/source/ja/helpcontent2/source/text/sbasic/shared.po b/source/ja/helpcontent2/source/text/sbasic/shared.po
index e53df8c24a7..91dc2da97f9 100644
--- a/source/ja/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ja/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-25 08:35+0000\n"
"Last-Translator: Souichirou Ishikawa <souichirho@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/ja/>\n"
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "データ記録媒体上に新規ディレクトリを作成します。"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "構文:"
+msgid "Creates a new directory on a data medium."
+msgstr "データ記録媒体上に新規ディレクトリを作成します。"
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "パラメーター:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> 作成するディレクトリの名前およびパスを指定する文字列表式。また<link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL 指定\">URL 指定</link>を用いることもできます。"
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "有効なパスが指定されなかった場合、現在のディレクトリの中に新規ディレクトリが作成されます。"
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "例:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "データ記録媒体上にある既存ディレクトリを削除します。"
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "構文:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "パラメーター:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "有効なパスが指定されなかった場合、<emph>RmDir ステートメント</emph> は、現在のパスの中で該当ディレクトリを検索します。該当するものが確認されないと、エラーメッセージが表示されます。"
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "例:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Basic プログラムの実行を停止させます。"
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "構文:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "例:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "特定のオブジェクトを、デフォルトオブジェクトとして設定します。End With ステートメントまでのコード行では、オブジェクト名を明示しない限り、すべての属性やメソッドはこのデフォルトオブジェクトを参照しているものと見なされます。"
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "構文:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "パラメーター:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "特定のオブジェクトに対して、複数の属性やメソッドを適用する場合は、<emph>With</emph> および <emph>End With</emph> の利用が便利です。"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "コンピューターのスピーカーを使ってビープ音を鳴らします。どのような音が再生されるかはシステムの設定により決まり、ボリュームやピッチの指定なども行えません。"
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "構文:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "例:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/ja/helpcontent2/source/text/scalc/00.po b/source/ja/helpcontent2/source/text/scalc/00.po
index ec0049754bf..795b6e541fd 100644
--- a/source/ja/helpcontent2/source/text/scalc/00.po
+++ b/source/ja/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-09-28 09:30+0000\n"
"Last-Translator: Souichirou Ishikawa <souichirho@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/ja/>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/ja/helpcontent2/source/text/scalc/guide.po b/source/ja/helpcontent2/source/text/scalc/guide.po
index f40eea15db0..fadc89bbf16 100644
--- a/source/ja/helpcontent2/source/text/scalc/guide.po
+++ b/source/ja/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Kurogane Himaki <kurogane@gkalumnium.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/ja/>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "行と列を両方とも固定するには、固定する行の下にあり、固定したい列の右にある<emph>セル</emph>を選択します。"
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "ある行をドキュメント内全ての印刷ページに印刷するには、<emph>書式 → 印刷範囲 → 編集</emph> で設定します。"
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/ja/helpcontent2/source/text/sdraw/01.po b/source/ja/helpcontent2/source/text/sdraw/01.po
index 0cd096f0973..ae9a62b8707 100644
--- a/source/ja/helpcontent2/source/text/sdraw/01.po
+++ b/source/ja/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: So <sou@e06.itscom.net>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/ja/>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/ja/helpcontent2/source/text/shared/01.po b/source/ja/helpcontent2/source/text/shared/01.po
index f869f437abd..f52f3dfc124 100644
--- a/source/ja/helpcontent2/source/text/shared/01.po
+++ b/source/ja/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-24 21:35+0000\n"
"Last-Translator: Souichirou Ishikawa <souichirho@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/ja/>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/ja/helpcontent2/source/text/shared/guide.po b/source/ja/helpcontent2/source/text/shared/guide.po
index e1fac37f94b..e8a0d076a9b 100644
--- a/source/ja/helpcontent2/source/text/shared/guide.po
+++ b/source/ja/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-23 19:35+0000\n"
"Last-Translator: Souichirou Ishikawa <souichirho@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/ja/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"%PRODUCTNAME の使い方\"><item type=\"productname\">%PRODUCTNAME</item> の使い方</link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "エラーレポートツール"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>エラーレポートツール</bookmark_value><bookmark_value>報告;エラーの報告</bookmark_value><bookmark_value>クラッシュの報告</bookmark_value><bookmark_value>起動;エラーレポートツール</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"エラーレポートツール\">エラーレポートツール</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "エラーレポートツールはプログラムクラッシュが起きると自動的に起動します。"
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "エラーレポートツールは、問題のあるコードをアプリケーション開発者が修正して将来バージョンでの再発を防止できるよう、必要な情報を可能な限り収集します。継続的なソフトウェアの開発を進めてゆく観点からも、このようなエラーに遭遇した場合には、お手数ですが表示されるエラーレポートを送信していただきますよう、ユーザーの皆様にはご協力をお願いします。"
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "エラーレポートツールの起動法"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "プログラムがクラッシュすると、ほとんどの場合、エラーレポートツールが起動します。"
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "レポートの作成"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "「エラーレポートツール」ダイアログには、アプリケーション開発者に必要となりそうな情報を、ユーザーが記入するフィールドが用意されています。たとえば、エラーが発生したのはハードウェアやソフトウェア環境を変更した直後であるとか、どのボタンを押したら発生したなどの情報を入力します。"
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "エラーレポートの送信"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "エラーレポートツールはレポートデータの送信に、HTTP PUT/SOAPプロトコル を使用します。また実際に操作したユーザーとして、プログラムがクラッシュした状況を把握するのに有用と思える情報があれば、それを説明した文章を入力します。レポートを送信するには、「<emph>送信する</emph>」ボタンをクリックします。"
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "送信したエラーレポートに対しては、特に返信が送られることはありません。何らかのサポートが必要であれば、インターネット上に用意されている <link href=\"text/shared/main0108.xhp\">サポートフォーラム</link> をご利用ください。"
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "送信されるデータの内容"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "ここでのエラーレポートは、複数のファイルから構成されます。メインのファイルには、エラーの種類、オペレーティングシステムの名前とバージョン、メモリの使用状況、ユーザーの記入した状況説明などの情報が収められます。送信前にメインファイルの内容を確認するには、エラーレポートツールのメインダイアログで、「<emph>レポートを表示</emph>」ボタンをクリックします。"
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "その他にも、メモリの内容やスタックトレースなどの関連情報が、システムの標準ツール (Windows システムの場合は「dbhhelp.dll」、UNIX システムの場合は「pstack」) で収集されます。送信時には、これらの情報も送られます。"
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "各ファックスに専用の印刷ジョッブを作成しないと、始めの受信者がすべてのファックスを受信することになってしまいます。<emph>ツール → 差し込み印刷</emph> ダイアログで、<emph>プリンター</emph> オプションを選択し、<emph>個別印刷ジョブの作成</emph> チェックボックスを選択します。"
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "標準テンプレートの変更"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>変更、変更を参照</bookmark_value><bookmark_value>変更、編集と置換も参照</bookmark_value><bookmark_value>標準テンプレート; 変更</bookmark_value><bookmark_value>標準;ドキュメント</bookmark_value><bookmark_value>カスタムテンプレート</bookmark_value><bookmark_value>更新; テンプレート</bookmark_value><bookmark_value>編集;テンプレート</bookmark_value><bookmark_value>テンプレート;編集と保存</bookmark_value><bookmark_value>保存;テンプレート</bookmark_value><bookmark_value>リセット;テンプレート</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"標準テンプレートを変更する\">標準テンプレートを変更する</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "メニュー <emph>ファイル</emph> → <emph>新規作成</emph> では、$[officename] 標準テンプレートを基にした新規文書ドキュメントや表計算ドキュメントなどが開きます。標準テンプレートを編集、変更または既存ドキュメントの書式と置換すると、新規ドキュメントはユーザーの設定した書式で開きます。"
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "標準テンプレートの変更"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "まず、必要に応じて既存の $[officename] テンプレートを開いて変更するか、新しいドキュメントを開いて編集し、目的のテンプレートを作成します。"
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
+
+#. bnC8i
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3145748\n"
+"help.text"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. 2pSHL
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3146901\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "どの $[officename] モジュールにもドキュメントテンプレートが1つ定義できます。ここでは、文書ドキュメントの場合の手順を説明します。"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
-#. dAATP
+#. MEA5R
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "<emph>ファイル - 新規作成 - テンプレート</emph> を選択します。"
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
msgstr ""
-#. GuEWL
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "ユーザー定義のドキュメントテンプレートを使う"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. Quf5G
+#. 3w93A
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id51605476162735\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "独自のカスタムテンプレートを使用して作業を容易にする方法は複数あります。"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. S8XFP
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "テンプレートフォルダーのテンプレート"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/ja/helpcontent2/source/text/shared/optionen.po b/source/ja/helpcontent2/source/text/shared/optionen.po
index 53c754001ce..c27696f61c9 100644
--- a/source/ja/helpcontent2/source/text/shared/optionen.po
+++ b/source/ja/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-13 17:35+0000\n"
"Last-Translator: Souichirou Ishikawa <souichirho@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ja/>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "表示"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "スクリーンフォントの縁を滑らかにする"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">最小のフォントサイズを入力してアンチエイリアス処理を適用します。</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "グラフィック出力"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">(Shift) + (Ctrl) + (R) を押すと、現在のドキュメントの表示が復元または更新されます。</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">(Shift) + (Ctrl) + (R) を押すと、現在のドキュメントの表示が復元または更新されます。</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\".\">サポートされている場合、グラフィックスのアンチエイリアシングを有効、または無効にすることができます。アンチエイリアシングを有効にすると、ほとんどのグラフィックオブジェクトは、アーティファクトが減少しより滑らかな感じに見えます。</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "メニュー"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "スクリーンフォントの縁を滑らかにする"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">最小のフォントサイズを入力してアンチエイリアス処理を適用します。</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/swriter/guide.po b/source/ja/helpcontent2/source/text/swriter/guide.po
index e7e93fea765..6d133f62fb2 100644
--- a/source/ja/helpcontent2/source/text/swriter/guide.po
+++ b/source/ja/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: So <sou@e06.itscom.net>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/ja/>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "別途指定しないかぎり、$[officename] の新しいテキストドキュメントはすべて標準のテンプレートを使用します。"
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] には、ビジネスレターなどを文書ドキュメントで作成する際にひな形として利用できる、各種の<link href=\"text/swriter/01/05130000.xhp\" name=\"事前定義されたテンプレート\">事前定義されたテンプレート</link>が用意されています。"
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "ダイレクトカーソルを設定するためには、choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - 設定</emph></caseinline><defaultinline><emph>ツール - オプション</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - 書式サポート</emph>で選択します。"
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "<item type=\"menuitem\">ツール</item>バーで、<item type=\"menuitem\">ダイレクトカーソル</item>アイコン<image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">アイコン</alt></image>をクリックします。"
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "文書ドキュメント上の空白部をクリックすると、マウスポインターが、入力テキストの配置を示すアイコンに変化します。"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">アイコン</alt></image>左揃え"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">アイコン</alt></image>中央揃え"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">アイコン</alt></image>右揃え"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
index 0d674de10d9..ddff4f84e78 100644
--- a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-31 11:36+0000\n"
-"Last-Translator: Jun NOGATA <nogajun@gmail.com>\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-02 20:36+0000\n"
+"Last-Translator: Shinji Enoki <shinji.enoki@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565185748.000000\n"
#. W5ukN
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "スライドを非表示(~H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "テキスト(~X)..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -12104,7 +12104,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Distribute Selection"
-msgstr ""
+msgstr "分布"
#. qQQAi
#: Effects.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "ファイル(~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "整列(~N)"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "整列(~N)"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -26446,7 +26446,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Distribute Selection"
-msgstr ""
+msgstr "分布"
#. vDkBA
#: GenericCommands.xcu
@@ -27386,7 +27386,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Distribute Selection"
-msgstr ""
+msgstr "分布"
#. tpAhh
#: MathCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "段落末まで選択"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "単語の右側まで選択"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ja/sc/messages.po b/source/ja/sc/messages.po
index 40e1a3b259f..21ff0151503 100644
--- a/source/ja/sc/messages.po
+++ b/source/ja/sc/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-09-24 16:35+0000\n"
-"Last-Translator: Souichirou Ishikawa <souichirho@gmail.com>\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-11-28 00:36+0000\n"
+"Last-Translator: Jun NOGATA <nogajun@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -1467,109 +1467,109 @@ msgstr "Dif のインポート"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "標準"
#. TG9pD
#: sc/inc/globstr.hrc:273
msgctxt "STR_STYLENAME_HEADING"
msgid "Heading"
-msgstr ""
+msgstr "見出し"
#. NM7R3
#: sc/inc/globstr.hrc:274
msgctxt "STR_STYLENAME_HEADING_1"
msgid "Heading 1"
-msgstr ""
+msgstr "見出し1"
#. 8XF63
#: sc/inc/globstr.hrc:275
msgctxt "STR_STYLENAME_HEADING_2"
msgid "Heading 2"
-msgstr ""
+msgstr "見出し2"
#. WBuWS
#: sc/inc/globstr.hrc:276
msgctxt "STR_STYLENAME_TEXT"
msgid "Text"
-msgstr ""
+msgstr "テキスト"
#. tMJaD
#: sc/inc/globstr.hrc:277
msgctxt "STR_STYLENAME_NOTE"
msgid "Note"
-msgstr ""
+msgstr "メモ"
#. Df8xB
#: sc/inc/globstr.hrc:278
msgctxt "STR_STYLENAME_FOOTNOTE"
msgid "Footnote"
-msgstr ""
+msgstr "脚注"
#. 2hk6H
#: sc/inc/globstr.hrc:279
msgctxt "STR_STYLENAME_HYPERLINK"
msgid "Hyperlink"
-msgstr ""
+msgstr "ハイパーリンク"
#. aeksB
#: sc/inc/globstr.hrc:280
msgctxt "STR_STYLENAME_STATUS"
msgid "Status"
-msgstr ""
+msgstr "状態"
#. pxAhk
#: sc/inc/globstr.hrc:281
msgctxt "STR_STYLENAME_GOOD"
msgid "Good"
-msgstr ""
+msgstr "良い"
#. Ebk8F
#: sc/inc/globstr.hrc:282
msgctxt "STR_STYLENAME_NEUTRAL"
msgid "Neutral"
-msgstr ""
+msgstr "どちらでもない"
#. FdWhD
#: sc/inc/globstr.hrc:283
msgctxt "STR_STYLENAME_BAD"
msgid "Bad"
-msgstr ""
+msgstr "悪い"
#. t6f8W
#: sc/inc/globstr.hrc:284
msgctxt "STR_STYLENAME_WARNING"
msgid "Warning"
-msgstr ""
+msgstr "警告"
#. 99BgJ
#: sc/inc/globstr.hrc:285
msgctxt "STR_STYLENAME_ERROR"
msgid "Error"
-msgstr ""
+msgstr "エラー"
#. yGAVF
#: sc/inc/globstr.hrc:286
msgctxt "STR_STYLENAME_ACCENT"
msgid "Accent"
-msgstr ""
+msgstr "アクセント"
#. fw24e
#: sc/inc/globstr.hrc:287
msgctxt "STR_STYLENAME_ACCENT_1"
msgid "Accent 1"
-msgstr ""
+msgstr "アクセント1"
#. nHhDx
#: sc/inc/globstr.hrc:288
msgctxt "STR_STYLENAME_ACCENT_2"
msgid "Accent 2"
-msgstr ""
+msgstr "アクセント2"
#. NsLP7
#: sc/inc/globstr.hrc:289
msgctxt "STR_STYLENAME_ACCENT_3"
msgid "Accent 3"
-msgstr ""
+msgstr "アクセント3"
#. GATGM
#: sc/inc/globstr.hrc:290
@@ -24588,213 +24588,213 @@ msgid "~File"
msgstr "ファイル(~F)"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "選択したセルの枠線を指定します。"
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "ホーム(_H)"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "フィールド(_D)"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "挿入(_I)"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "挿入(~I)"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "レイアウト(~L)"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "データ(_D)"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "データ(~D)"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "レビュー(_R)"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "レビュー(~R)"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "表示(_V)"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "表示(~V)"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "画像(_G)"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "画像(~G)"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "オブジェクト(_O)"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "オブジェクト(~O)"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "メディア(_M)"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "メディア(~M)"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "印刷(_P)"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "印刷(~P)"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "拡張機能(_X)"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "拡張機能(~X)"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "ツール(_T)"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "ツール(~T)"
@@ -29624,338 +29624,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "ソルバー"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "オプション(_P)..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "解決(_S)"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "ターゲットセル(_T)"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "結果の最適化"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "変更させるセル(_B)"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "最小値(_U)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "最大値(_M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "値(_V)"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "セル参照(_C)"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "演算子(_O)"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "値(_A)"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "セル参照"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "セル参照"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "セル参照"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "セル参照"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "整数"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "バイナリ"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "演算子"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "整数"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "バイナリ"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "演算子"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "整数"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "バイナリ"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "演算子"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "整数"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "バイナリ"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "演算子"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "値"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "値"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "値"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "値"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "削除"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "削除"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "削除"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "削除"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "制限条件"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ja/sd/messages.po b/source/ja/sd/messages.po
index 7087f4a4133..bdea48bd582 100644
--- a/source/ja/sd/messages.po
+++ b/source/ja/sd/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-08-02 07:43+0000\n"
-"Last-Translator: jun meguro <jmaguro@gmail.com>\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
+"PO-Revision-Date: 2020-12-05 18:23+0000\n"
+"Last-Translator: Souichirou Ishikawa <souichirho@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562492439.000000\n"
#. WDjkB
@@ -288,7 +288,7 @@ msgstr ""
#: sd/inc/pageformatpanel.hrc:29
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (%1)"
-msgstr ""
+msgstr "標準 (%1)"
#. DjCNK
#: sd/inc/pageformatpanel.hrc:30
@@ -3821,116 +3821,116 @@ msgstr "表(~T)"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "メディア(_M)"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "メディア(~M)"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "ツール(_T)"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "ツール(~T)"
@@ -4334,12 +4334,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "メニュー(_M)"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6572,219 +6566,219 @@ msgid "~File"
msgstr "ファイル(~F)"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "ホーム(_H)"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "ホーム(~H)"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "フィールド(_D)"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "挿入(_I)"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "挿入(~I)"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "レイアウト(~L)"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "スライドショー(_S)"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "スライドショー(~S)"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "レビュー(_R)"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "レビュー(~R)"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "表示(_V)"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "表示(~V)"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "オブジェクト(_O)"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "オブジェクト(~O)"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "メディア(_M)"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "ツール(_T)"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "ツール(~T)"
@@ -7695,12 +7689,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "輪郭の編集"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ja/sfx2/messages.po b/source/ja/sfx2/messages.po
index 9658ee3713f..a9b734df136 100644
--- a/source/ja/sfx2/messages.po
+++ b/source/ja/sfx2/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-22 12:51+0100\n"
-"PO-Revision-Date: 2020-08-21 11:51+0000\n"
-"Last-Translator: Jun NOGATA <nogajun@gmail.com>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: So <sou@e06.itscom.net>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562983822.000000\n"
#. bHbFE
@@ -1656,7 +1656,7 @@ msgstr "サイドバーデッキを閉じる"
#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
-msgstr ""
+msgstr "アリザリン"
#. FkuLG
#: include/sfx2/strings.hrc:303
@@ -1674,13 +1674,13 @@ msgstr ""
#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
-msgstr ""
+msgstr "青写真"
#. AEtHT
#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
-msgstr ""
+msgstr "瑠璃色"
#. tPjXG
#: include/sfx2/strings.hrc:307
@@ -1837,13 +1837,13 @@ msgstr "ロゴ入り名刺"
#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
-msgstr ""
+msgstr "シンプル"
#. W7NVH
#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
-msgstr ""
+msgstr "ビジネスプロセスモデリング"
#. ZaGGB
#: include/sfx2/strings.hrc:336
@@ -2263,13 +2263,13 @@ msgstr ""
#: sfx2/uiconfig/ui/addtargetdialog.ui:232
msgctxt "addtargetdialog|checkboxCaseSensitive"
msgid "Match case"
-msgstr ""
+msgstr "大/小文字を区別"
#. G2u3B
#: sfx2/uiconfig/ui/addtargetdialog.ui:247
msgctxt "addtargetdialog|checkboxWholeWords"
msgid "Whole words only"
-msgstr ""
+msgstr "完全一致のみ"
#. JV66c
#: sfx2/uiconfig/ui/alienwarndialog.ui:7
@@ -2311,7 +2311,7 @@ msgstr "ODF または標準の形式で保存しない場合は尋ねる(_A)"
#: sfx2/uiconfig/ui/autoredactdialog.ui:24
msgctxt "autoredactdialog|AutoRedactDialog"
msgid "Automatic Redaction"
-msgstr ""
+msgstr "自動墨消し"
#. QCidi
#: sfx2/uiconfig/ui/autoredactdialog.ui:122
@@ -2335,7 +2335,7 @@ msgstr ""
#: sfx2/uiconfig/ui/autoredactdialog.ui:161
msgctxt "autoredactdialog|target"
msgid "Match case"
-msgstr ""
+msgstr "大/小文字を区別"
#. obHtC
#: sfx2/uiconfig/ui/autoredactdialog.ui:174
diff --git a/source/ja/starmath/messages.po b/source/ja/starmath/messages.po
index 2f3b2289bda..a868bfccbac 100644
--- a/source/ja/starmath/messages.po
+++ b/source/ja/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-06-23 11:20+0000\n"
"Last-Translator: So <sou@e06.itscom.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ja/svx/messages.po b/source/ja/svx/messages.po
index 85c4c629186..52f08813f70 100644
--- a/source/ja/svx/messages.po
+++ b/source/ja/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: JO3EMC <jo3emc@jarl.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ja/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "スライドを現在のウィンドウのサイズに合わせます。"
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "すべてのスマートアートをロードすることができませんでした。Microsoft Office 2010またはそれ以降のバージョンでセーブすることでこの問題を解決できます。"
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "ナビゲーションバー"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"クラッシュレポートは正常にアップロードされました。\n"
-"レポートは以下から参照できます:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "クラッシュレポートを送信する(_S)"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "送信しない(_N)"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/ja/sw/messages.po b/source/ja/sw/messages.po
index 3835332cf2f..92829c53565 100644
--- a/source/ja/sw/messages.po
+++ b/source/ja/sw/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-10-31 11:36+0000\n"
-"Last-Translator: Jun NOGATA <nogajun@gmail.com>\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-11-28 00:36+0000\n"
+"Last-Translator: JO3EMC <jo3emc@jarl.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -2893,13 +2893,13 @@ msgstr "図"
#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
-msgstr ""
+msgstr "宛先"
#. PvoVz
#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
-msgstr ""
+msgstr "差出人"
#. AChE4
#: sw/inc/strings.hrc:146
@@ -3134,7 +3134,7 @@ msgstr "副題"
#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
-msgstr ""
+msgstr "付録"
#. xiVb7
#: sw/inc/strings.hrc:186
@@ -20358,181 +20358,181 @@ msgid "~File"
msgstr "ファイル(~F)"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "ホーム(_H)"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "ホーム(~H)"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "挿入(_I)"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "挿入(~I)"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "レイアウト(_L)"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "レイアウト(~L)"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "参照(_S)"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "参照(~S)"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "レビュー(_R)"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "レビュー(~R)"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "表示(_V)"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "表示(~V)"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "表(~T)"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "メディア(_M)"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "印刷(_P)"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "印刷(~P)"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "フォーム(_R)"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "フォーム(~R)"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "拡張機能(_X)"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "拡張機能(~X)"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "ツール(_T)"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "ツール(~T)"
@@ -21570,12 +21570,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "輪郭の編集"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/ja/wizards/messages.po b/source/ja/wizards/messages.po
index 0a28e26d4df..9ed98e1fc39 100644
--- a/source/ja/wizards/messages.po
+++ b/source/ja/wizards/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-10-20 16:35+0000\n"
-"Last-Translator: fu7mu4 <fu7mu4@gmail.com>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: jun meguro <jmaguro@gmail.com>\n"
"Language-Team: Japanese <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardsmessages/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -584,7 +584,7 @@ msgstr "以上"
#: wizards/com/sun/star/wizards/common/strings.hrc:133
msgctxt "RID_LETTERWIZARDROADMAP_START_1"
msgid "Page Design"
-msgstr ""
+msgstr "ぺージデザイン"
#. vezch
#: wizards/com/sun/star/wizards/common/strings.hrc:134
diff --git a/source/jv/cui/messages.po b/source/jv/cui/messages.po
index 4ffb19b2c4a..715f062f2c0 100644
--- a/source/jv/cui/messages.po
+++ b/source/jv/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21193,60 +21193,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
index d74f99ead64..8b70859c156 100644
--- a/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-03-11 23:00+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8085,14 +8085,14 @@ msgctxt ""
msgid "~Hide Slide"
msgstr ""
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
+msgid "Te~xt Attributes..."
msgstr ""
#. GR6Sf
@@ -25692,24 +25692,24 @@ msgctxt ""
msgid "~File"
msgstr ""
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Alig~n Objects"
msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Align Tex~t"
msgstr ""
#. y3E2U
@@ -31340,14 +31340,14 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr ""
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
+msgid "Select to End of Word"
msgstr ""
#. bpBoC
diff --git a/source/jv/sc/messages.po b/source/jv/sc/messages.po
index 4f33d0ac854..7579cdb454e 100644
--- a/source/jv/sc/messages.po
+++ b/source/jv/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24796,213 +24796,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29921,344 +29921,350 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr ""
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr ""
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "maksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Biji"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr ""
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr ""
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr ""
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr ""
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr ""
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr ""
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr ""
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr ""
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Biji"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Biji"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Biji"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Biji"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
#, fuzzy
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Buw~ang"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
#, fuzzy
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Buw~ang"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
#, fuzzy
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Buw~ang"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
#, fuzzy
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Buw~ang"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/jv/sd/messages.po b/source/jv/sd/messages.po
index df6c26ec5f6..1dd3e29558f 100644
--- a/source/jv/sd/messages.po
+++ b/source/jv/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3877,116 +3877,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4390,12 +4390,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6646,219 +6640,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7798,12 +7792,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/jv/starmath/messages.po b/source/jv/starmath/messages.po
index 279d669f8a5..6a19b5c57f9 100644
--- a/source/jv/starmath/messages.po
+++ b/source/jv/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2198,9 +2198,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/jv/svx/messages.po b/source/jv/svx/messages.po
index e134e613b95..caed8fbb625 100644
--- a/source/jv/svx/messages.po
+++ b/source/jv/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-03-11 23:02+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7283,10 +7283,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14059,13 +14059,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14089,10 +14089,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/jv/sw/messages.po b/source/jv/sw/messages.po
index eedc7619a2d..51cad321385 100644
--- a/source/jv/sw/messages.po
+++ b/source/jv/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-03-11 23:03+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20730,181 +20730,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21953,12 +21953,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/ka/cui/messages.po b/source/ka/cui/messages.po
index 0a657fd5acc..d043d7c11de 100644
--- a/source/ka/cui/messages.po
+++ b/source/ka/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21453,60 +21453,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ka/helpcontent2/source/text/sbasic/shared.po b/source/ka/helpcontent2/source/text/sbasic/shared.po
index 0e55febaf1c..3573b8a53bb 100644
--- a/source/ka/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ka/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,49 +12814,40 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "სინტაქსი"
+msgid "Creates a new directory on a data medium."
+msgstr ""
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "RTrim (Text As String)"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
+msgid "MkDir path"
msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
#. PLopZ
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr ""
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "მაგალითი:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr ""
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "სინტაქსი"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RTrim (Text As String)"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr ""
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "მაგალითი:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr ""
-#. FtjMt
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "სინტაქსი"
-
-#. qrBWD
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "მაგალითი:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,40 +24811,49 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
msgstr ""
#. zLuzY
@@ -34099,24 +34063,15 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "აპიპინებს კომპიუტერის სპიკერიდან. ტონი დამოკიდებულია სისტემაზე და თქვენ არ შეგიძლიათ მისი ხმის ან ტონის შეცვლა."
-#. ACDCD
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3153990\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
msgstr ""
-#. 9DA89
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
-"help.text"
-msgid "Example:"
-msgstr "მაგალითი:"
-
#. 9FABw
#: 03130500.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/scalc/00.po b/source/ka/helpcontent2/source/text/scalc/00.po
index df3fe6b0229..0c9b5f541ac 100644
--- a/source/ka/helpcontent2/source/text/scalc/00.po
+++ b/source/ka/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/ka/helpcontent2/source/text/scalc/guide.po b/source/ka/helpcontent2/source/text/scalc/guide.po
index 93adce0891a..df250a0406e 100644
--- a/source/ka/helpcontent2/source/text/scalc/guide.po
+++ b/source/ka/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr ""
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr ""
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/ka/helpcontent2/source/text/sdraw/01.po b/source/ka/helpcontent2/source/text/sdraw/01.po
index 50be3f1f50d..bb6f08c0b7f 100644
--- a/source/ka/helpcontent2/source/text/sdraw/01.po
+++ b/source/ka/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-10 02:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/ka/helpcontent2/source/text/shared/01.po b/source/ka/helpcontent2/source/text/shared/01.po
index d1583a8d819..fb63f26e526 100644
--- a/source/ka/helpcontent2/source/text/shared/01.po
+++ b/source/ka/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/ka/helpcontent2/source/text/shared/guide.po b/source/ka/helpcontent2/source/text/shared/guide.po
index 303d072db5c..abe5046dfab 100644
--- a/source/ka/helpcontent2/source/text/shared/guide.po
+++ b/source/ka/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr ""
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,148 +10447,139 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
+msgid "Crash Report Tool"
msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
+msgid "Starting the Crash Report Tool"
msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
+msgid "With most program crashes the Crash Report Tool will start automatically."
msgstr ""
-#. d4BEq
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr ""
-
-#. vq6k8
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
+msgid "Sending the Crash Report"
msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
msgstr ""
#. uD7Ga
@@ -22075,31 +21796,31 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr ""
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
+msgid "Creating and Changing Default and Custom Templates"
msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
msgstr ""
#. nWgSj
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr ""
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
+msgid "Creating a Default Template"
msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
msgstr ""
-#. GuEWL
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
msgstr ""
-#. Quf5G
+#. VMFLZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id191605477448444\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
msgstr ""
-#. S8XFP
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
+msgid "Saving a Template in the Template Folder"
msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/ka/helpcontent2/source/text/shared/optionen.po b/source/ka/helpcontent2/source/text/shared/optionen.po
index 1fd25779f74..fa9ca788c0f 100644
--- a/source/ka/helpcontent2/source/text/shared/optionen.po
+++ b/source/ka/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "ხედი"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "ეკრანული შრიფტების ანტიდაგლუვება"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">ანტიდაგლუვებისთვის შრიფტის უმცირესი ზომა შეიყვანეთ.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,22 +3751,22 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "გრაფიკული გამოტანა"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr ""
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgid "Graphics Output"
msgstr ""
#. WzMq5
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr ""
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN107A3\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Menu"
-msgstr "მენიუ"
-
-#. WnNCQ
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"hd_id3156056\n"
-"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "ეკრანული შრიფტების ანტიდაგლუვება"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">ანტიდაგლუვებისთვის შრიფტის უმცირესი ზომა შეიყვანეთ.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/swriter/guide.po b/source/ka/helpcontent2/source/text/swriter/guide.po
index 8c1968b2919..84c4df7a40b 100644
--- a/source/ka/helpcontent2/source/text/swriter/guide.po
+++ b/source/ka/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,13 +16891,13 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr ""
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
msgstr ""
#. VFfAP
@@ -17269,13 +17251,13 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
msgstr ""
#. AmitQ
@@ -17287,31 +17269,31 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr ""
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
msgstr ""
#. EuMGF
diff --git a/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
index d96df32f63d..e9d4abf9243 100644
--- a/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8110,15 +8110,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "სლაიდის ~ჩვენება/დამალვა"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "ტე~ქსტი..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25783,27 +25783,25 @@ msgctxt ""
msgid "~File"
msgstr "~ფაილი"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "გასწორება"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "გასწორება"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31470,15 +31468,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "აბზაცის ბოლოდან მონიშვნა"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "სიტყვიდან მარჯვნივ მონიშვნა"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ka/readlicense_oo/docs.po b/source/ka/readlicense_oo/docs.po
index 92fd78efca5..34232febb80 100644
--- a/source/ka/readlicense_oo/docs.po
+++ b/source/ka/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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2018-11-12 11:55+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"Language-Team: Georgian <https://weblate.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/ka/>\n"
"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1542023758.000000\n"
#. q6Gg3
@@ -617,7 +617,7 @@ msgctxt ""
"naso6\n"
"readmeitem.text"
msgid "To enable touchpad scrolling, add the following lines to the \"<tt>C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini</tt>\" configuration file, and restart your computer:"
-msgstr "იმისათვის რათა შესაძლებელი გახადოთ გადაწევა თაჩფედის საშუალებით, დაამატეთ მომდევნო სტრიქონები \"C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini\" კონფიგურაციის ფაილს, და გადატვირთეთ თქვენი კომპიუტერი."
+msgstr "იმისათვის რათა შესაძლებელი გახადოთ გადაწევა თაჩფედის საშუალებით, დაამატეთ მომდევნო სტრიქონები \"<tt>C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini</tt>\" კონფიგურაციის ფაილს, და გადატვირთეთ თქვენი კომპიუტერი."
#. BdEXg
#: readme.xrm
@@ -644,7 +644,7 @@ msgctxt ""
"sdcc32asrc\n"
"readmeitem.text"
msgid "The Mozilla address book driver requires the <tt>SUNWzlib</tt> package. This package is not part of the minimum Solaris operating system installation. If you require access to the Mozilla address book, then add this package to your Solaris operating system using the command \"<tt>pkgadd</tt>\" from the installation CD."
-msgstr "Mozilla მისამართების წიგნის დრაივერი საჭიროებს SUNWzlib პაკეტს. ეს პაკეტი არ არის Solaris-ის მინიმალური საინტალაციო პაკეტის ნაწილი. თუ თქვენ გესაჭიროებათ დაშვება Mozilla-ს მისამართების წიგნში, მაშინ დაამატეთ ეს პაკეტი თქვენი Solaris-ის ოპერაციულ სისტემას საინტალაციო კომპაქტ დისკიდან ბრძანება \"pkgadd\" გამოყენებით."
+msgstr "Mozilla მისამართების წიგნის დრაივერი საჭიროებს <tt>SUNWzlib</tt> პაკეტს. ეს პაკეტი არ არის Solaris-ის მინიმალური საინტალაციო პაკეტის ნაწილი. თუ თქვენ გესაჭიროებათ დაშვება Mozilla-ს მისამართების წიგნში, მაშინ დაამატეთ ეს პაკეტი თქვენი Solaris-ის ოპერაციულ სისტემას საინტალაციო კომპაქტ დისკიდან ბრძანება \"<tt>pkgadd</tt>\" გამოყენებით."
#. YFEgC
#: readme.xrm
diff --git a/source/ka/sc/messages.po b/source/ka/sc/messages.po
index 3291f34949c..3e7d38a62ae 100644
--- a/source/ka/sc/messages.po
+++ b/source/ka/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25100,213 +25100,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30309,342 +30309,348 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "_პარამეტრები..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "~მონიმუმი"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "~მონიმუმი"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
#, fuzzy
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "ოპერატორი"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "მნიშვნელობა"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr ""
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "ოპერატორი"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr ""
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "ოპერატორი"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr ""
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "ოპერატორი"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr ""
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "ოპერატორი"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "მნიშვნელობა"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "მნიშვნელობა"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "მნიშვნელობა"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "მნიშვნელობა"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "წაშლა"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "წაშლა"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "წაშლა"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "წაშლა"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ka/sd/messages.po b/source/ka/sd/messages.po
index 8c2d6c9c9d6..45b0bf4c13b 100644
--- a/source/ka/sd/messages.po
+++ b/source/ka/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3887,116 +3887,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4400,12 +4400,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6724,219 +6718,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7896,12 +7890,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ტექსტის კონტური"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ka/starmath/messages.po b/source/ka/starmath/messages.po
index 1b0a09d25f8..aab20efdba5 100644
--- a/source/ka/starmath/messages.po
+++ b/source/ka/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2200,9 +2200,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ka/svx/messages.po b/source/ka/svx/messages.po
index ffc5fa7ee60..610dbfd5906 100644
--- a/source/ka/svx/messages.po
+++ b/source/ka/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7294,10 +7294,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14147,13 +14147,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "ნავიგაციის პანელი"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14177,10 +14177,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/ka/sw/messages.po b/source/ka/sw/messages.po
index b79585180fa..d32926cbc02 100644
--- a/source/ka/sw/messages.po
+++ b/source/ka/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20909,181 +20909,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22137,12 +22137,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ტექსტის კონტური"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/kab/cui/messages.po b/source/kab/cui/messages.po
index 82f317c9462..42a9cca4de0 100644
--- a/source/kab/cui/messages.po
+++ b/source/kab/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-04-10 22:16+0000\n"
"Last-Translator: Muḥend Velqasem <belkacem77@gmail.com>\n"
"Language-Team: Kabyle <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/kab/>\n"
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po
index aab38f1d6c1..8593ac07264 100644
--- a/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8025,15 +8025,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Ffer Tugn n Tigri"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Aḍris..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25507,25 +25507,25 @@ msgctxt ""
msgid "~File"
msgstr "Afa~ylu"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Re~yyec"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Re~yyec"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31097,14 +31097,14 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr ""
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
+msgid "Select to End of Word"
msgstr ""
#. bpBoC
diff --git a/source/kab/sc/messages.po b/source/kab/sc/messages.po
index be960aa2150..0e9a8da1b33 100644
--- a/source/kab/sc/messages.po
+++ b/source/kab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-12-14 20:43+0000\n"
"Last-Translator: Muḥend Velqasem <belkacem77@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24598,213 +24598,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29646,338 +29646,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Iɣe_wwaren..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Fru"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "S us_nifel n tebniqin"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "A_dday"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "A_fellay"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "A_zal n"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Ta_msisɣelt n tebniqt"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "A_mahal"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "A_zal"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Tamsisɣelt n tebniqt"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Tamsisɣelt n tebniqt"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Tamsisɣelt n tebniqt"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Tamsisɣelt n tebniqt"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Ummid"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Imisin"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Opérateur"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Ummid"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Imisin"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Opérateur"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Ummid"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Imisin"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Opérateur"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Ummid"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Imisin"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Opérateur"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Azal"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Azal"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Azal"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Azal"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Kkes"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Kkes"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Kkes"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Kkes"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/kab/sd/messages.po b/source/kab/sd/messages.po
index 5138852f575..c93680f99bb 100644
--- a/source/kab/sd/messages.po
+++ b/source/kab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3818,116 +3818,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Selket"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "I_fecka"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4331,12 +4331,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6568,219 +6562,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7690,12 +7684,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Ẓreg aɣawas"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/kab/starmath/messages.po b/source/kab/starmath/messages.po
index 3d506c34c60..afe4c102dbd 100644
--- a/source/kab/starmath/messages.po
+++ b/source/kab/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2186,9 +2186,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/kab/svx/messages.po b/source/kab/svx/messages.po
index 97be543bf3e..6b3956f50f4 100644
--- a/source/kab/svx/messages.po
+++ b/source/kab/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-02-24 05:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Kabyle <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/kab/>\n"
@@ -7234,10 +7234,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Sezg timeccegit ɣer usfaylu amiran."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -13987,17 +13987,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Tafeggat n yinig"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Aneqqis n unezri yettwazen akken ilaq\n"
-"Ur tettɛeṭṭileḍ ara ad tafeḍ aneqqis di:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -14022,10 +14019,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "A_zen aneqqis n unezri"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/kab/sw/messages.po b/source/kab/sw/messages.po
index 333a2452941..d0bec62ca57 100644
--- a/source/kab/sw/messages.po
+++ b/source/kab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -99,10 +99,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20355,181 +20355,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21567,12 +21567,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Ẓreg azizdew"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/kk/cui/messages.po b/source/kk/cui/messages.po
index 11cc9092ac4..2cef6b4182c 100644
--- a/source/kk/cui/messages.po
+++ b/source/kk/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/kk/>\n"
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/kk/dictionaries/ko_KR.po b/source/kk/dictionaries/ko_KR.po
index 21b95f5743b..e7aeeda20cd 100644
--- a/source/kk/dictionaries/ko_KR.po
+++ b/source/kk/dictionaries/ko_KR.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-11-25 12:36+0000\n"
+"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
+"Language-Team: Kazakh <https://weblate.documentfoundation.org/projects/libo_ui-master/dictionariesko_kr/kk/>\n"
+"Language: kk\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.1.1\n"
#. DbXEb
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Korean spellcheck dictionary"
-msgstr ""
+msgstr "Корей емле сөздігі"
diff --git a/source/kk/officecfg/registry/data/org/openoffice/Office.po b/source/kk/officecfg/registry/data/org/openoffice/Office.po
index ad49b7b22e5..27d94f6d7c2 100644
--- a/source/kk/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/kk/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-23 11:48+0000\n"
+"PO-Revision-Date: 2020-12-08 06:36+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/kk/>\n"
"Language: kk\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1543159996.000000\n"
#. HhMVS
@@ -1744,7 +1744,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Restart"
-msgstr ""
+msgstr "Қайта қосу"
#. zYCFa
#: PresenterScreen.xcu
@@ -1754,7 +1754,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Exchange"
-msgstr ""
+msgstr "Айырбастау"
#. hAAEf
#: PresenterScreen.xcu
@@ -1764,7 +1764,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Help"
-msgstr ""
+msgstr "Көмек"
#. AqwYo
#: PresenterScreen.xcu
diff --git a/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
index 5b561082435..4832c126d0d 100644
--- a/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-08-19 14:35+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/kk/>\n"
@@ -8026,15 +8026,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "Слайдты жас~ыру"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Мә~тін..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25508,25 +25508,25 @@ msgctxt ""
msgid "~File"
msgstr "~Файл"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~Туралау"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "~Туралау"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31098,15 +31098,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Абзац соңына дейін таңдау"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Оң жақтағы сөзге дейін таңдау"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/kk/sc/messages.po b/source/kk/sc/messages.po
index bd24f16f1ca..e455c946270 100644
--- a/source/kk/sc/messages.po
+++ b/source/kk/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/kk/>\n"
@@ -24588,213 +24588,213 @@ msgid "~File"
msgstr "~Файл"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Ерекшеленген ұяшықтар үшін шекараны таңдаңыз."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Шегіністі үлкейту"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Шегіністі азайту"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Ү_йге"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Ү~йге"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ө_ріс"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Кірі_стіру"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Кірістіру"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Объектті туралау"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Жайма"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Жайма"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Статистика"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Деректер"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Деректер"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Те_ксеру"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Тек~серу"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Түрі"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Түрі"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Сур_ет"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Сур~ет"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Су_рет салу"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Су~рет салу"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Түрлендіру"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Объект"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Объект"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Мультимедиа"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Мультимедиа"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Бас_паға шығару"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Бас~паға шығару"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Фо_рма"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Фо~рма"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Кеңейту"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Кеңейту"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Са_ймандар"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Са~ймандар"
@@ -29623,338 +29623,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "Шешуші"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "О_пциялар..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "_Шешу"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "_Мақсат ұяшығы"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Нәтиже"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Ұ_яшықтарды өзгертіп"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Миним_ум"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Максимум"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "Мә_ні"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Ұяш_ыққа сілтеме"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Амал"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Мә_ні"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Ұяшыққа сілтеме"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Ұяшыққа сілтеме"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Ұяшыққа сілтеме"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Ұяшыққа сілтеме"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Бүтін"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Екілік"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Оператор"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Бүтін"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Екілік"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Оператор"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Бүтін"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Екілік"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Оператор"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Бүтін"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Екілік"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Оператор"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Мәні"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Мәні"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Мәні"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Мәні"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Өшіру"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Өшіру"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Өшіру"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Өшіру"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Шектеу шарттары"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/kk/sd/messages.po b/source/kk/sd/messages.po
index 2a9ebb0303c..7bcd2a3fb2f 100644
--- a/source/kk/sd/messages.po
+++ b/source/kk/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-10 19:34+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/kk/>\n"
@@ -3818,116 +3818,116 @@ msgstr "Кес~те"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Түрлендіру"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Сур_ет"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Сур~ет"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Су_рет салу"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Су~рет салу"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Объект"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Объект"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Мультимедиа"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Мультимедиа"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Фо_рма"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Фо~рма"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Мастер"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Мастер"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Кеңейту"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Кеңейту"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Са_ймандар"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Са~ймандар"
@@ -4331,12 +4331,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "_Мәзір"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Кеңейту"
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6568,219 +6562,219 @@ msgid "~File"
msgstr "~Файл"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Ү_йге"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Ү~йге"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ө_ріс"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Кірі_стіру"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Кірістіру"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "_Жайма"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Жайма"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Слайдшоу"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Слайдшоу"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Те_ксеру"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Тек~серу"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Түрі"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Түрі"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Кес_те"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Кес~те"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Түрлендіру"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Сур_ет"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Сур~ет"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Су_рет салу"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Су~рет салу"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Объект"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Объект"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Мультимедиа"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Мультимедиа"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Фо_рма"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Фо~рма"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Мастер"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Мастер"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Түрі"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Құр~ылымы"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Кеңейту"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Кеңейту"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Са_ймандар"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Са~ймандар"
@@ -7690,12 +7684,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Контурды түзету"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Кеңейту"
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/kk/starmath/messages.po b/source/kk/starmath/messages.po
index da47804076c..87c30e7ba7a 100644
--- a/source/kk/starmath/messages.po
+++ b/source/kk/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-24 04:35+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/kk/>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/kk/svx/messages.po b/source/kk/svx/messages.po
index a36edbbeaa1..35c40932690 100644
--- a/source/kk/svx/messages.po
+++ b/source/kk/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-14 19:36+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/kk/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Слайды ағымдағы терезеге келтіру."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "Барлық SmartArt жүктеу мүмкін емес. Microsoft Office 2010 немесе кейінірек шыққан нұсқасында сақтау бұл мәселені шешеді."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Навигация панелі"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"Құлау жөнінде есептеме сәтті жіберілді.\n"
-"Жақын арада ол келесі адрес бойынша қолжетерлік болады:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,11 +13991,11 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "Құлау жөнінде хабарламаны жі_беру"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
-msgstr "Жібер_меу"
+msgid "Do _Not Send"
+msgstr ""
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
diff --git a/source/kk/sw/messages.po b/source/kk/sw/messages.po
index 0e7245e8551..73001e3e36c 100644
--- a/source/kk/sw/messages.po
+++ b/source/kk/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: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2020-11-22 13:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
+"PO-Revision-Date: 2020-12-08 13:38+0100\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/kk/>\n"
"Language: kk\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20348,181 +20348,181 @@ msgid "~File"
msgstr "~Файл"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Ү_йге"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Ү~йге"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Кірі_стіру"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Кірістіру"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Жа_йма"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Жайма"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Сілтемелер"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "~Сілтемелер"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Те_ксеру"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Тек~серу"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Түрі"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Түрі"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Кес_те"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Кес~те"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Сур_ет"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Сур~ет"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Су_рет салу"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Су~рет салу"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Объект"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Объект"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Мультимедиа"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Медиа"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Бас_паға шығару"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Бас~паға шығару"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Фо_рма"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Фо~рма"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Кеңейту"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Кеңейту"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Са_ймандар"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Са~ймандар"
@@ -21560,12 +21560,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Контурды түзету"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr "_Кеңейту"
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/kl/cui/messages.po b/source/kl/cui/messages.po
index da19c67c044..f1ec843ba54 100644
--- a/source/kl/cui/messages.po
+++ b/source/kl/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21127,60 +21127,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
index 48cb5fc2c85..a7c53b8bdd6 100644
--- a/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8076,14 +8076,14 @@ msgctxt ""
msgid "~Hide Slide"
msgstr ""
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
+msgid "Te~xt Attributes..."
msgstr ""
#. GR6Sf
@@ -25662,24 +25662,24 @@ msgctxt ""
msgid "~File"
msgstr ""
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Alig~n Objects"
msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Align Tex~t"
msgstr ""
#. y3E2U
@@ -31292,14 +31292,14 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr ""
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
+msgid "Select to End of Word"
msgstr ""
#. bpBoC
diff --git a/source/kl/sc/messages.po b/source/kl/sc/messages.po
index 0600461b5e9..43729c1f8af 100644
--- a/source/kl/sc/messages.po
+++ b/source/kl/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24753,213 +24753,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29862,345 +29862,351 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr ""
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "ikinnerpaamik"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "annerpaaffissaq"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Nalinga"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr ""
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr ""
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr ""
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr ""
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr ""
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr ""
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr ""
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr ""
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Nalinga"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Nalinga"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Nalinga"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Nalinga"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
#, fuzzy
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "peeruk"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
#, fuzzy
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "peeruk"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
#, fuzzy
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "peeruk"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
#, fuzzy
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "peeruk"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/kl/sd/messages.po b/source/kl/sd/messages.po
index de70f4b2450..5cfa689a5ee 100644
--- a/source/kl/sd/messages.po
+++ b/source/kl/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3862,116 +3862,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4375,12 +4375,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6629,219 +6623,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7775,12 +7769,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/kl/starmath/messages.po b/source/kl/starmath/messages.po
index a7117e4e2f8..7eccb16f5f4 100644
--- a/source/kl/starmath/messages.po
+++ b/source/kl/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2192,9 +2192,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/kl/svx/messages.po b/source/kl/svx/messages.po
index f5ee0b65445..164185e3097 100644
--- a/source/kl/svx/messages.po
+++ b/source/kl/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7285,10 +7285,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14060,13 +14060,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14090,10 +14090,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/kl/sw/messages.po b/source/kl/sw/messages.po
index 25012a8aaed..64fef038034 100644
--- a/source/kl/sw/messages.po
+++ b/source/kl/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20664,181 +20664,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21888,12 +21888,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/km/cui/messages.po b/source/km/cui/messages.po
index d11bca38c44..9d85ec7dc4c 100644
--- a/source/km/cui/messages.po
+++ b/source/km/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21372,60 +21372,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/km/helpcontent2/source/text/sbasic/shared.po b/source/km/helpcontent2/source/text/sbasic/shared.po
index 3e9d8485e4b..f3342b52fc3 100644
--- a/source/km/helpcontent2/source/text/sbasic/shared.po
+++ b/source/km/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shared\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -12815,50 +12815,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "បង្កើត​ថត​ថ្មី​មួយ លើ​ឧបករណ៍​ផ្ទុក​ទិន្នន័យ​​មួយ ។"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
+msgid "Creates a new directory on a data medium."
+msgstr "បង្កើត​ថត​ថ្មី​មួយ លើ​ឧបករណ៍​ផ្ទុក​ទិន្នន័យ​​មួយ ។"
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text ៖</emph> កន្សោម​ខ្សែ​អក្សរ​ណា​មួយ ដែល​បញ្ជាក់​ឈ្មោះ និង​ផ្លូវ​នៃ​ថត​ដែល​នឹង​ត្រូវ​បង្កើត ។ អ្នក​ក៏​អាច​ប្រើ​ផងដែរ​នូវ​ <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">កំណត់ URL</link> ។"
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12869,15 +12860,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "ប្រសិន​បើ​ផ្លូវ​មិន​ត្រូវ​បាន​កំណត់ ថត​ត្រូវ​បាន​បង្កើត​ក្នុង​​ថត​បច្ចុប្បន្ន ។"
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13139,14 +13121,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "លុប​ថត​ដែល​មាន​ស្រាប់​មួយ​​ពី​ឧបករណ៍​ផ្ទុក​ទិន្នន័យ ។"
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13157,15 +13139,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13184,15 +13157,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "ប្រសិន​បើ​ផ្លូវ​មិន​ត្រូវ​បាន​កំណត់ <emph>សេចក្តី​ថ្លែង​ការណ៍ RmDir​</emph> ស្វែង​រក​ថត​ដែល​អ្នក​ចង់​លុប​ក្នុង​ផ្លូវ​បច្ចុប្បន្ន ។ ប្រសិន​បើ​វា​រក​មិន​ឃើញ​នៅ​ទី​នោះ សារ​កំហុស​មួយ​លេច​ឡើង ។"
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24605,23 +24569,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "បញ្ឈប់​ដំណើរការ​ប្រតិបត្តិ​នៃ​កម្មវិធី Basic ។"
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24857,41 +24812,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "កំណត់​វត្ថុ​មួយ​ជា​វត្ថុ​លំនាំដើម ។ លុះត្រា​តែ​ឈ្មោះ​វត្ថុ​ផ្សេង​ទៀត​ត្រូវ​បាន​ប្រកាស បើ​មិន​ដូច្នោះ​ទេ​លក្ខណសម្បត្តិ និង​វិធីសាស្ត្រ​ទាំងអស់​នឹង​យោង​ទៅ​វត្ថុ​លំនាំដើម រហូត​ទាល់​តែ​ជួប​សេចក្តី​ថ្លែង​ការណ៍ End With ។"
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "ប្រើ <emph>With</emph> និង​<emph>End With</emph> ប្រសិន​បើ​អ្នក​មាន​លក្ខណសម្បត្តិ ឬ​វិធីសាស្ត្រ​ជា​ច្រើន សម្រាប់​វត្ថុ​តែ​មួយ ។"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34100,23 +34064,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "បន្លឺ​សំឡេង​តាម​រយៈ​ធុង​បាស​របស់​កុំព្យូទ័រ ។ សំឡេង​គឺ​អាស្រ័យ​លើ​ប្រព័ន្ធ និង​អ្នក​មិន​អាច​កែប្រែ​សំឡេង​របស់​វា និង​មិន​អាច​ធ្វើ​ឲ្យ​លឺ​ខ្លាំង​ឡើង​ៗ​បាន​ទេ ។"
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/km/helpcontent2/source/text/scalc/00.po b/source/km/helpcontent2/source/text/scalc/00.po
index 8f50cb65531..cd4efea2881 100644
--- a/source/km/helpcontent2/source/text/scalc/00.po
+++ b/source/km/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -1187,13 +1187,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/km/helpcontent2/source/text/scalc/guide.po b/source/km/helpcontent2/source/text/scalc/guide.po
index 52a357acf8e..ffefa139436 100644
--- a/source/km/helpcontent2/source/text/scalc/guide.po
+++ b/source/km/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -7550,22 +7550,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "ដើម្បី​បង្កក​ទាំង​ជួរ​ដេក និង​ជួរ​ឈរ ជ្រើស ​<emph>ក្រឡា</emph> ដែល​នៅ​ខាង​ក្រោម​ជួរ​ដេក និង​នៅ​ខាង​ស្តាំ​ជួរ​ឈរ​ដែល​អ្នក​ចង់​បង្កក ។"
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7586,13 +7586,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "បើ​អ្នក​ចង់​បោះពុម្ព​ជួរ​ដេក​ជាក់លាក់​មួយ​លើ​ទំព័រ​ទាំងអស់​នៃ​ឯកសារ​មួយ ជ្រើស <emph>ទ្រង់ទ្រាយ - ជួរ​បោះពុម្ព - កែសម្រួល</emph> ។"
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/km/helpcontent2/source/text/sdraw/01.po b/source/km/helpcontent2/source/text/sdraw/01.po
index 6b4de6032c8..edf0d052aa5 100644
--- a/source/km/helpcontent2/source/text/sdraw/01.po
+++ b/source/km/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-10 03:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/km/helpcontent2/source/text/shared/01.po b/source/km/helpcontent2/source/text/shared/01.po
index a6b7ce810bd..c94fc2e5582 100644
--- a/source/km/helpcontent2/source/text/shared/01.po
+++ b/source/km/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-08-09 08:19+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -8000,13 +8000,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/km/helpcontent2/source/text/shared/guide.po b/source/km/helpcontent2/source/text/shared/guide.po
index 8122164fb81..1fc0237cb57 100644
--- a/source/km/helpcontent2/source/text/shared/guide.po
+++ b/source/km/helpcontent2/source/text/shared/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-08-09 08:19+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -98,6 +98,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">ធ្វើ​ការ​ជាមួយ <item type=\"productname\">%PRODUCTNAME</item></link>"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3527,15 +3536,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3779,24 +3779,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3806,24 +3788,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3878,24 +3842,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5165,15 +5111,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5201,15 +5138,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5219,15 +5147,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5237,15 +5156,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5255,24 +5165,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5291,24 +5183,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5318,15 +5192,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5345,15 +5210,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5390,15 +5246,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5417,15 +5264,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5435,33 +5273,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5471,15 +5282,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5498,15 +5300,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5516,33 +5309,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5570,15 +5336,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5597,15 +5354,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5615,15 +5363,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5642,15 +5381,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10718,149 +10448,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "ឧបករណ៍​របាយការណ៍​កំហុស"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>ឧបករណ៍​របាយការណ៍​កំហុស</bookmark_value> <bookmark_value>របាយការណ៍;របាយការណ៍​កំហុស</bookmark_value> <bookmark_value>របាយការណ៍​គាំង</bookmark_value> <bookmark_value>ធ្វើ​ឲ្យ​សកម្ម;ឧបករណ៍​របាយការណ៍​កំហុស</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">ឧបករណ៍​របាយការណ៍​កំហុស</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "ឧបករណ៍​របាយការណ៍​កំហុស​ចាប់ផ្ដើម​ដោយ​ស្វ័យ​ប្រវត្តិ​នៅពេល​កម្មវិធីគាំង ។"
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "ឧបករណ៍​របាយការណ៍​កំហុស​​ប្រមូល​ព័ត៌​មាន​​ចាំ​បាច់​ ដែល​អាច​ជួយ​អ្នក​អភិវឌ្ឍន៍​កម្មវិធី​​ដើម្បី​បង្កើន​កូដ​ ដូច្នេះ​ក្នុង​កំណែ​​ក្រោយ​​ កំហុស​នេះ​អាច​ត្រូវ​បាន​ជៀស​វាង​​ ។ សូម​ជួយ​យើង​ដើម្បី​បង្កើន​គុណភាព​កម្មវិធី​ និង ផ្ញើ​របាយការណ៍​កំហុស​ដែល​បាន​បង្កើត​ឡើង​ ។​"
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "ការ​ចាប់ផ្តើម​​ឧបករណ៍​របាយការណ៍​​កំហុស"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "ជា​មួយ​នឹង​កម្មវិធី​គាំង​ច្រើនបំផុត​​ ឧបករណ៍​របាយការណ៍​កំហុស​នឹង​ចាប់ផ្ដើម​ដោយ​ស្វ័យ​ប្រវត្តិ ។"
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "កំពុង​បញ្ចប់​របាយការណ៍"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "នៅលើ​ប្រអប់​ឧបករណ៍​របាយការណ៍​កំហុស​សំខាន់​ អ្នក​អាច​បញ្ចូល​ព័ត៌មាន​​​បន្ថែម​ខ្លះ ​ដែល​អ្នក​អាច​ជួយ​អ្នក​អភិវឌ្ឍន៍​របស់យើងក្នុង​ការ​​​រក​កំហុស​ ។ ឧទាហរណ៍​ ប្រសិន​បើ​កំហុស​បង្ហាញ​តែ​​បន្ទាប់​ពី​ការ​ផ្លាស់​ប្តូរ​ក្នុង​ផ្នែក​​រឹង​​​ ឬ បរិស្ថាន​កម្មវិធី​របស់​អ្នក​ ឬ ប្រសិន​​បើ​​អ្នក​ចុច​លើ​ប៊ូតុង​មួយ​ សូម​បញ្ចូល​ព័ត៌មាន​នោះ ។"
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "កំពុង​​ផ្ញើ​​របាយ​​ការណ៍​​កំហុស"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "ឧបករណ៍​រ​របាយការណ៍​កំហុស​ប្រើ​ពិធីការ​ HTTP PUT / SOAP ដើម្បី​ផ្ញើ​ទិន្នន័យ​របាយការណ៍​កំហុស​ ។ ជា​ជម្រើស​ អ្នក​អាច​បញ្ចូល​​អត្ថបទ​ពិពណ៌នា​មួយ​ចំនួន​​ដែល​នឹង​ជួយ​យើង​​ដើម្បី​បញ្ជាក់​បរិបទ​នៃការគាំងកម្មវិធី ។ បន្ទាប់​មក​ចុច​ប៊ូតុង​ <emph>ផ្ញើ</emph> ។"
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "អ្នក​នឹង​មិន​ទទួល​ចម្លើយ​ទៅ​របាយការណ៍​​​​​កំហុស​របស់អ្នក​ ។ ប្រសិន​បើ​អ្ក​ត្រូវ​ការ​ការ​​គាំទ្រ​ សូម​ទស្សនា​​​​ <link href=\"text/shared/main0108.xhp\">វេទិកា​គាំទ្រ</link> នៅ​លើ​អ៊ីនធឺណិត ។"
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "តើ​​ទិន្នន័យ​​អ្វី​​ដែល​​ត្រូវ​​បាន​​ផ្ញើ ?​"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "របាយការណ៍​កំហុស​មាន​ឯកសារ​ជាច្រើន​ ។ ឯកសារ​សំខាន់​មាន​ព័ត៌មាន​អំពី​ប្រភេទ​កំហុស ឈ្មោះ​ប្រព័ន្ធ​ប្រតិបត្តិការ​ និង កំណែ ការ​ប្រើ​អង្គ​ចងចាំ និង ការ​ពិពណ៌នា​ដែល​អ្នក​បាន​បញ្ចូល ។ អ្នក​អាច​ចុច​ប៊ូតុង​ <emph>បង្ហាញ​របាយការណ៍</emph> នៅ​លើ​ប្រអប់មេ​នៃ​ឧបករណ៍​របាយការណ៍​កំហុស​ ដើម្បី​មើល​អ្វី​នឹង​​ត្រូវ​បាន​ផ្ញើ​ក្នុ​ងឯកសារ​មេ​ ។"
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "ជា​ការ​បន្ថែម​ មាតិកា​អង្គ​ចងចាំ​ដែល​ទាក់​ទង​ និង ស្នាម​ជង់​ត្រូវ​បាន​ប្រមូល​ដោយ​ឧបករណ៍​​ស្តង់ដារ​ប្រព័ន្ធ​មួយ​ចំនួន (\"dbhhelp.dll\" លើ​ប្រព័ន្ធ​​វីនដូ, \"pstack\" នៅលើ​ប្រព័ន្ធ​​យូនីក) ។ ព័ត៌មាននេះ​នឹង​ត្រូវ​បាន​ផ្ញើ​ផងដែរ ។"
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22076,32 +21797,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "ចាំ​ថា​ត្រូវ​បង្កើត​ការ​ងារ​បោះពុម្ព​ដោយ​ឡែក​មួយ​ សម្រាប់​ទូរសារ​នីមួយៗ​ មិន​ដូច្នេះ​ទេ​​ អ្នក​​ទទួល​ដំបូង​​នឹង​ទទួល​​ទូរសារ​ទាំងអស់​ ។ ក្នុង​ប្រអប់ <emph>ឧបករណ៍ - សំបុត្រ​សំណុំ​បែបបទ</emph> ជ្រើស​ជម្រើស <emph>ម៉ាស៊ីន​បោះពុម្ព</emph> និង​បន្ទាប់​មក​ជ្រើស​ប្រអប់ធីក <emph>ការ​ងារ​បោះពុម្ព​តែ​មួយ</emph> ។"
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "ការ​ផ្លាស់​ប្តូរ​ពុម្ព​លំនាំ​ដើម​"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>កែប្រែ មើល​ការ​ផ្លាស់ប្ដូរ</bookmark_value><bookmark_value>ផ្លាស់ប្ដូរ សូម​មើល​ការ​កែ​សម្រួល និង​ជំនួស</bookmark_value><bookmark_value>ពុម្ព​លំនាំ​ដើម; ផ្លាស់ប្ដូរ</bookmark_value><bookmark_value>លំនាំ​ដើម;ឯកសារ</bookmark_value><bookmark_value>ពុម្ព​លំនាំ​ដើម</bookmark_value><bookmark_value>ធ្វើ​បច្ចុប្បន្នភាព; ពុម្ព</bookmark_value><bookmark_value>កែ​សម្រួល;ពុម្ព</bookmark_value><bookmark_value>ពុម្ព;កែ​សម្រួល និង​រក្សា​ទុក</bookmark_value><bookmark_value>រក្សា​ទុក;ពុម្ព</bookmark_value><bookmark_value>កំណត់​ឡើង​វិញ;ពុម្ព</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">ការ​ផ្លាស់​ប្តូរ​ពុម្ព​លំនាំ​ដើម</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22112,113 +21833,239 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "ពេល​​​អ្នក​បើក​ឯកសារ​ថ្មី​ជាមួយ​ <emph>ឯកសារ - ថ្មី</emph> ឯកសារទទេ​បង្ហាញ​ពុម្ពដែល​មាន​មូលដ្ឋានលើ $[officename] ។ អ្នក​អាច​កែសម្រួល​ កែប្រែ​ ឬ ជំនួស​ពុម្ពនេះ​ ដូច្នេះ​ឯកសារ​ថ្មី​ផ្ទុក​រចនាប័ទ្ម​ប្តូរ​តាមបំណង​របស់អ្នក​ ឬ មាតិកាផ្សេង ។"
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "ការ​កែ​ប្រែ​ពុម្ព​លំនាំ​ដើម"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "ដំបូង​ បើក​ទាំង​ពុម្ព​របស់ $[officename] ដែល​មាន​ស្រាប់​ និង កែប្រែ​វា​ ឬ បើក​ឯកសារ​ថ្មី​​​ថ្មី​មួយ​​ និង កែសម្រួល​វា​​ប្រសិន​បើ​ចាំបាច់​ត្រូវ​បង្កើត​ពុម្ព​ដែល​ចង់​បាន ។"
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "អ្នក​អាច​កំណត់​ពុម្ពឯកសារ​សម្រាប់​ម៉ូឌុល​ $[officename] នីមួយៗ ។ ការពិពណ៌នា​ដូច​ខាង​ក្រោម​នេះ​គឺ​ជា​វិធី​ដំណើរការ​ឯកសារ​អត្ថបទ​ ។"
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "The next time you open a new text document, the new document will be based on this new default template."
msgstr ""
-#. EKAzu
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
+"help.text"
+msgid "Modifying a Default Template"
+msgstr ""
+
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "ជ្រើស <emph>ឯកសារ - ថ្មី - ពុម្ព</emph> ។"
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
+msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
-msgstr "ជ្រើស <emph>កំណត់​ជា​លំនាំដើម</emph>។ ពេល​អ្នក​បើក​ឯកសារ​អត្ថបទ​ថ្មី​លើក​ក្រោយ ឯកសារ​ថ្មី​នឹង​មាន​មូលដ្ឋាន​នៅ​លើ​ពុម្ព​លំនាំដើម​ថ្មី។"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. GuEWL
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "ការ​ប្រើ​ពុម្ព​​ផ្ទាល់​ខ្លួន"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
+
+#. DuAAp
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id251605475503009\n"
+"help.text"
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
+
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
-#. Quf5G
+#. 3w93A
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id51605476162735\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "មាន​វិធី​​ជាច្រើន​ដើម្បី​ធ្វើ​ឲ្យ​ការងារ​របស់អ្នក​កាន់​តែ​ងាយ​ស្រួល​​ ដោយ​ប្រើ​ពុម្ព​ផ្ទាល់ខ្លួន​របស់​អ្នក​ ។"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
-#. S8XFP
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "ពុម្ព​ក្នុង​ថត​ពុម្ព"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "ដើម្បី​បើក​ពុម្ព​សម្រាប់​កែសម្រួល ត្រូវ​ចូល <emph>ឯកសារ - ថ្មី - ពុម្ព</emph>, ជ្រើស​ពុម្ព រួច​ចុច​ប៊ូតុង <emph>កែសម្រួល</emph>។"
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
+msgstr ""
#. 6YAP3
#: standard_template.xhp
@@ -24254,13 +24101,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/km/helpcontent2/source/text/shared/optionen.po b/source/km/helpcontent2/source/text/shared/optionen.po
index bb29dcc5e70..3a39a00831d 100644
--- a/source/km/helpcontent2/source/text/shared/optionen.po
+++ b/source/km/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: optionen\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-08-09 08:20+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -3428,13 +3428,13 @@ msgctxt ""
msgid "View"
msgstr "ទិដ្ឋភាព"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3455,58 +3455,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3518,50 +3518,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "ការ​ធ្វើ​ឲ្យ​ពុម្ពអក្សរ​អេក្រង់​រឆេតរឆូត"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ចូល​ទំហំ​ពុម្ព​អក្សរ​តូច​បំផុត ដើម្បី​អនុវត្ត​ការ​ធ្វើ​ឲ្យ​រឆេតរឆូត ។</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3572,13 +3590,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3590,13 +3608,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3734,23 +3752,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "ទិន្នផល​ក្រាហ្វិក"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">ចុច​​ ប្តូរ​​(Shift)​+​បញ្ជា​(Ctrl)​+​R ដើម្បី​ស្តារ ឬ​ធ្វើ​ឲ្យ​​ទិដ្ឋ​ភាព​​​របស់​ឯកសារ​បច្ចុប្បន្ន​​​​ស្រស់​ ។</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">ចុច​​ ប្តូរ​​(Shift)​+​បញ្ជា​(Ctrl)​+​R ដើម្បី​ស្តារ ឬ​ធ្វើ​ឲ្យ​​ទិដ្ឋ​ភាព​​​របស់​ឯកសារ​បច្ចុប្បន្ន​​​​ស្រស់​ ។</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3788,67 +3806,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\".\">នៅពេលគាំទ្រ អ្នក​អាច​បើក និង​បិទ​ការ​ប្រឆាំង​ភាពរ​ឆេតរឆូត​របស់​ក្រាហ្វិក ។ ដោយ​បើក​ការ​ប្រឆាំង​ភាព​រឆេតរឆូត ការ​បង្ហាញ​វត្ថុ​ក្រាហ្វិក​ភាគ​ច្រើន​មើល​ទៅ​រលោង និង​មានការ​ព្រិល​តិចតួច ។</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "ម៉ឺនុយ"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3878,6 +3887,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "ការ​ធ្វើ​ឲ្យ​ពុម្ពអក្សរ​អេក្រង់​រឆេតរឆូត"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">បញ្ចូល​ទំហំ​ពុម្ព​អក្សរ​តូច​បំផុត ដើម្បី​អនុវត្ត​ការ​ធ្វើ​ឲ្យ​រឆេតរឆូត ។</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/swriter/guide.po b/source/km/helpcontent2/source/text/swriter/guide.po
index a60cd70f72b..1b3f6cfabd8 100644
--- a/source/km/helpcontent2/source/text/swriter/guide.po
+++ b/source/km/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -12518,13 +12518,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12563,13 +12563,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12590,58 +12590,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12671,13 +12653,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16910,14 +16892,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "លុះត្រា​តែអ្នក​បញ្ជាក់​ផ្សេងពីនេះ រាល់​ឯកសារអត្ថបទ $[officename] ថ្មីៗ​គឺ​អាស្រ័យទៅលើ​ពុម្ព​លំនាំដើម ។"
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] មាន <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">ពុម្ព​ដែល​បាន​កំណត់​ជា​មុន</link> ជាច្រើន ដែល​អ្នក​អាច​ប្រើ​ដើម្បី​បង្កើត​ឯកសារ​អត្ថបទ​ប្រភេទ​ផ្សេង​ៗ​គ្នា ដូចជា​សំបុត្រ​ពាណិជ្ជកម្ម ។"
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17270,14 +17252,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr ""
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "នៅ​លើ​របារ <item type=\"menuitem\">ឧបករណ៍</item> ចុច​រូបតំណាង <item type=\"menuitem\">ទស្សន៍​ទ្រនិច​ផ្ទាល់</item> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">រូបតំណាង</alt></image> ។"
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17288,32 +17270,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "ចុច​ក្នុង​ចន្លោះ​ទំនេរ​ក្នុង​ឯកសារ​អត្ថបទ ។ ព្រួញ​​កណ្តុរ​ផ្លាស់ប្តូរ​ដើម្បី​បញ្ជាក់​ពី​ការ​តម្រឹម ដែល​នឹង​ត្រូវ​អនុវត្ត​ទៅ​អត្ថបទ​ដែល​អ្នក​វាយ​បញ្ចូល ។"
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">រូបតំណាង</alt></image> តម្រឹម​ឆ្វេង"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">រូបតំណាង</alt></image> កណ្ដាល"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">រូបតំណាង</alt></image> តម្រឹម​ស្ដាំ"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
index d7df11a8f36..4dd622c4f57 100644
--- a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -8116,15 +8116,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "លាក់​ស្លាយ "
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "អត្ថបទ... "
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25800,27 +25800,25 @@ msgctxt ""
msgid "~File"
msgstr "ឯកសារ "
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "តម្រឹម"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "តម្រឹម"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31484,15 +31482,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "ជ្រើស​ទៅ​ចុង​កថាខណ្ឌ"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "ជ្រើស​ទៅ​ស្តាំ​​ពាក្យ"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/km/sc/messages.po b/source/km/sc/messages.po
index f9a4d408287..16808182299 100644
--- a/source/km/sc/messages.po
+++ b/source/km/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25104,213 +25104,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30284,343 +30284,349 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "កញ្ចប់​ដោះស្រាយ"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "ជម្រើស... "
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "ដោះស្រាយ"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "ក្រឡា​ទិសដៅ"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "បង្កើន​ប្រសិទ្ធិភាព​លទ្ធផល​ទៅ"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "ដោយ​ប្ដូរ​ក្រឡា"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "អប្បបរមា"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "អតិបរមា "
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "តម្លៃ​នៃ"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "សេចក្ដី​យោង​ក្រឡា"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "សញ្ញា​​​ប្រមាណវិធី"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "តម្លៃ"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "សេចក្ដី​យោង​ក្រឡា"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "សេចក្ដី​យោង​ក្រឡា"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "សេចក្ដី​យោង​ក្រឡា"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "សេចក្ដី​យោង​ក្រឡា"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "ចំនួនគត់"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "គោល​ពីរ"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "សញ្ញា​​​ប្រមាណវិធី"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "ចំនួនគត់"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "គោល​ពីរ"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "សញ្ញា​​​ប្រមាណវិធី"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "ចំនួនគត់"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "គោល​ពីរ"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "សញ្ញា​​​ប្រមាណវិធី"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "ចំនួនគត់"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "គោល​ពីរ"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "សញ្ញា​​​ប្រមាណវិធី"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "តម្លៃ"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "តម្លៃ"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "តម្លៃ"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "តម្លៃ"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "យក​ចេញ"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "យក​ចេញ"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "យក​ចេញ"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "យក​ចេញ"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "លក្ខខណ្ឌ​កំណត់"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/km/sd/messages.po b/source/km/sd/messages.po
index 0fd9f4a96b6..8f12fc979d7 100644
--- a/source/km/sd/messages.po
+++ b/source/km/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3870,116 +3870,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4383,12 +4383,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6699,219 +6693,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7864,12 +7858,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "វណ្ឌវង្ក​អត្ថបទ"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/km/starmath/messages.po b/source/km/starmath/messages.po
index 8d930f17ece..8846071c5c6 100644
--- a/source/km/starmath/messages.po
+++ b/source/km/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2191,9 +2191,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/km/svx/messages.po b/source/km/svx/messages.po
index 5e743773e11..74b65ddf0c7 100644
--- a/source/km/svx/messages.po
+++ b/source/km/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Central Khmer <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/km/>\n"
@@ -7289,10 +7289,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "ស្លាយ​ត្រូវ​ហ្នឹង​វីនដូ​បច្ចុប្បន្ន។"
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14167,13 +14167,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "របារ​រុករក"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14197,10 +14197,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/km/sw/messages.po b/source/km/sw/messages.po
index 6f2dab33eaf..ac0198f955b 100644
--- a/source/km/sw/messages.po
+++ b/source/km/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-20 17:21+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20802,181 +20802,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22028,12 +22028,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "វណ្ឌវង្ក​អត្ថបទ"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/kmr-Latn/cui/messages.po b/source/kmr-Latn/cui/messages.po
index e2bc981a7e1..38e2fcc1bc3 100644
--- a/source/kmr-Latn/cui/messages.po
+++ b/source/kmr-Latn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Kurmanji <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/kmr_LATN/>\n"
@@ -21570,60 +21570,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
index 3e911c28de1..2614a108489 100644
--- a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8143,15 +8143,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "~Slaytê Veşêre"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "~Nivîs..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25846,27 +25846,25 @@ msgctxt ""
msgid "~File"
msgstr "~Pel"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Beralîkirin"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "Beralîkirin"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31549,15 +31547,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "Heta Dawiya Paragrafê Hilbijêre"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "Heta Peyva Li Hêla Rast Hilbijêre"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/kmr-Latn/sc/messages.po b/source/kmr-Latn/sc/messages.po
index 4affee08fd0..ea6b0d31dc3 100644
--- a/source/kmr-Latn/sc/messages.po
+++ b/source/kmr-Latn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25066,213 +25066,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30291,350 +30291,356 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Vebijêrk..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "~Hindiktirîn"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "~Herî Zêde"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Nirx"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Hejmara tam "
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Dumendî"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "O~perator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Hejmara tam "
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Dumendî"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "O~perator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Hejmara tam "
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Dumendî"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "O~perator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Hejmara tam "
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Dumendî"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "O~perator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Nirx"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Nirx"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Nirx"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Nirx"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Rake"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Rake"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Rake"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Rake"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/kmr-Latn/sd/messages.po b/source/kmr-Latn/sd/messages.po
index 43b67644bf2..04fa6dfc842 100644
--- a/source/kmr-Latn/sd/messages.po
+++ b/source/kmr-Latn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3899,116 +3899,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4412,12 +4412,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6744,219 +6738,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7921,12 +7915,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Kontura Nivîsê"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/kmr-Latn/starmath/messages.po b/source/kmr-Latn/starmath/messages.po
index 38c3d3c85df..2a3749c2d61 100644
--- a/source/kmr-Latn/starmath/messages.po
+++ b/source/kmr-Latn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2207,9 +2207,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/kmr-Latn/svx/messages.po b/source/kmr-Latn/svx/messages.po
index 937d60f5ded..f9f0095f2ba 100644
--- a/source/kmr-Latn/svx/messages.po
+++ b/source/kmr-Latn/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Kurmanji <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/kmr_LATN/>\n"
@@ -7378,10 +7378,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14245,13 +14245,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Darika Navîgasiyonê"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14275,10 +14275,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/kmr-Latn/sw/messages.po b/source/kmr-Latn/sw/messages.po
index 762a6ae1f54..4ea1b3e886f 100644
--- a/source/kmr-Latn/sw/messages.po
+++ b/source/kmr-Latn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -21054,181 +21054,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22287,12 +22287,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Kontura Nivîsê"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/kn/cui/messages.po b/source/kn/cui/messages.po
index 541a23b39e1..8af3becdf09 100644
--- a/source/kn/cui/messages.po
+++ b/source/kn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-09 15:34+0000\n"
"Last-Translator: yogiks <yogesh@itforchange.net>\n"
"Language-Team: Kannada <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/kn/>\n"
@@ -21321,60 +21321,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
index 04de5c8c2d3..168dac20b29 100644
--- a/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -8130,15 +8130,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "ಜಾರುಫಲಕವನ್ನು ಅಡಗಿಸು (~H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "ಪಠ್ಯ (~x)..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25821,27 +25821,25 @@ msgctxt ""
msgid "~File"
msgstr "ಕಡತ (~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ಹೊಂದಿಸು"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "ಹೊಂದಿಸು"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31511,15 +31509,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "ಪ್ಯಾರಾಗ್ರಾಫಿನ ಕೊನೆಯವರೆಗೆ ಆಯ್ಕೆಮಾಡು"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "ಪದದ ಬಲಕ್ಕೆ ಆಯ್ಕೆಮಾಡು"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/kn/sc/messages.po b/source/kn/sc/messages.po
index 12628da3b88..de84608af83 100644
--- a/source/kn/sc/messages.po
+++ b/source/kn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-06-06 01:50+0000\n"
"Last-Translator: Omshivaprakash <omshivaprakash@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25259,213 +25259,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30442,347 +30442,353 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "ಪರಿಹರಿಸುವವ"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "ಆಯ್ಕೆಗಳು (_p)..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "ಪರಿಹರಿಸು (_S)"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "ಗುರಿಯ ಕೋಶ (_T)"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "ಫಲಿತಾಂಶವನ್ನು ಇದಕ್ಕೆ ಹೊಂದಿಸು"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "ಕೋಶಗಳನ್ನು ಬದಲಾಯಿಸುವ ಮೂಲಕ (_B)"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "ಕನಿಷ್ಟ (_u)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "ಗರಿಷ್ಟ (_M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "ಇದರ ಮೌಲ್ಯ (_V)"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "ಕೋಶ ಉಲ್ಲೇಖ (_C)"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "ನಿರ್ವಾಹಕ (_O)"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "ಮೌಲ್ಯ (_a)"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "ಕೋಶ ಉಲ್ಲೇಖ (_C)"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "ಕೋಶ ಉಲ್ಲೇಖ (_C)"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "ಕೋಶ ಉಲ್ಲೇಖ (_C)"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "ಕೋಶ ಉಲ್ಲೇಖ (_C)"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "ಪೂರ್ಣಾಂಕ"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "ಬೈನರಿ"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "ಕಾರ್ಯಾಚರಣೆ"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "ಪೂರ್ಣಾಂಕ"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "ಬೈನರಿ"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "ಕಾರ್ಯಾಚರಣೆ"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "ಪೂರ್ಣಾಂಕ"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "ಬೈನರಿ"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "ಕಾರ್ಯಾಚರಣೆ"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "ಪೂರ್ಣಾಂಕ"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "ಬೈನರಿ"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "ಕಾರ್ಯಾಚರಣೆ"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "ಮೌಲ್ಯ"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "ಮೌಲ್ಯ"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "ಮೌಲ್ಯ"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "ಮೌಲ್ಯ"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "ತೆಗೆದುಹಾಕು"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "ತೆಗೆದುಹಾಕು"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "ತೆಗೆದುಹಾಕು"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "ತೆಗೆದುಹಾಕು"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "ಮಿತಿಯ ಷರತ್ತುಗಳು"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/kn/sd/messages.po b/source/kn/sd/messages.po
index e7297ac33d5..bb2262e8138 100644
--- a/source/kn/sd/messages.po
+++ b/source/kn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-06-06 09:09+0000\n"
"Last-Translator: Omshivaprakash <omshivaprakash@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3872,116 +3872,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4385,12 +4385,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6700,219 +6694,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7877,12 +7871,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ಪಠ್ಯ ಬಾಹ್ಯಾಕಾರ"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/kn/starmath/messages.po b/source/kn/starmath/messages.po
index 530f0c58202..b785de92a8b 100644
--- a/source/kn/starmath/messages.po
+++ b/source/kn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2191,9 +2191,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/kn/svx/messages.po b/source/kn/svx/messages.po
index 7df0bcc7f04..7ebe77595dc 100644
--- a/source/kn/svx/messages.po
+++ b/source/kn/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Kannada <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/kn/>\n"
@@ -7305,10 +7305,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "ಪ್ರಸಕ್ತ ಕಿಟಕಿಗೆ ಜಾರುಫಲಕವನ್ನು ಸರಿಹೊಂದಿಸು."
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14180,13 +14180,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "ನ್ಯಾವಿಗೇಶನ್ ಪಟ್ಟಿಕೆ"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14210,10 +14210,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/kn/sw/messages.po b/source/kn/sw/messages.po
index d57f74e613a..04903c5ff36 100644
--- a/source/kn/sw/messages.po
+++ b/source/kn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-06-06 16:00+0000\n"
"Last-Translator: Omshivaprakash <omshivaprakash@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20957,181 +20957,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22188,12 +22188,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "ಪಠ್ಯ ಬಾಹ್ಯಾಕಾರ"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/ko/cui/messages.po b/source/ko/cui/messages.po
index 0fe75435ae2..9f6f0755c4c 100644
--- a/source/ko/cui/messages.po
+++ b/source/ko/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-13 05:25+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: Korean <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/ko/>\n"
@@ -20899,60 +20899,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ko/helpcontent2/source/text/sbasic/shared.po b/source/ko/helpcontent2/source/text/sbasic/shared.po
index c13eca0f813..37a82888738 100644
--- a/source/ko/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ko/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-11-14 15:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Korean <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/ko/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1552576346.000000\n"
#. yzYVt
@@ -12814,50 +12814,41 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "데이터 매체에서 새 디렉토리를 만듭니다."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
-msgstr "구문:"
+msgid "Creates a new directory on a data medium."
+msgstr "데이터 매체에서 새 디렉토리를 만듭니다."
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
-msgstr "매개 변수:"
+msgid "MkDir path"
+msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "<emph>Text:</emph> 만들려는 디렉토리의 이름과 경로를 지정하는 임의의 문자열 식입니다. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL 표기법\">URL 표기법</link>을 사용할 수도 있습니다."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
#. PLopZ
#: 03020411.xhp
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr "경로가 없을 경우 지정한 디렉토리가 현재 디렉토리에 만들어집니다."
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr "예:"
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,14 +13120,14 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr "데이터 매체에서 기존 디렉토리를 삭제합니다."
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "구문:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
#. uE7FC
#: 03020413.xhp
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "매개 변수:"
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr "경로가 없을 경우 <emph>RmDir 문</emph>은 삭제할 디렉토리를 현재 경로에서 검색합니다. 현재 경로에서 찾지 못할 경우 오류 메시지가 표시됩니다."
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr "예:"
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,23 +24568,14 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr "Basic 프로그램의 실행을 중지합니다."
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr "구문:"
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "예:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
#. BsgsP
#: 03090409.xhp
@@ -24856,41 +24811,50 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "특정 개체를 기본 개체로 설정합니다. 다른 개체 이름을 선언하지 않을 경우 모든 속성과 메소드는 End With 문에 도달할 때까지 기본 개체를 참조합니다."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
+msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
-msgstr "구문:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
-msgstr "매개 변수:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "단일 개체에 대한 여러 속성 또는 메소드가 있는 경우 <emph>With</emph>와 <emph>End With</emph>를 사용합니다."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
#. zLuzY
#: 03090412.xhp
@@ -34099,23 +34063,14 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "컴퓨터 스피커를 통해 톤을 재생합니다. 톤은 시스템에 의해 결정되며 사용자는 볼륨이나 음조를 조정할 수 없습니다."
-#. ACDCD
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr "구문:"
-
-#. 9DA89
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "예:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
#. 9FABw
#: 03130500.xhp
diff --git a/source/ko/helpcontent2/source/text/scalc/00.po b/source/ko/helpcontent2/source/text/scalc/00.po
index dc31f064187..0f2f0e49587 100644
--- a/source/ko/helpcontent2/source/text/scalc/00.po
+++ b/source/ko/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-08-09 08:05+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/ko/helpcontent2/source/text/scalc/guide.po b/source/ko/helpcontent2/source/text/scalc/guide.po
index e5a7806c0ab..86e56e20577 100644
--- a/source/ko/helpcontent2/source/text/scalc/guide.po
+++ b/source/ko/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-07-14 18:34+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Korean <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/ko/>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr "가로와 세로로 모두 고정하려면 고정할 행 아래쪽과 열 오른쪽에 있는 <emph>셀</emph>을 선택합니다."
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "문서의 모든 쪽에서 일정 행을 인쇄하려면 명령어 <emph>서식 - 인쇄 범위 - 편집</emph>을 선택합니다."
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/ko/helpcontent2/source/text/sdraw/01.po b/source/ko/helpcontent2/source/text/sdraw/01.po
index 6a4ce1960f7..1377beea4b1 100644
--- a/source/ko/helpcontent2/source/text/sdraw/01.po
+++ b/source/ko/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-09-08 16:28+0000\n"
"Last-Translator: 임재훈 <lim10260@nate.com>\n"
"Language-Team: Korean <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/ko/>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/ko/helpcontent2/source/text/shared/01.po b/source/ko/helpcontent2/source/text/shared/01.po
index 77663bbb80a..725c31bf10d 100644
--- a/source/ko/helpcontent2/source/text/shared/01.po
+++ b/source/ko/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-08-09 08:12+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,13 +7999,13 @@ msgctxt ""
msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)."
msgstr ""
-#. BAX3j
+#. DkhRN
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "For certain symbol fonts the Unicode code for special characters may depend on the font in use. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>."
+msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing <menuitem>Insert - Special Character</menuitem>, or using <link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Unicode conversion shortcut</link>."
msgstr ""
#. 6Swuu
diff --git a/source/ko/helpcontent2/source/text/shared/guide.po b/source/ko/helpcontent2/source/text/shared/guide.po
index c975f1ca8b8..2cba59bce71 100644
--- a/source/ko/helpcontent2/source/text/shared/guide.po
+++ b/source/ko/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-07-28 14:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Korean <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/ko/>\n"
@@ -97,6 +97,15 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"%PRODUCTNAME 사용\"><item type=\"productname\">%PRODUCTNAME</item></link> 사용"
+#. tm4Rb
+#: aaa_start.xhp
+msgctxt ""
+"aaa_start.xhp\n"
+"par_id401607339239056\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgstr ""
+
#. AJDDG
#: aaa_start.xhp
msgctxt ""
@@ -3526,15 +3535,6 @@ msgctxt ""
msgid "FictionBook 2.0"
msgstr ""
-#. a2BeB
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer18\n"
-"help.text"
-msgid "HTML Document"
-msgstr ""
-
#. eJaKc
#: convertfilters.xhp
msgctxt ""
@@ -3778,24 +3778,6 @@ msgctxt ""
msgid "OpenDocument Text (Flat XML)"
msgstr ""
-#. AFP73
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer90\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#. i9gxr
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer93\n"
-"help.text"
-msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
#. AFtGG
#: convertfilters.xhp
msgctxt ""
@@ -3805,24 +3787,6 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#. hVyTF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer99\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
-#. 9Uskx
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer102\n"
-"help.text"
-msgid "PDF - Portable Document Format"
-msgstr ""
-
#. DnGzw
#: convertfilters.xhp
msgctxt ""
@@ -3877,24 +3841,6 @@ msgctxt ""
msgid "T602 Document"
msgstr ""
-#. FZCBs
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer123\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. 2CRnm
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer126\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
#. iEVLD
#: convertfilters.xhp
msgctxt ""
@@ -5164,15 +5110,6 @@ msgctxt ""
msgid "Filters for GRAPHICFILTER"
msgstr ""
-#. xAas8
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter0\n"
-"help.text"
-msgid "BMP - Windows Bitmap"
-msgstr ""
-
#. EiDUC
#: convertfilters.xhp
msgctxt ""
@@ -5200,15 +5137,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. jmQnj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter12\n"
-"help.text"
-msgid "EMF - Enhanced Meta File"
-msgstr ""
-
#. eFxEV
#: convertfilters.xhp
msgctxt ""
@@ -5218,15 +5146,6 @@ msgctxt ""
msgid "EMF - Enhanced Meta File"
msgstr ""
-#. YVkft
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter18\n"
-"help.text"
-msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
#. JSNTB
#: convertfilters.xhp
msgctxt ""
@@ -5236,15 +5155,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. gSAMG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter24\n"
-"help.text"
-msgid "GIF - Graphics Interchange"
-msgstr ""
-
#. w6BBX
#: convertfilters.xhp
msgctxt ""
@@ -5254,24 +5164,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange"
msgstr ""
-#. Ph2E4
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter30\n"
-"help.text"
-msgid "HTML"
-msgstr ""
-
-#. NszLR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter31\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
#. JvkqL
#: convertfilters.xhp
msgctxt ""
@@ -5290,24 +5182,6 @@ msgctxt ""
msgid "text/html"
msgstr ""
-#. uN8sR
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter36\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#. WE2VV
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter39\n"
-"help.text"
-msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
#. Fh5BC
#: convertfilters.xhp
msgctxt ""
@@ -5317,15 +5191,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. LdLjG
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter45\n"
-"help.text"
-msgid "MET - OS/2 Metafile"
-msgstr ""
-
#. NEptD
#: convertfilters.xhp
msgctxt ""
@@ -5344,15 +5209,6 @@ msgctxt ""
msgid "MOV - QuickTime File Format"
msgstr ""
-#. oAAov
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter60\n"
-"help.text"
-msgid "PBM - Portable Bitmap"
-msgstr ""
-
#. fQHzg
#: convertfilters.xhp
msgctxt ""
@@ -5389,15 +5245,6 @@ msgctxt ""
msgid "PCD - Photo CD Base4"
msgstr ""
-#. rqoXd
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter75\n"
-"help.text"
-msgid "PCT - Mac Pict"
-msgstr ""
-
#. Zqehv
#: convertfilters.xhp
msgctxt ""
@@ -5416,15 +5263,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. Rp55P
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter84\n"
-"help.text"
-msgid "PGM - Portable Graymap"
-msgstr ""
-
#. NT7TF
#: convertfilters.xhp
msgctxt ""
@@ -5434,33 +5272,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. mt2GN
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter90\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. BUCMH
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter93\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#. SDGLA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter96\n"
-"help.text"
-msgid "PNG - Portable Network Graphic"
-msgstr ""
-
#. x2LKK
#: convertfilters.xhp
msgctxt ""
@@ -5470,15 +5281,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. QcNgF
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter102\n"
-"help.text"
-msgid "PPM - Portable Pixelmap"
-msgstr ""
-
#. fZVeB
#: convertfilters.xhp
msgctxt ""
@@ -5497,15 +5299,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. drDqU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter111\n"
-"help.text"
-msgid "RAS - Sun Raster Image"
-msgstr ""
-
#. hrWWf
#: convertfilters.xhp
msgctxt ""
@@ -5515,33 +5308,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. TpDxX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter117\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. WGwE3
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter120\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#. PHgzA
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter123\n"
-"help.text"
-msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
#. qYc2F
#: convertfilters.xhp
msgctxt ""
@@ -5569,15 +5335,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics Draw"
msgstr ""
-#. Cr5YX
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter135\n"
-"help.text"
-msgid "SVM - StarView Meta File"
-msgstr ""
-
#. XTmCR
#: convertfilters.xhp
msgctxt ""
@@ -5596,15 +5353,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. Y3vUb
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter144\n"
-"help.text"
-msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
#. rfutE
#: convertfilters.xhp
msgctxt ""
@@ -5614,15 +5362,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. odiSU
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter150\n"
-"help.text"
-msgid "WMF - Windows Metafile"
-msgstr ""
-
#. pvk6j
#: convertfilters.xhp
msgctxt ""
@@ -5641,15 +5380,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. XZJGj
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter159\n"
-"help.text"
-msgid "XPM - X PixMap"
-msgstr ""
-
#. 4Norn
#: convertfilters.xhp
msgctxt ""
@@ -10717,149 +10447,140 @@ msgctxt ""
msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
msgstr ""
-#. J84BK
+#. MK28A
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"tit\n"
"help.text"
-msgid "Error Report Tool"
-msgstr "오류 보고 툴"
+msgid "Crash Report Tool"
+msgstr ""
-#. kHnFB
+#. uvF7J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
-msgstr "<bookmark_value>오류 보고 툴</bookmark_value> <bookmark_value>보고서;오류 보고서</bookmark_value> <bookmark_value>크래시 보고서</bookmark_value> <bookmark_value>활성화;오류 보고 툴</bookmark_value>"
+msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
+msgstr ""
-#. SF4pA
+#. sNc7D
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
-msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"오류 보고 툴\">오류 보고 툴</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgstr ""
-#. k3CCD
+#. ECi7s
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "The Error Report Tool starts automatically when a program crash occurs."
-msgstr "프로그램 충돌이 발생하면 오류 보고 툴이 자동으로 시작됩니다."
+msgid "The Crash Report Tool starts automatically after a program crash occurs."
+msgstr ""
-#. HahHw
+#. MGnxx
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
-msgstr "오류 보고 툴은 프로그램 개발자가 코드를 개선하여 이후 버전에서 이 오류를 방지하는 데 도움이 될 모든 필수 정보를 수집합니다. 소프트웨어를 향상시키는 데 도움이 될 수 있도록 생성된 오류 보고서를 보내주십시오."
+msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report."
+msgstr ""
-#. dtDXb
+#. aWFas
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Starting the Error Report Tool"
-msgstr "오류 보고 툴 시작"
+msgid "Starting the Crash Report Tool"
+msgstr ""
-#. WYAoo
+#. nTAZD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "With most program crashes the Error Report Tool will start automatically."
-msgstr "프로그램 충돌이 있으면 대부분의 경우 오류 보고 툴이 자동으로 시작됩니다."
-
-#. d4BEq
-#: error_report.xhp
-msgctxt ""
-"error_report.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Completing the Report"
-msgstr "보고서 완료"
+msgid "With most program crashes the Crash Report Tool will start automatically."
+msgstr ""
-#. vq6k8
+#. ioZKn
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3147335\n"
+"hd_id3159399\n"
"help.text"
-msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
-msgstr "주 오류 보고 툴 대화 상자에서 개발자가 오류를 지역화하는 데 도움이 되는 몇 가지 추가 정보를 입력할 수 있습니다. 예를 들어, 하드웨어나 소프트웨어 환경을 변경한 다음이나 버튼을 누른 때만 오류가 발생하는 경우 해당 정보를 입력합니다."
+msgid "Sending the Crash Report"
+msgstr ""
-#. wuqDi
+#. QZiPi
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3159399\n"
+"par_id711605615413339\n"
"help.text"
-msgid "Sending the Error Report"
-msgstr "오류 보고서 보내기"
+msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the <widget>Send Crash Report</widget> button."
+msgstr ""
-#. B3TEP
+#. SPdCD
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3150504\n"
+"par_id521605621252890\n"
"help.text"
-msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
-msgstr "오류 보고 툴은 HTTP PUT/SOAP 프로토콜을 사용하여 보고서 데이터를 보냅니다. 사용자는 프로그램 크래시 상황을 파악하는 데 도움이 될 설명을 입력할 수 있습니다. 그런 다음 <emph>보내기</emph> 버튼을 클릭합니다."
+msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser."
+msgstr ""
-#. sG9KF
+#. 3PFBB
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
-msgstr "오류 보고에 대한 답변은 따로 보내드리지 않습니다. 지원이 필요한 경우 인터넷에서 <link href=\"text/shared/main0108.xhp\">지원 포럼</link>을 방문하십시오."
+msgid "You will not get an answer to your crash report. If you need support, please visit <link href=\"https://www.libreoffice.org/get-help/community-support/\">Community Assistance</link> for an overview of different possibilities."
+msgstr ""
-#. yhvCf
+#. jaz2y
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3153526\n"
+"hd_id3150792\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgid "What Data are Sent?"
msgstr ""
-#. C7FWC
+#. CHASG
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"hd_id3150792\n"
+"par_id3154366\n"
"help.text"
-msgid "What Data is Sent?"
-msgstr "전송되는 데이터의 내용"
+msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: <literal>dbghelp.dll</literal> on Windows systems; <literal>clone()</literal>, <literal>ptrace()</literal> and <literal>/proc</literal> directory on Linux systems; Apple's Crash Reporter on Mac systems."
+msgstr ""
-#. UESEX
+#. yu8Rq
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3154366\n"
+"par_id731607157836334\n"
"help.text"
-msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "오류 보고서는 몇 가지 파일로 구성됩니다. 주 파일에는 오류 유형, 운영 체제 이름과 버전, 메모리 사용 및 사용자가 입력한 설명에 대한 정보가 포함되어 있습니다. 오류 보고 툴의 주 대화 상자에서 <emph>보고서 보기</emph> 버튼을 클릭하면 주 파일을 통해 전송될 내용을 확인할 수 있습니다."
+msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)."
+msgstr ""
-#. D4rnD
+#. oCk4J
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
-"par_id3151177\n"
+"par_id3150504\n"
"help.text"
-msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
-msgstr "그리고 몇 가지 시스템 표준 도구(Windows 시스템의 \"dbhhelp.dll\", UNIX 시스템의 \"pstack\")는 관련된 메모리 내용과 스택 추적 정보를 수집합니다. 이 정보도 함께 전송됩니다."
+msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request."
+msgstr ""
#. uD7Ga
#: export_ms.xhp
@@ -22075,32 +21796,32 @@ msgctxt ""
msgid "Remember to create one separate print job for each fax, otherwise, the first recipient will receive all the faxes. In the <emph>Tools - Mail Merge</emph> dialog select the <emph>Printer</emph> option and then select the <emph>Single print jobs</emph> check box."
msgstr "각 팩스에 대해 별도의 인쇄 작업을 만들어야 합니다. 그렇지 않으면 최초 수신인이 모든 팩스를 받게 됩니다. <emph>도구 - 편지 병합</emph> 대화 상자에서 <emph>프린터</emph> 옵션을 선택한 다음 <emph>단일 인쇄 작업</emph> 확인란을 선택합니다."
-#. xwDxs
+#. yEpWM
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Default Templates"
-msgstr "기본 서식 파일 변경"
+msgid "Creating and Changing Default and Custom Templates"
+msgstr ""
-#. 5rg2f
+#. CaTEi
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"bm_id3154285\n"
"help.text"
-msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
-msgstr "<bookmark_value>수정, 변경 참조</bookmark_value><bookmark_value>변경, 편집 및 바꾸기 참조</bookmark_value><bookmark_value>기본 서식 파일; 변경</bookmark_value><bookmark_value>변경;기본 서식 파일</bookmark_value><bookmark_value>기본값;문서</bookmark_value><bookmark_value>사용자 정의 서식 파일</bookmark_value><bookmark_value>업데이트; 서식 파일</bookmark_value><bookmark_value>편집;서식 파일</bookmark_value><bookmark_value>서식 파일;편집 및 저장</bookmark_value><bookmark_value>저장;서식 파일</bookmark_value><bookmark_value>재설정;서식 파일</bookmark_value>"
+msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
+msgstr ""
-#. e9Kfk
+#. fZ8SR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Changing Default Templates</link></variable>"
-msgstr "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"기본 서식 파일 변경\">기본 서식 파일 변경</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgstr ""
#. nWgSj
#: standard_template.xhp
@@ -22111,112 +21832,238 @@ msgctxt ""
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
msgstr "<emph> 파일</emph> - <emph>새로</emph> 메뉴를 통하여 새로운 문서를 열면 비어 있는 텍스트 문서나 스프레드시트 문서와 같이 $[officename] 기본 서식 파일을 근거로 하는 비어 있는 문서가 표시됩니다. 새로운 문서를 열 때 사용자 개인의 문서가 바로 보이도록 이 문서를 편집 및 수정하거나 기존의 문서로 바꿀 수 있습니다."
-#. gHw2B
+#. ESYVV
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "You can define document templates for each $[officename] module."
+msgstr ""
+
+#. T3xE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "Modifying Default Templates"
-msgstr "기본 서식 파일 수정"
+msgid "Creating a Default Template"
+msgstr ""
-#. yJoDH
+#. WaygD
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template."
-msgstr "먼저 기존 $[officename] 서식 파일을 열어서 수정하거나 새 문서를 열고 필요에 따라 편집하여 원하는 서식 파일을 만듭니다."
+msgid "<variable id=\"create_template\">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</variable>"
+msgstr ""
-#. 2pSHL
+#. bnC8i
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3159152\n"
+"par_id3145748\n"
"help.text"
-msgid "You can define a document template for each $[officename] module. The following describes how to proceed for text documents."
-msgstr "모든 $[officename] 모듈에 대하여 하나의 문서 서식 파일을 정의할 수 있습니다. 다음에는 텍스트 문서에 대한 취급 방법이 설명되어 있습니다."
+msgid "Save the document by choosing <menuitem>File - Templates - Save as Template</menuitem>, then enter the template name, click the <emph>Set as default template</emph> checkbox, and save in the <emph>My Templates</emph> category."
+msgstr ""
-#. dAATP
+#. td5TZ
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145748\n"
+"par_id3146901\n"
+"help.text"
+msgid "The next time you open a new text document, the new document will be based on this new default template."
+msgstr ""
+
+#. MEA5R
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id751605458425017\n"
"help.text"
-msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
+msgid "Modifying a Default Template"
msgstr ""
-#. EKAzu
+#. 7bPEX
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "Choose <emph>File - New - Templates</emph>."
+msgid "<variable id=\"edit_template\">Choose <menuitem>File - Templates - Manage Templates</menuitem>.</variable>"
msgstr ""
-#. RbKS3
+#. mhwYW
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3145799\n"
+"par_id531605464645795\n"
"help.text"
-msgid "Double-click <emph>My Templates</emph> in the list. You will see the user-defined templates in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved."
+msgid "Use <emph>Filter</emph> to select the type of document."
msgstr ""
-#. 9jy7r
+#. qaBUc
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3146901\n"
+"par_id981605464830645\n"
+"help.text"
+msgid "The default template is marked with a green check mark. Right-click that template and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. Us6Qr
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id211605464919603\n"
+"help.text"
+msgid "<variable id=\"save_template\">Make desired changes, choose <menuitem>File - Save</menuitem>, and close the document.</variable>"
+msgstr ""
+
+#. Mype2
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id851605464921341\n"
+"help.text"
+msgid "When you open a new document, the modified default template will be used."
+msgstr ""
+
+#. SrDht
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id131605483428241\n"
+"help.text"
+msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template."
+msgstr ""
+
+#. o4GyG
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id461605483905608\n"
"help.text"
-msgid "Choose <emph>Set as default</emph>. The next time you open a new text document, the new document will be based on the new default template."
+msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template."
msgstr ""
-#. GuEWL
+#. S3sg4
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id891605476755142\n"
+"help.text"
+msgid "Setting a Template as Default"
+msgstr ""
+
+#. YPWzX
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id501605476796634\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. AvnDi
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id711605476873605\n"
+"help.text"
+msgid "Right-click on template to be made default, choose <menuitem>Set as Default</menuitem>."
+msgstr ""
+
+#. LNBjE
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3153764\n"
"help.text"
-msgid "Using Custom Templates"
-msgstr "사용자의 서식 파일을 다음과 같이 이용하십시오"
+msgid "Creating a Custom Template"
+msgstr ""
+
+#. eUBit
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id231605475396242\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#create_template\"/>"
+msgstr ""
-#. Quf5G
+#. DuAAp
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3150386\n"
+"par_id251605475503009\n"
"help.text"
-msgid "There are several ways to make your work easier by using your own custom templates."
-msgstr "사용자 정의 서식 파일을 사용하여 보다 편리하게 작업할 수 있는 여러 가지 방법이 있습니다."
+msgid "Choose <menuitem>File - Templates - Save As Template</menuitem>, then enter the template name, choose a <emph>Template category</emph>, and save."
+msgstr ""
-#. S8XFP
+#. FZqGj
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"hd_id311605475738848\n"
+"help.text"
+msgid "Modifying a Custom Template"
+msgstr ""
+
+#. CpDHT
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id901605475822840\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#edit_template\"/>"
+msgstr ""
+
+#. 3w93A
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id51605476162735\n"
+"help.text"
+msgid "Right-click on the template to be modified, and choose <menuitem>Edit</menuitem>."
+msgstr ""
+
+#. VMFLZ
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id191605477448444\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/guide/standard_template.xhp#save_template\"/>"
+msgstr ""
+
+#. 2BZGR
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3149109\n"
"help.text"
-msgid "Templates in the Template Folder"
-msgstr "서식 파일 폴더의 서식 파일"
+msgid "Saving a Template in the Template Folder"
+msgstr ""
-#. 988sS
+#. eWjFn
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3146918\n"
"help.text"
-msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. d2jxd
+#. QieZx
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
-"par_id3147343\n"
+"par_id271605485719890\n"
"help.text"
-msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
+msgid "The <link href=\"text/shared/guide/template_manager\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <keycode>Ctrl+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
#. 6YAP3
@@ -24253,13 +24100,13 @@ msgctxt ""
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
msgstr ""
-#. GRvCW
+#. y9WCH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723523966\n"
"help.text"
-msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
+msgid "See <link href=\"text/swriter/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
msgstr ""
#. AGfmF
diff --git a/source/ko/helpcontent2/source/text/shared/optionen.po b/source/ko/helpcontent2/source/text/shared/optionen.po
index df19d3259a6..cc9c2676e95 100644
--- a/source/ko/helpcontent2/source/text/shared/optionen.po
+++ b/source/ko/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-08-09 08:14+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3427,13 +3427,13 @@ msgctxt ""
msgid "View"
msgstr "보기"
-#. Ywcrn
+#. oZ2Fg
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"bm_id3155341\n"
"help.text"
-msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
+msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
#. cGjPM
@@ -3454,58 +3454,58 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. 8LF74
+#. M4iFj
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161612581529\n"
+"hd_id310720161555238963\n"
"help.text"
-msgid "User Interface"
+msgid "Icon style"
msgstr ""
-#. PSGxb
+#. omu6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3149123\n"
+"par_id310720161555341027\n"
"help.text"
-msgid "Toolbar icon size"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
msgstr ""
-#. ENEAc
+#. wYGZr
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3153947\n"
+"hd_id310720161612581529\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus.</caseinline></switchinline>"
+msgid "Icon Size"
msgstr ""
-#. VteiP
+#. 4uDBN
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555082010\n"
+"hd_id3149123\n"
"help.text"
-msgid "Sidebar icon size"
+msgid "Toolbar"
msgstr ""
-#. YyspZ
+#. dwkqf
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161554582186\n"
+"par_id3153947\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp>"
msgstr ""
-#. ne4jA
+#. vXois
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id190920161822223888\n"
"help.text"
-msgid "Notebook bar icon size"
+msgid "Notebookbar"
msgstr ""
#. 29iV7
@@ -3517,50 +3517,68 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
msgstr ""
-#. M4iFj
+#. CTALB
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id310720161555238963\n"
+"hd_id310720161555082010\n"
"help.text"
-msgid "Icon style"
+msgid "Sidebar"
msgstr ""
-#. omu6i
+#. YyspZ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id310720161555341027\n"
+"par_id310720161554582186\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
msgstr ""
-#. bPXzY
+#. inCeL
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3400982\n"
+"par_idN107A3\n"
"help.text"
-msgid "Screen font antialiasing"
-msgstr "화면 글꼴 안티앨리어싱"
+msgid "Visibility"
+msgstr ""
-#. mnNge
+#. uU7jb
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id6649372\n"
+"hd_id3156056\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgid "Menu icons"
msgstr ""
-#. tckLs
+#. zqqN8
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id4743797\n"
+"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\".\">안티앨리어싱을 적용할 최소 글꼴 크기를 입력합니다.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgstr ""
+
+#. vyLbD
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id311605831089020\n"
+"help.text"
+msgid "Shortcuts"
+msgstr ""
+
+#. 5ECGG
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id261605832091566\n"
+"help.text"
+msgid "Displays shortcut keys next to corresponding menu items. Select from \"Automatic\", \"Hide\", and \"Show\". \"Automatic\" displays shortcut keys according to system settings."
+msgstr ""
#. QWZyh
#: 01010800.xhp
@@ -3571,13 +3589,13 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. TB9op
+#. yJ3aD
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "Mouse positioning"
+msgid "Positioning"
msgstr ""
#. aYKpK
@@ -3589,13 +3607,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/mousepos\">Specifies if and how the mouse pointer will be positioned in newly opened dialogs.</ahelp>"
msgstr ""
-#. cfqBE
+#. D92FV
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3146982\n"
"help.text"
-msgid "Middle mouse button"
+msgid "Middle button"
msgstr ""
#. 6Qe9V
@@ -3733,23 +3751,23 @@ msgctxt ""
msgid "The last marked selection is the content of the selection clipboard."
msgstr ""
-#. QXP9N
+#. dKU6i
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10AC8\n"
+"par_idN10A1D\n"
"help.text"
-msgid "Graphics output"
-msgstr "그래픽 출력"
+msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
+msgstr "<ahelp hid=\"20201\">Shift + Ctrl + R 을 누르면 현재 문서의 보기를 복구하거나 새로 고칠 수 있습니다.</ahelp>"
-#. dKU6i
+#. 9BPVM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_idN10A1D\n"
+"par_idN10AC8\n"
"help.text"
-msgid "<ahelp hid=\"20201\">Press Shift+Ctrl+R to restore or refresh the view of the current document.</ahelp>"
-msgstr "<ahelp hid=\"20201\">Shift + Ctrl + R 을 누르면 현재 문서의 보기를 복구하거나 새로 고칠 수 있습니다.</ahelp>"
+msgid "Graphics Output"
+msgstr ""
#. WzMq5
#: 01010800.xhp
@@ -3787,67 +3805,58 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/useaa\">When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts.</ahelp>"
msgstr "<ahelp hid=\".\">이 기능을 지원하는 경우, 그림에 대한 안티-앨리어싱을 켜거나 끌 수 있습니다. 안티-앨리어싱을 사용하면, 대부분의 그림 개체를 보다 부드럽고 자연스럽게 표시할 수 있습니다.</ahelp>"
-#. Au8eb
+#. N8g8U
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004471\n"
"help.text"
-msgid "Use OpenGL for all rendering (on restart)"
+msgid "Use Skia for all rendering (on restart)"
msgstr ""
-#. F4SNo
+#. neuEJ
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004445\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Open Graphics Library (<link href=\"text/shared/00/00000005.xhp\" name=\"opengl\">OpenGL</link>) to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective."
+msgid "<ahelp hid=\"cui/ui/optviewpage/useopengl\">Use the high performance Skia graphics engine to render all visual elements of the application, including windows, menus, toolbars and icons.</ahelp> Skia uses the computer graphics device to accelerate the graphics rendering."
msgstr ""
-#. mgCcb
+#. tF5EX
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id1208200812004472\n"
"help.text"
-msgid "Force OpenGL even if blacklisted (on restart)"
+msgid "Force Skia software rendering (on restart)"
msgstr ""
-#. p4bDK
+#. 3TFwM
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"par_id1208200812004446\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Forces the use of OpenGL even if the graphics device is blacklisted.</ahelp> A device is blacklisted when it is buggy or may render graphics with poor quality."
+msgid "<ahelp hid=\"cui/ui/optviewpage/forceopengl\">Select this control to disable Skia's use of the computer graphics device.</ahelp>"
msgstr ""
-#. CTQcx
-#: 01010800.xhp
-msgctxt ""
-"01010800.xhp\n"
-"par_idN107A3\n"
-"help.text"
-msgid "Menu"
-msgstr "메뉴"
-
-#. WnNCQ
+#. CSJCp
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"hd_id3156056\n"
+"par_id951606170938129\n"
"help.text"
-msgid "Icons in menus"
+msgid "During installation, %PRODUCTNAME chooses the best options for configuring the Skia graphics engine. Normally you do not need to change the default settings if Skia is enabled."
msgstr ""
-#. zqqN8
+#. Berbx
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
-"par_id3155766\n"
+"par_id361606171335950\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optviewpage/menuicons\">Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes.</ahelp>"
+msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable <emph>Force Skia software rendering</emph> or disable Skia entirely."
msgstr ""
#. wPnrb
@@ -3877,6 +3886,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
msgstr ""
+#. bPXzY
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id3400982\n"
+"help.text"
+msgid "Screen font antialiasing"
+msgstr "화면 글꼴 안티앨리어싱"
+
+#. mnNge
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id6649372\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aafont\">Select to smooth the screen appearance of text.</ahelp>"
+msgstr ""
+
+#. eNJhS
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"hd_id451605831585825\n"
+"help.text"
+msgid "from"
+msgstr ""
+
+#. tckLs
+#: 01010800.xhp
+msgctxt ""
+"01010800.xhp\n"
+"par_id4743797\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
+msgstr "<ahelp hid=\".\">안티앨리어싱을 적용할 최소 글꼴 크기를 입력합니다.</ahelp>"
+
#. 2Z5jk
#: 01010900.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/swriter/guide.po b/source/ko/helpcontent2/source/text/swriter/guide.po
index 3b903f36885..f450dfd26e7 100644
--- a/source/ko/helpcontent2/source/text/swriter/guide.po
+++ b/source/ko/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2019-03-15 06:14+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "Printing a single page"
msgstr ""
-#. KhpCc
+#. nFVLk
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id571605684186001\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. 2GBM8
@@ -12562,13 +12562,13 @@ msgctxt ""
msgid "Printing a range of pages"
msgstr ""
-#. DBQVy
+#. xdCdZ
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id731605685039891\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. hWBFk
@@ -12589,58 +12589,40 @@ msgctxt ""
msgid "Enter the page numbers to print."
msgstr ""
-#. 5iRGH
+#. 5D8g2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605270284520\n"
"help.text"
-msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgid "Use <literal>-</literal> for a range of pages. For example, <input>1-4</input> prints all pages from 1 to 4."
msgstr ""
-#. RfLAA
+#. AShg2
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id651605685305228\n"
"help.text"
-msgid "• Partial ranges are also permitted."
+msgid "Partial ranges are also allowed: <input>-5</input> prints all pages up to page 5; <input>10-</input> prints from page 10 to end of document."
msgstr ""
-#. Bugra
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id781605686618241\n"
-"help.text"
-msgid "<input>-5</input> prints all pages up to page 5."
-msgstr ""
-
-#. eQhF4
-#: print_selection.xhp
-msgctxt ""
-"print_selection.xhp\n"
-"par_id741605686988056\n"
-"help.text"
-msgid "<input>10-</input> prints from page 10 to end of document."
-msgstr ""
-
-#. wcTVv
+#. WBqMB
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id951605270474391\n"
"help.text"
-msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgid "Use <literal>,</literal> or <literal>;</literal> for a list of pages. For example, <input>1,3;7</input> prints pages 1, 3 and 7. Spaces are optional: <input>1, 3, 7</input> also works."
msgstr ""
-#. GzqGZ
+#. EAR8E
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id611605270697509\n"
"help.text"
-msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgid "Combinations are also possible. For example, <input>1, 3, 5-10, 15-</input> prints pages 1,3, 5 to 10, and 15 to end of document."
msgstr ""
#. FRjsx
@@ -12670,13 +12652,13 @@ msgctxt ""
msgid "Select the content to print."
msgstr ""
-#. mwEd6
+#. Q82VP
#: print_selection.xhp
msgctxt ""
"print_selection.xhp\n"
"par_id481605687683495\n"
"help.text"
-msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgid "Choose <menuitem>File - Print</menuitem> to open the <emph>Print</emph> dialog."
msgstr ""
#. iaYKz
@@ -16909,14 +16891,14 @@ msgctxt ""
msgid "Unless you specify otherwise, every new $[officename] text document is based on the default template."
msgstr "다르게 지정하지 않으면 새 $[officename] 텍스트 문서는 모두 기본 서식 파일을 기본으로 합니다."
-#. J9VB2
+#. UXnRC
#: templates_styles.xhp
msgctxt ""
"templates_styles.xhp\n"
"par_id3149974\n"
"help.text"
-msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename]에는 업무용 서신과 같은 여러 가지 유형의 문서 또는 텍스트 문서를 만들 때 사용할 수 있는 <link href=\"text/swriter/01/05130000.xhp\" name=\"미리 정의된 서식 파일\">미리 정의된 서식 파일</link>이 많이 있습니다."
+msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters."
+msgstr ""
#. VFfAP
#: text_animation.xhp
@@ -17269,14 +17251,14 @@ msgctxt ""
msgid "To set the behavior of the direct cursor, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>."
msgstr "수동 삽입의 동작을 설정하려면, <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - 기본 설정</emph></caseinline><defaultinline><emph>도구 - 기본 설정</emph></defaultinline></switchinline><emph> - %PRODUCTNAME 라이터 - 서식 도우미</emph>에서 수동 삽입 항목을 활성화시킵니다."
-#. D2Qjq
+#. bNK8D
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "<item type=\"menuitem\">도구</item> 모음에서 <item type=\"menuitem\">직접 커서</item> 아이콘 <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">아이콘</alt></image>을 클릭합니다."
+msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>."
+msgstr ""
#. AmitQ
#: text_direct_cursor.xhp
@@ -17287,32 +17269,32 @@ msgctxt ""
msgid "Click in a free space in the text document. The mouse pointer changes to reflect the alignment that will be applied to the text that you type:"
msgstr "텍스트 문서에서 빈 영역을 클릭합니다. 입력한 텍스트에 적용할 맞춤을 반영하기 위해 마우스 포인터가 변경됩니다."
-#. hWZqk
+#. 4qwJ9
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">아이콘</alt></image> 왼쪽 맞춤"
+msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
+msgstr ""
-#. 3A8HV
+#. CSXBU
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN106E4\n"
"help.text"
-msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">아이콘</alt></image> 가운데 맞춤"
+msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
+msgstr ""
-#. txU6C
+#. XcT6v
#: text_direct_cursor.xhp
msgctxt ""
"text_direct_cursor.xhp\n"
"par_idN10700\n"
"help.text"
-msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">아이콘</alt></image> 오른쪽 맞춤"
+msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
+msgstr ""
#. EuMGF
#: text_direct_cursor.xhp
diff --git a/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
index ba0e7446cb2..9aa18bae044 100644
--- a/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2020-09-03 23:35+0000\n"
"Last-Translator: 임재훈 <lim10260@nate.com>\n"
"Language-Team: Korean <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ko/>\n"
@@ -8027,15 +8027,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "슬라이드 숨기기(~H)"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "텍스트(~X)..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25509,25 +25509,25 @@ msgctxt ""
msgid "~File"
msgstr "파일(~F)"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "맞춤(~N)"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "맞춤(~N)"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31099,15 +31099,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "단락 끝까지 선택"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "오른쪽 단어까지 선택"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ko/sc/messages.po b/source/ko/sc/messages.po
index c6a0423f5f2..1f1d96e4ddf 100644
--- a/source/ko/sc/messages.po
+++ b/source/ko/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-03-16 06:51+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24581,213 +24581,213 @@ msgid "~File"
msgstr "파일(~F)"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "선택한 셀의 테두리를 지정하십시오."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "들여쓰기"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "내어쓰기"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "홈(_H)"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "필드(_D)"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "삽입(_I)"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "삽입(~I)"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "레이아웃(~L)"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "데이터(_D)"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "데이터(~D)"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "리뷰(_R)"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "리뷰(~R)"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "보기(_V)"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "보기(~V)"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "이미지(~G)"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "드로우(_D)"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "드로우(~D)"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "객체(~O)"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "미디어(_M)"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "미디어(~M)"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "인쇄(_P)"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "인쇄(~P)"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "도구(_T)"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29617,338 +29617,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr "해 찾기"
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "옵션(_P)..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "해 찾기(_S)"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "대상 셀(_T)"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "결과를 다음으로 최적화"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "셀 변경(_B)"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "최소(_U)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "최대(_M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "값(_V)"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "셀 참조(_C)"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "연산자(_O)"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "값(_A)"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "셀 참조"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "셀 참조"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "셀 참조"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "셀 참조"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "정수"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "이진"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "연산자"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "정수"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "이진"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "연산자"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "정수"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "이진"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "연산자"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "정수"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "이진"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "연산자"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "값"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "값"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "값"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "값"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "제거"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "제거"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "제거"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "제거"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "제한 조건"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ko/sd/messages.po b/source/ko/sd/messages.po
index e1c42900db4..887042e8403 100644
--- a/source/ko/sd/messages.po
+++ b/source/ko/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2019-03-16 06:58+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3821,116 +3821,116 @@ msgstr "표(~T)"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "변환"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "이미지(_G)"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "이미지(~G)"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "드로우(_D)"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "드로우(~D)"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "도구(_T)"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "도구(~T)"
@@ -4334,12 +4334,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "메뉴(_M)"
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6572,219 +6566,219 @@ msgid "~File"
msgstr "파일(~F)"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "홈(_H)"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "홈(~H)"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "슬라이드 쇼(_S)"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "슬라이드 쇼(~S)"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "리뷰(_R)"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "리뷰(~R)"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "보기(_V)"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "보기(~V)"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "표(_T)"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "표(~T)"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "변환"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "이미지(_G)"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "이미지(~G)"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "드로우(_D)"
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "드로우(~D)"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "도구(_T)"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "도구(~T)"
@@ -7694,12 +7688,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "윤곽 편집"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ko/starmath/messages.po b/source/ko/starmath/messages.po
index facf72af20e..efffb7038ab 100644
--- a/source/ko/starmath/messages.po
+++ b/source/ko/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ko/svx/messages.po b/source/ko/svx/messages.po
index d8e1fd3b804..e5d23dde20f 100644
--- a/source/ko/svx/messages.po
+++ b/source/ko/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-02-19 23:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Korean <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ko/>\n"
@@ -7231,11 +7231,11 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "현재 창에 슬라이드 크기 맞추기"
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr "모든 스마트아트를 불러올 수 없습니다. 이 문제를 해결하려면 Microsoft Office 2010 이후 버전으로 저장하십시오."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
#. Bc5Sg
#: include/svx/strings.hrc:1296
@@ -13958,17 +13958,14 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "빠른 이동 막대"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
-"충돌 보고서가 성공적으로 업로드되었습니다.\n"
-"업로드한 보고서는 다음 주소에서 확인할 수 있습니다.:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
#. DDKL6
#: svx/uiconfig/ui/crashreportdlg.ui:11
@@ -13994,10 +13991,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr "충돌 보고 보내기(_S)"
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/ko/sw/messages.po b/source/ko/sw/messages.po
index 84c0d5fa86d..d4b9338109c 100644
--- a/source/ko/sw/messages.po
+++ b/source/ko/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Sungjoon Moon <sjmoon2001@gmail.com>\n"
"Language-Team: Korean <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ko/>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20357,181 +20357,181 @@ msgid "~File"
msgstr "파일(~F)"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "홈(_H)"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "홈(~H)"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "삽입(_I)"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "삽입(~I)"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "레이아웃(_L)"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "레이아웃(~L)"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "참조(_S)"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "참조(~S)"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "리뷰(_R)"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "리뷰(~R)"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "보기(_V)"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "보기(~V)"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "표(_T)"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "표(~T)"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "이미지(_G)"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "이미지(~G)"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21569,12 +21569,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "윤곽 편집"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/kok/cui/messages.po b/source/kok/cui/messages.po
index 71217661736..34d579411f8 100644
--- a/source/kok/cui/messages.po
+++ b/source/kok/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21535,60 +21535,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
index 3f9abd992ca..dd77a1a633d 100644
--- a/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8151,15 +8151,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "दर्शिका लिपयात"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "मजकूर..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25838,27 +25838,25 @@ msgctxt ""
msgid "~File"
msgstr "धारिका"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "सारकें करात"
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr "सारकें करात"
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31543,15 +31541,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "परिच्छेदाच्या शेवटाक निवडात"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "उजव्या शब्दाक निवडात"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/kok/sc/messages.po b/source/kok/sc/messages.po
index cc86554b3bd..ee6ac4a7961 100644
--- a/source/kok/sc/messages.po
+++ b/source/kok/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25115,213 +25115,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30334,350 +30334,356 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "पर्याय..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "किमान"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "कमाल"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "मोल"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "पूर्णांक"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "बायनरीDuheri"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "प्रवर्तक"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "पूर्णांक"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "बायनरीDuheri"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "प्रवर्तक"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "पूर्णांक"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "बायनरीDuheri"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "प्रवर्तक"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "पूर्णांक"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "बायनरीDuheri"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "प्रवर्तक"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "मोल"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "मोल"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "मोल"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "मोल"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "काडात"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "काडात"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "काडात"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "काडात"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/kok/sd/messages.po b/source/kok/sd/messages.po
index 0dbece34c2e..920feb9a6f7 100644
--- a/source/kok/sd/messages.po
+++ b/source/kok/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3902,116 +3902,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4415,12 +4415,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6750,219 +6744,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7929,12 +7923,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "अक्षर कमनीयता"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/kok/starmath/messages.po b/source/kok/starmath/messages.po
index af4116a3e41..12289262a64 100644
--- a/source/kok/starmath/messages.po
+++ b/source/kok/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2207,9 +2207,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/kok/svx/messages.po b/source/kok/svx/messages.po
index a3ddd74ab84..b547c2b65f5 100644
--- a/source/kok/svx/messages.po
+++ b/source/kok/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Konkani <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/kok/>\n"
@@ -7362,10 +7362,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14246,13 +14246,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "वाट दाखोवपी पट्टी"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14276,10 +14276,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/kok/sw/messages.po b/source/kok/sw/messages.po
index a4e52e01f3f..b0949547328 100644
--- a/source/kok/sw/messages.po
+++ b/source/kok/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -99,10 +99,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -21024,181 +21024,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22257,12 +22257,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "अक्षर कमनीयता"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/ks/cui/messages.po b/source/ks/cui/messages.po
index 33a6a8311a8..0553f3ae899 100644
--- a/source/ks/cui/messages.po
+++ b/source/ks/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21541,60 +21541,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
index e853386aed0..f6e2fffcc09 100644
--- a/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8153,15 +8153,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr "سلائڈچھپئویو"
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "متن"
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25840,27 +25840,25 @@ msgctxt ""
msgid "~File"
msgstr "فائل"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr " ترتیب واری "
+msgid "Alig~n Objects"
+msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
-msgstr " ترتیب واری "
+msgid "Align Tex~t"
+msgstr ""
#. y3E2U
#: GenericCommands.xcu
@@ -31536,15 +31534,15 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr "پیرگراف کےختم کا انتخاب کرو"
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
-msgstr "دائیں لفظ کا انتخاب کرو"
+msgid "Select to End of Word"
+msgstr ""
#. bpBoC
#: WriterCommands.xcu
diff --git a/source/ks/sc/messages.po b/source/ks/sc/messages.po
index ef14c6936db..039f29c2fd2 100644
--- a/source/ks/sc/messages.po
+++ b/source/ks/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25195,213 +25195,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30422,350 +30422,356 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "متبادل۔۔۔"
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "~کم ازکم"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "زیادئ ہوتئ زیادئ"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "قئمتھ"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "سالم"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr " آپریٹرس "
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "سالم"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr " آپریٹرس "
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "سالم"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr " آپریٹرس "
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "سالم"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr " آپریٹرس "
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "قئمتھ"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "قئمتھ"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "قئمتھ"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "قئمتھ"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "ہٹئویو"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "ہٹئویو"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "ہٹئویو"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "ہٹئویو"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ks/sd/messages.po b/source/ks/sd/messages.po
index 7834f12c1ec..5b5e3fbeb98 100644
--- a/source/ks/sd/messages.po
+++ b/source/ks/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3920,116 +3920,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4433,12 +4433,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6770,219 +6764,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7949,12 +7943,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "مواد قنطور"
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ks/starmath/messages.po b/source/ks/starmath/messages.po
index 35d5ffece17..d4866161126 100644
--- a/source/ks/starmath/messages.po
+++ b/source/ks/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2210,9 +2210,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ks/svx/messages.po b/source/ks/svx/messages.po
index cf7974ebb2e..8301d7a110c 100644
--- a/source/ks/svx/messages.po
+++ b/source/ks/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Kashmiri <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ks/>\n"
@@ -7356,10 +7356,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14207,13 +14207,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "نیویگیشن پئٹ"
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14237,10 +14237,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/ks/sw/messages.po b/source/ks/sw/messages.po
index c7536cfea50..0655a9a8805 100644
--- a/source/ks/sw/messages.po
+++ b/source/ks/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -99,10 +99,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -21077,181 +21077,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22315,12 +22315,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "مواد قنطور"
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/ky/cui/messages.po b/source/ky/cui/messages.po
index b4908f1556b..a8d04b3e46e 100644
--- a/source/ky/cui/messages.po
+++ b/source/ky/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -20866,60 +20866,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
index 70098156c01..169d6200612 100644
--- a/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8026,14 +8026,14 @@ msgctxt ""
msgid "~Hide Slide"
msgstr ""
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
+msgid "Te~xt Attributes..."
msgstr ""
#. GR6Sf
@@ -25514,24 +25514,24 @@ msgctxt ""
msgid "~File"
msgstr ""
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Alig~n Objects"
msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Align Tex~t"
msgstr ""
#. y3E2U
@@ -31107,14 +31107,14 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr ""
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
+msgid "Select to End of Word"
msgstr ""
#. bpBoC
diff --git a/source/ky/sc/messages.po b/source/ky/sc/messages.po
index b0818254543..59cac030704 100644
--- a/source/ky/sc/messages.po
+++ b/source/ky/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24492,213 +24492,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -29534,338 +29534,344 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr ""
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr ""
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr ""
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr ""
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr ""
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr ""
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr ""
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr ""
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr ""
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr ""
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr ""
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr ""
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr ""
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr ""
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr ""
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr ""
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr ""
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr ""
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr ""
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr ""
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/ky/sd/messages.po b/source/ky/sd/messages.po
index b3acae4f7df..d2e19b311fb 100644
--- a/source/ky/sd/messages.po
+++ b/source/ky/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3805,116 +3805,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4318,12 +4318,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6556,219 +6550,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7683,12 +7677,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/ky/starmath/messages.po b/source/ky/starmath/messages.po
index 016f12a2273..ef289fe318d 100644
--- a/source/ky/starmath/messages.po
+++ b/source/ky/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2189,9 +2189,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/ky/svx/messages.po b/source/ky/svx/messages.po
index b9e5479512d..14fc257db30 100644
--- a/source/ky/svx/messages.po
+++ b/source/ky/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7218,10 +7218,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -13939,13 +13939,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -13969,10 +13969,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/ky/sw/messages.po b/source/ky/sw/messages.po
index 3082c248c04..0695fe83df1 100644
--- a/source/ky/sw/messages.po
+++ b/source/ky/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20343,181 +20343,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21555,12 +21555,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
msgctxt "numberingnamedialog|NumberingNameDialog"
diff --git a/source/lb/cui/messages.po b/source/lb/cui/messages.po
index a5cbf2ca2c3..aa273cd46c6 100644
--- a/source/lb/cui/messages.po
+++ b/source/lb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21271,60 +21271,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
index e3904eeffc3..f454e62c5c3 100644
--- a/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8140,16 +8140,15 @@ msgctxt ""
msgid "~Hide Slide"
msgstr ""
-#. AkhY9
+#. AVpQn
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Te~xt..."
-msgstr "Te~xt..."
+msgid "Te~xt Attributes..."
+msgstr ""
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -25835,24 +25834,24 @@ msgctxt ""
msgid "~File"
msgstr "~Datei"
-#. wgQ27
+#. 6US8G
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Alig~n Objects"
msgstr ""
-#. VShLc
+#. VK2hz
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
"Label\n"
"value.text"
-msgid "Alig~n"
+msgid "Align Tex~t"
msgstr ""
#. y3E2U
@@ -31506,14 +31505,14 @@ msgctxt ""
msgid "Select to Paragraph End"
msgstr ""
-#. hCNDa
+#. zcgFJ
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WordRightSel\n"
"Label\n"
"value.text"
-msgid "Select to Word Right"
+msgid "Select to End of Word"
msgstr ""
#. bpBoC
diff --git a/source/lb/sc/messages.po b/source/lb/sc/messages.po
index 32d9065ebf2..a5705736f7d 100644
--- a/source/lb/sc/messages.po
+++ b/source/lb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24948,213 +24948,213 @@ msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3543
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3555
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3842
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3838
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3856
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4812
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4843
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4921
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4952
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5480
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5511
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6001
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6032
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6109
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6140
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6520
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6546
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6984
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6551
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6577
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7015
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7209
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7240
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7294
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7325
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8400
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8431
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8451
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8482
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8591
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9382
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9413
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9499
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10374
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10405
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10491
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11515
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11544
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12889
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12970
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12999
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13471
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13743
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13772
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13882
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14429
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14458
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14566
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14938
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14967
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15022
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15051
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15857
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15886
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15942
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15971
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15999
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16028
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16073
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16102
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17301
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17330
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17386
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17415
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -30106,346 +30106,352 @@ msgctxt "solverdlg|SolverDialog"
msgid "Solver"
msgstr ""
+#. p9CbY
+#: sc/uiconfig/scalc/ui/solverdlg.ui:39
+msgctxt "solverdlg|resetall"
+msgid "_Reset All"
+msgstr ""
+
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:24
+#: sc/uiconfig/scalc/ui/solverdlg.ui:53
#, fuzzy
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "Optiounen..."
#. UABF3
-#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+#: sc/uiconfig/scalc/ui/solverdlg.ui:60
msgctxt "solverdlg|extended_tip|options"
msgid "Opens the Solver Options dialog."
msgstr ""
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:58
+#: sc/uiconfig/scalc/ui/solverdlg.ui:72
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr ""
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:114
+#: sc/uiconfig/scalc/ui/solverdlg.ui:128
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr ""
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:127
+#: sc/uiconfig/scalc/ui/solverdlg.ui:141
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:141
+#: sc/uiconfig/scalc/ui/solverdlg.ui:155
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:152
+#: sc/uiconfig/scalc/ui/solverdlg.ui:166
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "~Minimum"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:165
+#: sc/uiconfig/scalc/ui/solverdlg.ui:179
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:176
+#: sc/uiconfig/scalc/ui/solverdlg.ui:190
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "~Maximum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:190
+#: sc/uiconfig/scalc/ui/solverdlg.ui:204
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:214
+#: sc/uiconfig/scalc/ui/solverdlg.ui:228
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:256
+#: sc/uiconfig/scalc/ui/solverdlg.ui:270
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:292
+#: sc/uiconfig/scalc/ui/solverdlg.ui:306
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:319
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:329
+#: sc/uiconfig/scalc/ui/solverdlg.ui:343
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:421
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:435
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:449
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Wäerter"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:468
+#: sc/uiconfig/scalc/ui/solverdlg.ui:482
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:486
+#: sc/uiconfig/scalc/ui/solverdlg.ui:500
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:504
+#: sc/uiconfig/scalc/ui/solverdlg.ui:518
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:522
+#: sc/uiconfig/scalc/ui/solverdlg.ui:536
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:580
+#: sc/uiconfig/scalc/ui/solverdlg.ui:594
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:581
+#: sc/uiconfig/scalc/ui/solverdlg.ui:595
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:582
+#: sc/uiconfig/scalc/ui/solverdlg.ui:596
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:583
+#: sc/uiconfig/scalc/ui/solverdlg.ui:597
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr ""
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:584
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:588
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr ""
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:602
+#: sc/uiconfig/scalc/ui/solverdlg.ui:616
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:603
+#: sc/uiconfig/scalc/ui/solverdlg.ui:617
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:604
+#: sc/uiconfig/scalc/ui/solverdlg.ui:618
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:605
+#: sc/uiconfig/scalc/ui/solverdlg.ui:619
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr ""
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:606
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:610
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr ""
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:624
+#: sc/uiconfig/scalc/ui/solverdlg.ui:638
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:625
+#: sc/uiconfig/scalc/ui/solverdlg.ui:639
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:626
+#: sc/uiconfig/scalc/ui/solverdlg.ui:640
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:627
+#: sc/uiconfig/scalc/ui/solverdlg.ui:641
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr ""
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:628
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:632
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr ""
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:646
+#: sc/uiconfig/scalc/ui/solverdlg.ui:660
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:647
+#: sc/uiconfig/scalc/ui/solverdlg.ui:661
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:648
+#: sc/uiconfig/scalc/ui/solverdlg.ui:662
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:649
+#: sc/uiconfig/scalc/ui/solverdlg.ui:663
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr ""
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:650
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:654
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr ""
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:673
+#: sc/uiconfig/scalc/ui/solverdlg.ui:687
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Wäerter"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:692
+#: sc/uiconfig/scalc/ui/solverdlg.ui:706
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Wäerter"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:711
+#: sc/uiconfig/scalc/ui/solverdlg.ui:725
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Wäerter"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:730
+#: sc/uiconfig/scalc/ui/solverdlg.ui:744
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Wäerter"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:788
+#: sc/uiconfig/scalc/ui/solverdlg.ui:802
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Ewechmaachen"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:800
+#: sc/uiconfig/scalc/ui/solverdlg.ui:814
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Ewechmaachen"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:812
+#: sc/uiconfig/scalc/ui/solverdlg.ui:826
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Ewechmaachen"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:824
+#: sc/uiconfig/scalc/ui/solverdlg.ui:838
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Ewechmaachen"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:849
+#: sc/uiconfig/scalc/ui/solverdlg.ui:863
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:882
+#: sc/uiconfig/scalc/ui/solverdlg.ui:896
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
diff --git a/source/lb/sd/messages.po b/source/lb/sd/messages.po
index ce70d9f2037..deb51790a4c 100644
--- a/source/lb/sd/messages.po
+++ b/source/lb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3877,116 +3877,116 @@ msgstr ""
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11422
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12626
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14480
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12622
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14476
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12021
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12017
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12129
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13878
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13874
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13987
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13983
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14842
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14956
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14952
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15468
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15579
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15575
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16414
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16499
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16495
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17313
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17309
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17423
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17419
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18009
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18098
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18094
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18151
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18229
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18225
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19173
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19169
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19258
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19254
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4390,12 +4390,6 @@ msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
-#. ioCEu
-#: sd/uiconfig/sdraw/ui/notebookbar_single.ui:1396
-msgctxt "notebookbar_draw_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. n8Ekd
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -6667,219 +6661,219 @@ msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4829
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4848
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4931
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4950
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5546
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5565
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6105
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6124
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6211
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6230
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7004
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7023
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7090
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7109
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7583
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7668
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8216
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8281
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8300
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9532
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9551
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9618
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9637
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10540
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10559
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10625
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10644
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11167
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12369
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14241
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11186
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12386
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14258
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11766
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11783
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11878
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11895
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13637
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13654
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13747
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13764
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14607
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14624
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14717
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14734
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15233
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15250
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15340
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15357
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16175
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16192
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16260
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16277
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17072
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17089
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17157
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17174
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17985
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18002
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18070
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18087
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18994
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19011
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19051
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19068
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19125
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19142
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20121
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20138
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20206
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20223
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7825,12 +7819,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. j84EL
-#: sd/uiconfig/simpress/ui/notebookbar_single.ui:1048
-msgctxt "notebookbar_impress_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. 7k6fG
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:61
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/lb/starmath/messages.po b/source/lb/starmath/messages.po
index 1b7016389d8..b9f58c6c165 100644
--- a/source/lb/starmath/messages.po
+++ b/source/lb/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-05-08 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2200,9 +2200,9 @@ msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
-#. gkAEg
+#. jF2GD
#: starmath/inc/strings.hrc:328
-msgctxt "RID_EXAMPLE_CAOS_HELP"
+msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
diff --git a/source/lb/svx/messages.po b/source/lb/svx/messages.po
index afe7cb95650..6730adcb7c0 100644
--- a/source/lb/svx/messages.po
+++ b/source/lb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7308,10 +7308,10 @@ msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#. jYTMN
+#. Fpkx2
#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
-msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
@@ -14104,13 +14104,13 @@ msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
-#. 4XvxL
+#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
msgid ""
"The crash report was successfully uploaded.\n"
"You can soon find the report at:\n"
-"crashreport.libreoffice.org/stats/crash_details/%CRASHID"
+"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID"
msgstr ""
#. DDKL6
@@ -14134,10 +14134,10 @@ msgctxt "crashreportdlg|btn_send"
msgid "_Send Crash Report"
msgstr ""
-#. oGBfJ
+#. Qg8UC
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
-msgid "Do_n’t Send"
+msgid "Do _Not Send"
msgstr ""
#. afExy
diff --git a/source/lb/sw/messages.po b/source/lb/sw/messages.po
index ba4074d1225..3a61418dd72 100644
--- a/source/lb/sw/messages.po
+++ b/source/lb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"POT-Creation-Date: 2020-12-08 13:08+0100\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,10 +100,10 @@ msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
msgstr ""
-#. gkDzg
+#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
-msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
+msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
msgstr ""
#. UWv4T
@@ -20796,181 +20796,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4587
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4604
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4675
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4692
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5855
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5872
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5963
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5980
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7074
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7143
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7160
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7891
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7959
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8913
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8982
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8999
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9852
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9869
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9955
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11118
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11135
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11203
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11220
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12382
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12395
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12482
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12494
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13846
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13858
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13956
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13968
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14851
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14863
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14949
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15743
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15755
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15850
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15862
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16315
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16386
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16398
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17221
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17233
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17306
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17318
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17375
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17437
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17449
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18429
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18502
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18514
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22021,12 +22021,6 @@ msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr ""
-#. EE6WC
-#: sw/uiconfig/swriter/ui/notebookbar_single.ui:1757
-msgctxt "notebookbar_single|ExtensionMenuButton"
-msgid "E_xtension"
-msgstr ""
-
#. VGQAU
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:16
#, fuzzy
diff --git a/source/lo/cui/messages.po b/source/lo/cui/messages.po
index 402a615dc4f..0583636e13c 100644
--- a/source/lo/cui/messages.po
+++ b/source/lo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:42+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21449,60 +21449,72 @@ msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
msgstr ""
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:111
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
+#. rSnx7
+#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+msgctxt "ToolbarmodeDialog|applyall"
+msgid "A_pply to All"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:128
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
+#. kPZub
+#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+msgctxt "ToolbarmodeDialog|applymodule"
+msgid "A_pply to %MODULE"
msgstr ""
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:146
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:111
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
msgstr ""
#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:164
+#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:200
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:218
+#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
msgstr ""
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:182
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:236
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:254
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
diff --git a/source/lo/helpcontent2/source/text/sbasic/shared.po b/source/lo/helpcontent2/source/text/sbasic/shared.po
index 5aa01bf9cb0..4cbae1d85a2 100644
--- a/source/lo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2018-10-21 20:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12814,49 +12814,40 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
msgstr ""
-#. ruXou
+#. Fu6rt
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"par_id3147000\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Creates a new directory on a data medium."
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
msgstr ""
-#. SehPs
+#. ruXou
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
-"hd_id3148520\n"
+"par_id3147000\n"
"help.text"
-msgid "Syntax:"
+msgid "Creates a new directory on a data medium."
msgstr ""
-#. xrp6D
+#. 83LPA
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr ""
-
-#. J4Hg2
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"help.text"
-msgid "Parameters:"
+msgid "MkDir path"
msgstr ""
-#. kfraD
+#. PaEBs
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
#. PLopZ
@@ -12868,15 +12859,6 @@ msgctxt ""
msgid "If the path is not determined, the directory is created in the current directory."
msgstr ""
-#. Bonqm
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
#. KEaAA
#: 03020411.xhp
msgctxt ""
@@ -13138,13 +13120,13 @@ msgctxt ""
msgid "Deletes an existing directory from a data medium."
msgstr ""
-#. LeFHA
+#. nTJ5u
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
-"hd_id3153361\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
msgstr ""
#. uE7FC
@@ -13156,15 +13138,6 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr ""
-#. m4L6w
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -13183,15 +13156,6 @@ msgctxt ""
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
msgstr ""
-#. DYX4L
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
#. WL5Nt
#: 03020414.xhp
msgctxt ""
@@ -24604,22 +24568,13 @@ msgctxt ""
msgid "Stops the execution of the Basic program."
msgstr ""
-#. FtjMt
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. qrBWD
+#. UECAC
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
msgstr ""
#. BsgsP
@@ -24856,40 +24811,49 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
msgstr ""
-#. 7HE98
+#. 3GcPs
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the <literal>End With</literal> statement is reached."
msgstr ""
-#. vpBbV
+#. WZgyY
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3156153\n"
+"par_id491585753339474\n"
"help.text"
-msgid "Syntax:"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
msgstr ""
-#. 742TA
+#. gnpSD
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"hd_id3154924\n"
+"par_id3147560\n"
"help.text"
-msgid "Parameters:"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
msgstr ""
-#. 3NDWr
+#. PzPzj
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3147560\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
msgstr ""
#. zLuzY
@@ -34099,22 +34063,13 @@ msgctxt ""
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr ""
-#. ACDCD
+#. JMATz
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
-"hd_id3153990\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 9DA89
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
msgstr ""
#. 9FABw
diff --git a/source/lo/helpcontent2/source/text/scalc/00.po b/source/lo/helpcontent2/source/text/scalc/00.po
index 3e499d2b597..81cb5727fd7 100644
--- a/source/lo/helpcontent2/source/text/scalc/00.po
+++ b/source/lo/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1186,13 +1186,13 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose ><item type=\"menuitem\">View - Split Window</item>.</variable>"
msgstr ""
-#. wQuKj
+#. q8E8w
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>.</variable>"
+msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>.</variable>"
msgstr ""
#. BkQfX
diff --git a/source/lo/helpcontent2/source/text/scalc/guide.po b/source/lo/helpcontent2/source/text/scalc/guide.po
index 3b632ff1d3f..133dab7fdbc 100644
--- a/source/lo/helpcontent2/source/text/scalc/guide.po
+++ b/source/lo/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: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2020-12-01 12:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7549,22 +7549,22 @@ msgctxt ""
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
msgstr ""
-#. jSQFE
+#. Ly3Ez
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
msgstr ""
-#. 3N5Vt
+#. Exqyb
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
msgstr ""
#. U7GBK
@@ -7585,13 +7585,13 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr ""
-#. jQLAq
+#. Z29B7
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
msgstr ""
#. RbKLt
diff --git a/source/lo/helpcontent2/source/text/sdraw/01.po b/source/lo/helpcontent2/source/text/sdraw/01.po
index 55dd8c6a371..90281646e0d 100644
--- a/source/lo/helpcontent2/source/text/sdraw/01.po
+++ b/source/lo/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2020-12-08 13:07+0100\n"
"PO-Revision-Date: 2017-05-10 03:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,13 +916,13 @@ msgctxt ""
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
msgstr ""
-#. hn4Vo
+#. QdVmE
#: page_properties.xhp
msgctxt ""
"page_properties.xhp\n"
"par_id691556822054550\n"
"help.text"
-msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
+msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Properties</emph> dialog."
msgstr ""
#. DA7cH
diff --git a/source/lo/helpcontent2/source/text/shared/01.po b/source/lo/helpcontent2/source/text/shared/01.po
index 666d961f701..f96bf735d56 100644
--- a/source/lo/helpcontent2/source/text/shared/01.po
+++ b/source/lo/helpcontent2/source/text/shared/01.po